https://mooseframework.inl.gov
WaveSpeedVPP.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
14 // Forward Declarations
15 class WaveSpeedVPP;
16 class HLLCUserObject;
17 
22 {
23 public:
25 
27 
28  virtual void initialize() override;
29  virtual void execute() override;
30  virtual void finalize() override;
31 
32 protected:
34  const unsigned int _side_id;
35  const Elem * _elem;
37 };
static InputParameters validParams()
Definition: WaveSpeedVPP.C:19
virtual void finalize() override
Definition: WaveSpeedVPP.C:57
const unsigned int _side_id
Definition: WaveSpeedVPP.h:34
virtual void initialize() override
Definition: WaveSpeedVPP.C:38
std::vector< Real > VectorPostprocessorValue
const HLLCUserObject & _hllc
Definition: WaveSpeedVPP.h:33
Gets wave speeds from HLLC user object.
Definition: WaveSpeedVPP.h:21
const InputParameters & parameters() const
WaveSpeedVPP(const InputParameters &parameters)
Definition: WaveSpeedVPP.C:29
const Elem * _elem
Definition: WaveSpeedVPP.h:35
virtual void execute() override
Definition: WaveSpeedVPP.C:45
VectorPostprocessorValue & _wave_speeds
Definition: WaveSpeedVPP.h:36