WARPXM v1.10.0
Loading...
Searching...
No Matches
wmplasma13momentrelax.h
Go to the documentation of this file.
1#ifndef __wmplasma13momentrelax__h__
2#define __wmplasma13momentrelax__h__
3
4// STD libraries
5#include <iostream>
6
7// WarpM includes
9
11{
12public:
14
16
17 void setup(const WxCryptSet& wxc);
18
19 // This generates the string for the function call
21 unsigned int callType) const;
22
23 // This generates the source code for the hyperapp
24 std::string generateSource(const WmUnstructuredEquationSet& eqSet) const;
25
26protected:
27 // Protected Variables
28
29 // Fluid
30 WmKernelVariable* _fluid;
31 WmKernelVariable* _relaxToFluid;
32
33 // Constants
34 WmKernelVariable* _relaxationTime;
35
36 static std::string _form;
37
38private:
39 WmPlasma13MomentRelax& operator=(const WmPlasma13MomentRelax& var);
41};
42
43#endif // __wmplasma13momentrelax__h__
Definition: wmplasma13momentrelax.h:11
WmKernelVariable * _fluid
Definition: wmplasma13momentrelax.h:30
WmKernelVariable * _relaxToFluid
Definition: wmplasma13momentrelax.h:31
std::string generateSourceCall(const WmUnstructuredEquationSet &eqSet, unsigned int callType) const
void setup(const WxCryptSet &wxc)
static std::string _form
Definition: wmplasma13momentrelax.h:36
std::string generateSource(const WmUnstructuredEquationSet &eqSet) const
WmKernelVariable * _relaxationTime
Definition: wmplasma13momentrelax.h:34
Definition: wmunstructuredapp.h:31
Definition: wmunstructuredequationset.h:19
WxCryptSet extends WxCrypt by providing, in addition to name-value pairs, an set of named WxCryptSets...
Definition: wxcryptset.h:35