WARPXM v1.10.0
Loading...
Searching...
No Matches
dirichlet.h
Go to the documentation of this file.
1#ifndef WXM_APPS_DIRICHLET_BC_H
2#define WXM_APPS_DIRICHLET_BC_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11namespace bc
12{
14{
15public:
17
18 ~dirichlet_t() override;
19
20 void setup(const WxCryptSet& wxc) override;
21
22 const std::vector<int>& getOutputVariableIndexes(int flag) const override
23 {
24 return _variables;
25 }
26 const std::vector<int>& getInputVariableIndexes(int flag) const override
27 {
28 return _variables;
29 }
30
31 // redefinition of bc
32 void bc_q(const real* q_in,
33 const real* aux_in,
34 const real* aux_out,
35 const solverVariables_t* pFV,
36 real* q_out) const override;
37
38protected:
39 std::vector<real> _values;
40 std::vector<int> _variables;
41 std::string _bc_type;
42
43private:
44 dirichlet_t& operator=(const dirichlet_t& var) = delete;
45 dirichlet_t(const dirichlet_t& var) = delete;
46};
47} // namespace bc
48} // namespace apps
49} // namespace wxm
50
51#endif // WXM_APPS_DIRICHLET_BC_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: dirichlet.h:14
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: dirichlet.h:26
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: dirichlet.h:22
std::string _bc_type
Definition: dirichlet.h:41
std::vector< int > _variables
Definition: dirichlet.h:40
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.
void setup(const WxCryptSet &wxc) override
std::vector< real > _values
Definition: dirichlet.h:39
list apps
Definition: shock_tube.py:33
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