Doxygen Updates - no changes to the code
This commit is contained in:
parent
6b1a1ac27f
commit
d99352f3d1
7 changed files with 516 additions and 487 deletions
1
Cantera/src/transport/FtnTransport.h
Executable file → Normal file
1
Cantera/src/transport/FtnTransport.h
Executable file → Normal file
|
|
@ -38,6 +38,7 @@
|
|||
|
||||
|
||||
extern "C" {
|
||||
|
||||
doublereal __VISC__(doublereal* t, doublereal* p, doublereal* x);
|
||||
doublereal __BULKVISC__(doublereal* t, doublereal* p, doublereal* x);
|
||||
doublereal __TCON__(doublereal* t, doublereal* p, doublereal* x);
|
||||
|
|
|
|||
0
Cantera/src/transport/L_matrix.h
Executable file → Normal file
0
Cantera/src/transport/L_matrix.h
Executable file → Normal file
977
Cantera/src/transport/MMCollisionInt.cpp
Executable file → Normal file
977
Cantera/src/transport/MMCollisionInt.cpp
Executable file → Normal file
File diff suppressed because it is too large
Load diff
25
Cantera/src/transport/MMCollisionInt.h
Executable file → Normal file
25
Cantera/src/transport/MMCollisionInt.h
Executable file → Normal file
|
|
@ -3,7 +3,6 @@
|
|||
* Monk and Monchick collision integrals
|
||||
*/
|
||||
/*
|
||||
* $Author$
|
||||
* $Revision$
|
||||
* $Date$
|
||||
*/
|
||||
|
|
@ -41,8 +40,10 @@ namespace Cantera {
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* Collision integrals. This class provides functions that
|
||||
|
||||
//! 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)
|
||||
*
|
||||
|
|
@ -52,11 +53,27 @@ namespace Cantera {
|
|||
|
||||
public:
|
||||
|
||||
MMCollisionInt(){}
|
||||
//! Default Constructor
|
||||
MMCollisionInt();
|
||||
|
||||
//! Destructor
|
||||
virtual ~MMCollisionInt();
|
||||
|
||||
|
||||
//! Initialize the object for calculation
|
||||
/*!
|
||||
*
|
||||
* @param xml Pointer to the log file that will receive the debug output
|
||||
* messages
|
||||
* @param tsmin Minimum value of Tstar to carry out the fitting
|
||||
* @param tsmax Maximum value of Tstar to carry out the fitting
|
||||
* @param loglevel Set the loglevel for the object. The default
|
||||
* loglevel is zero, indicating no output.
|
||||
*/
|
||||
void init(XML_Writer* xml, doublereal tsmin,
|
||||
doublereal tsmax, int loglevel = 0);
|
||||
|
||||
|
||||
doublereal omega22(double ts, double deltastar);
|
||||
doublereal astar(double ts, double deltastar);
|
||||
doublereal bstar(double ts, double deltastar);
|
||||
|
|
|
|||
0
Cantera/src/transport/MixTransport.cpp
Executable file → Normal file
0
Cantera/src/transport/MixTransport.cpp
Executable file → Normal file
0
Cantera/src/transport/MultiTransport.cpp
Executable file → Normal file
0
Cantera/src/transport/MultiTransport.cpp
Executable file → Normal file
0
Cantera/src/transport/TransportParams.h
Executable file → Normal file
0
Cantera/src/transport/TransportParams.h
Executable file → Normal file
Loading…
Add table
Reference in a new issue