WARPXM v1.10.0
Loading...
Searching...
No Matches
freeslip_wall_bc_flux.h
Go to the documentation of this file.
1#ifndef WXM_APPS_FLUX_BC_FIVE_MOMENT_FREESLIP_WALL_H
2#define WXM_APPS_FLUX_BC_FIVE_MOMENT_FREESLIP_WALL_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11namespace bc
12{
13namespace flux_bc
14{
15namespace five_moment
16{
17
33{
34public:
40
46
51 void setup(const WxCryptSet& wxc) override;
52
58 const std::vector<int>& getInputVariableIndexes(int flag) const override
59 {
60 return _variables;
61 }
62
68 const std::vector<int>& getOutputVariableIndexes(int flag) const override
69 {
70 return _variables;
71 }
72
83 const real* q_r,
84 const real* aux_l,
85 const real* aux_r,
86 const solverVariables_t* pFV,
87 real* numericalFlux) const override;
88
89protected:
93
94 std::vector<int> _variables;
95
96private:
99};
100} // namespace five_moment
101} // namespace flux_bc
102} // namespace bc
103} // namespace apps
104} // namespace wxm
105
106#endif // WXM_APPS_FLUX_BC_FIVE_MOMENT_FREESLIP_WALL_H
Base Class for physics applications.
Definition: wmapplication.h:93
WxCryptSet extends WxCrypt by providing, in addition to name-value pairs, an set of named WxCryptSets...
Definition: wxcryptset.h:35
Freeslip Wall Flux Boundary Condition This boundary condition is meant to set the boundary condition ...
Definition: freeslip_wall_bc_flux.h:33
std::vector< int > _variables
Definition: freeslip_wall_bc_flux.h:94
const std::vector< int > & getInputVariableIndexes(int flag) const override
Grab input variable indices.
Definition: freeslip_wall_bc_flux.h:58
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Grab output variable indices.
Definition: freeslip_wall_bc_flux.h:68
real _density_min
Definition: freeslip_wall_bc_flux.h:92
real bcNumericalFlux(const real *q_l, const real *q_r, const real *aux_l, const real *aux_r, const solverVariables_t *pFV, real *numericalFlux) const override
Redefinition of the boundary condition numerical flux.
real _pressure_min
Definition: freeslip_wall_bc_flux.h:91
real _gas_gamma
Definition: freeslip_wall_bc_flux.h:90
void setup(const WxCryptSet &wxc) override
Setup.
list apps
Definition: shock_tube.py:33
bc
Definition: advection2d_conservation.py:32
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8
Definition: wmapplication.h:38
#define real
Definition: wmoclunstructuredreconstruction.h:11