Cantera
2.4.0
|
Calculation of Collision integrals. More...
#include <MMCollisionInt.h>
Public Member Functions | |
void | init (doublereal tsmin, doublereal tsmax, int loglevel=0) |
Initialize the object for calculation. More... | |
doublereal | omega22 (double ts, double deltastar) |
doublereal | astar (double ts, double deltastar) |
doublereal | bstar (double ts, double deltastar) |
doublereal | cstar (double ts, double deltastar) |
void | fit (int degree, doublereal deltastar, doublereal *astar, doublereal *bstar, doublereal *cstar) |
void | fit_omega22 (int degree, doublereal deltastar, doublereal *om22) |
doublereal | omega11 (double ts, double deltastar) |
Private Member Functions | |
doublereal | fitDelta (int table, int ntstar, int degree, doublereal *c) |
Private Attributes | |
std::vector< vector_fp > | m_o22poly |
std::vector< vector_fp > | m_apoly |
std::vector< vector_fp > | m_bpoly |
std::vector< vector_fp > | m_cpoly |
vector_fp | m_logTemp |
Log temp. More... | |
int | m_nmin |
int | m_nmax |
int | m_loglevel |
loglevel More... | |
Static Private Attributes | |
static doublereal | delta [8] |
static doublereal | tstar22 [37] |
static doublereal | omega22_table [37 *8] |
Table of omega22 values from MM. More... | |
static doublereal | tstar [39] |
table of tstar values More... | |
static doublereal | astar_table [39 *8] |
astar table from MM More... | |
static doublereal | bstar_table [39 *8] |
bstar table from MM More... | |
static doublereal | cstar_table [39 *8] |
cstar table from MM More... | |
Calculation of Collision integrals.
This class provides functions that interpolate the tabulated collision integrals in Monchick and Mason, "Transport Properties of Polar Gases," J. Chem. Phys. (1961)
Definition at line 25 of file MMCollisionInt.h.
void init | ( | doublereal | tsmin, |
doublereal | tsmax, | ||
int | loglevel = 0 |
||
) |
Initialize the object for calculation.
tsmin | Minimum value of Tstar to carry out the fitting |
tsmax | Maximum value of Tstar to carry out the fitting |
loglevel | Set the loglevel for the object. The default loglevel is zero, indicating no output. |
Definition at line 217 of file MMCollisionInt.cpp.
References Cantera::debuglog(), Cantera::writelog(), and Cantera::writelogf().
Referenced by GasTransport::setupCollisionIntegral().
|
staticprivate |
Definition at line 59 of file MMCollisionInt.h.
|
staticprivate |
Definition at line 60 of file MMCollisionInt.h.
|
staticprivate |
Table of omega22 values from MM.
Definition at line 63 of file MMCollisionInt.h.
|
staticprivate |
table of tstar values
Definition at line 66 of file MMCollisionInt.h.
|
staticprivate |
astar table from MM
Definition at line 69 of file MMCollisionInt.h.
|
staticprivate |
bstar table from MM
Definition at line 72 of file MMCollisionInt.h.
|
staticprivate |
cstar table from MM
Definition at line 75 of file MMCollisionInt.h.
|
private |
Log temp.
Definition at line 78 of file MMCollisionInt.h.
|
private |
loglevel
Definition at line 84 of file MMCollisionInt.h.