ODT
Loading...
Searching...
No Matches
dv_rho_mf.h
Go to the documentation of this file.
1
6#pragma once
7
8#include "dv.h"
9#include <string>
10#include <vector>
11
12class domain;
13
14using namespace std;
15
17
25class dv_rho_mf : public dv {
26
27
29
30 private:
31
32 double rho0;
33 double rho1;
34 double temp0;
35 double temp1;
36 double tempFlame;
37 double Zst;
38
40
41 public:
42
43 virtual void setVar(const int ipt=-1);
44
45 virtual void merge2cells(const int imrg,
46 const double m2,
47 const double m1,
48 const bool LconstVolume=false);
49
50 private:
51
52
54
55 public:
56
58 dv_rho_mf(domain *line,
59 const string s,
60 const bool Lt,
61 const bool Lo=true);
62
63 virtual ~dv_rho_mf(){}
64
65};
66
67
69
double tempFlame
read from input file (streams section)
Definition dv_rho_mf.h:36
double rho1
read from input file (streams section)
Definition dv_rho_mf.h:33
double Zst
read from input file (streams section)
Definition dv_rho_mf.h:37
double temp1
read from input file (streams section)
Definition dv_rho_mf.h:35
virtual void merge2cells(const int imrg, const double m2, const double m1, const bool LconstVolume=false)
Definition dv_rho_mf.cc:60
double temp0
read from input file (streams section)
Definition dv_rho_mf.h:34
double rho0
read from input file (streams section)
Definition dv_rho_mf.h:32
virtual ~dv_rho_mf()
Definition dv_rho_mf.h:63
virtual void setVar(const int ipt=-1)
Definition dv_rho_mf.cc:74
Definition dv.h:23
Header file for class dv.