WARPXM v1.10.0
Loading...
Searching...
No Matches
wmburgersflux.h
Go to the documentation of this file.
1#ifndef __wmburgersflux__h__
2#define __wmburgersflux__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 WmKernelVariable* _density;
30 WmKernelVariable* _diffusivity;
31 // WmKernelVariable * _gradDensity;
32 WmKernelVariable* _lapDensity;
33
34private:
35 WmBurgersFlux& operator=(const WmBurgersFlux& var);
36 WmBurgersFlux(const WmBurgersFlux& var);
37};
38
39#endif // __wmburgersflux__h__
Definition: wmburgersflux.h:11
std::string generateSource(const WmUnstructuredEquationSet &eqSet) const
WmKernelVariable * _diffusivity
Definition: wmburgersflux.h:30
std::string generateSourceCall(const WmUnstructuredEquationSet &eqSet, unsigned int callType) const
void setup(const WxCryptSet &wxc)
WmKernelVariable * _lapDensity
Definition: wmburgersflux.h:32
WmKernelVariable * _density
Definition: wmburgersflux.h:29
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