WARPXM v1.10.0
Loading...
Searching...
No Matches
noslip_wall.h
Go to the documentation of this file.
1#ifndef WXM_APPS_13MOMENT_NOSLIPWALL_H
2#define WXM_APPS_13MOMENT_NOSLIPWALL_H
3
4// Wm includes
6
7namespace wxm
8{
9namespace apps
10{
11namespace thirteen_moment
12{
13
15{
16public:
18
20
21 void setup(const WxCryptSet& wxc) override;
22
23 const std::vector<int>& getInputVariableIndexes(int flag) const override
24 {
25 return _variables;
26 }
27
28 const std::vector<int>& getOutputVariableIndexes(int flag) const override
29 {
30 return _variables;
31 }
32
33protected:
34 std::vector<real> _wall_velocity;
35
36 std::vector<int> _variables;
37
38private:
39 noslip_wall_t& operator=(const noslip_wall_t& var);
40 noslip_wall_t(const noslip_wall_t& var);
41};
42} // namespace thirteen_moment
43} // namespace apps
44} // namespace wxm
45
46#endif // WXM_APPS_13MOMENT_NOSLIPWALL_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: noslip_wall.h:15
void setup(const WxCryptSet &wxc) override
std::vector< int > _variables
Definition: noslip_wall.h:36
std::vector< real > _wall_velocity
Definition: noslip_wall.h:34
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: noslip_wall.h:28
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: noslip_wall.h:23
list apps
Definition: shock_tube.py:33
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8