WARPXM v1.10.0
Loading...
Searching...
No Matches
wmapplication_imhd_bc_conductingwallNoslip.h
Go to the documentation of this file.
1#ifndef WMAPPLICATION_IMHD_CONDUCTINGWALL_NOSLIP_H
2#define WMAPPLICATION_IMHD_CONDUCTINGWALL_NOSLIP_H
3
4// Wm includes
6
7// IMHD includes
9
10namespace wxm
11{
12namespace apps
13{
14namespace imhd
15{
16namespace bc
17{
18
25{
26public:
28
30
31 void setup(const WxCryptSet& wxc) override;
32
33 const std::vector<int>& getInputVariableIndexes(int flag) const override
34 {
35 return _inputVariables;
36 }
37 const std::vector<int>& getOutputVariableIndexes(int flag) const override
38 {
39 return _outputVariables;
40 }
41
42 // redefinition of bc
43 void bc_q(const real* q_in,
44 const real* aux_in,
45 const real* aux_out,
46 const solverVariables_t* pFV,
47 real* q_out) const override;
48
49protected:
51
52 std::vector<real> _wallVelocity;
53
54 // int _closureScheme;
57
58 std::vector<int> _inputVariables;
59 std::vector<int> _outputVariables;
60
61private:
66};
67
68} // namespace bc
69} // namespace imhd
70} // namespace apps
71} // namespace wxm
72
73#endif // WMAPPLICATION_IMHD_CONDUCTINGWALL_NOSLIP_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
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:25
void bc_q(const real *q_in, const real *aux_in, const real *aux_out, const solverVariables_t *pFV, real *q_out) const override
Boundary Condition Application which sets the boundary condition on ghost nodes.
real _min_density
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:55
std::vector< int > _inputVariables
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:58
std::vector< int > _outputVariables
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:59
real _min_pressure
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:56
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:37
std::vector< real > _wallVelocity
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:52
real _gas_gamma
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:50
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: wmapplication_imhd_bc_conductingwallNoslip.h:33
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