WARPXM v1.10.0
Loading...
Searching...
No Matches
maxwell_to_maxwell.h
Go to the documentation of this file.
1#ifndef WXM_APPS_MAXWELL_TO_MAXWELL_H
2#define WXM_APPS_MAXWELL_TO_MAXWELL_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11namespace maxwell
12{
13
23{
24public:
26
28
29 void setup(const WxCryptSet& wxc) override;
30
31 const std::vector<int>& getInputVariableIndexes(int flag) const override
32 {
33 return input_variables_;
34 }
35 const std::vector<int>& getOutputVariableIndexes(int flag) const override
36 {
37 return out_variables_;
38 }
39
40 void bc_q(const real* q_in,
41 const real* aux_in,
42 const real* aux_out,
43 const solverVariables_t* pFV,
44 real* q_out) const override;
45
46protected:
47 std::vector<int> input_variables_;
48 std::vector<int> out_variables_;
49
50private:
51 maxwell_to_maxwell& operator=(const maxwell_to_maxwell& var);
53};
54} // namespace maxwell
55} // namespace apps
56} // namespace wxm
57
58#endif
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
virtual boundary condition for passing Maxwell field variables to Maxwell variables
Definition: maxwell_to_maxwell.h:23
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: maxwell_to_maxwell.h:35
void setup(const WxCryptSet &wxc) override
std::vector< int > input_variables_
Definition: maxwell_to_maxwell.h:47
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.
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: maxwell_to_maxwell.h:31
std::vector< int > out_variables_
Definition: maxwell_to_maxwell.h:48
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