WARPXM v1.10.0
Loading...
Searching...
No Matches
freeslip_wall.h
Go to the documentation of this file.
1#ifndef WXM_APPS_13MOMENT_FREESLIPWALL_H
2#define WXM_APPS_13MOMENT_FREESLIPWALL_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 const std::vector<int>& getOutputVariableIndexes(int flag) const override
28 {
29 return _variables;
30 }
31
32protected:
33 std::vector<int> _variables;
34
35private:
36 freeslip_wall_t& operator=(const freeslip_wall_t& var);
38};
39} // namespace thirteen_moment
40} // namespace apps
41} // namespace wxm
42
43#endif // WXM_APPS_13MOMENT_FREESLIPWALL_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: freeslip_wall.h:15
const std::vector< int > & getOutputVariableIndexes(int flag) const override
Definition: freeslip_wall.h:27
const std::vector< int > & getInputVariableIndexes(int flag) const override
Definition: freeslip_wall.h:23
void setup(const WxCryptSet &wxc) override
std::vector< int > _variables
Definition: freeslip_wall.h:33
list apps
Definition: shock_tube.py:33
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8