WARPXM v1.10.0
Loading...
Searching...
No Matches
reflecting_wall_bc.h
Go to the documentation of this file.
1#ifndef WXM_APPS_5MOMENT_BC_REFLECTING_WALL_H
2#define WXM_APPS_5MOMENT_BC_REFLECTING_WALL_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11namespace five_moment
12{
13namespace bc
14{
15/*
16 *
17 * This is supposed to mimic the reflecting wall given by Hesthaven (pg 234)
18 *
19 */
21{
22public:
24
25 ~reflecting_wall() override;
26
27 void setup(const WxCryptSet& wxc) override;
28
29 const std::vector<int>& getInputVariableIndexes(int flag) const override
30 {
31 return _variables;
32 }
33 const std::vector<int>& getOutputVariableIndexes(int flag) const override
34 {
35 return _variables;
36 }
37
38 // redefinition of bc
39 void bc_q(const real* q_in,
40 const real* aux_in,
41 const real* aux_out,
42 const solverVariables_t* pFV,
43 real* q_out) const override;
44
45protected:
50
51 std::vector<int> _variables;
52
53private:
54 reflecting_wall& operator=(const reflecting_wall& var);
56};
57} // namespace bc
58} // namespace five_moment
59} // namespace apps
60} // namespace wxm
61
62#endif // WXM_APPS_5MOMENT_BC_REFLECTING_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
Definition: reflecting_wall_bc.h:21
std::vector< int > _variables
Definition: reflecting_wall_bc.h:51
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: reflecting_wall_bc.h:33
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 _inject_t
Definition: reflecting_wall_bc.h:47
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: reflecting_wall_bc.h:29
real _inject_momy
Definition: reflecting_wall_bc.h:49
void setup(const WxCryptSet &wxc) override
real _gas_gamma
Definition: reflecting_wall_bc.h:46
real _inject_rho
Definition: reflecting_wall_bc.h:48
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