WARPXM v1.10.0
Loading...
Searching...
No Matches
maxwellian.h
Go to the documentation of this file.
1#ifndef KINETICS1D1V_MAXWELLIAN_FUNCTION_H
2#define KINETICS1D1V_MAXWELLIAN_FUNCTION_H
3
4// std includes
5#include <vector>
6#include <string>
7
8// Wm includes
10
11namespace wxm
12{
13namespace functions
14{
15namespace kinetics
16{
17
22{
23public:
29
35
41 void setup(const WxCryptSet& wxc);
42
49 void applyFunction(const real* position, real* value) const;
50
51private:
52 real _mass;
53
54 real _density;
55 std::vector<real> _velocity;
56 real _pressure;
57};
58
59} // namespace kinetics
60} // namespace functions
61} // namespace wxm
62
63#endif // KINETICS1D1V_MAXWELLIAN_FUNCTION_H
Base class for functions used in generating initial conditions.
Definition: wmicfunction.h:25
WxCryptSet extends WxCrypt by providing, in addition to name-value pairs, an set of named WxCryptSets...
Definition: wxcryptset.h:35
Initailize Maxwellian Distribution.
Definition: maxwellian.h:22
void setup(const WxCryptSet &wxc)
Setup gem object using supplied cryptset.
void applyFunction(const real *position, real *value) const
Evaluate the function at a position and return the result through a pointer.
Base namespace for everything not included in the global namespace.
Definition: field_source.h:8
#define real
Definition: wmoclunstructuredreconstruction.h:11