Added doxygen comments.
This commit is contained in:
parent
2a62073948
commit
0bbd0879d5
2 changed files with 20 additions and 7 deletions
|
|
@ -76,21 +76,30 @@ namespace Cantera {
|
|||
*/
|
||||
//@{
|
||||
|
||||
/// Avogadro's Number
|
||||
const doublereal Avogadro = 6.02214179e26; // /kmol
|
||||
//! Avogadro's Number
|
||||
/*!
|
||||
* Units are number/kmol
|
||||
*/
|
||||
const doublereal Avogadro = 6.02214179e26;
|
||||
|
||||
/// Universal Gas Constant. 2006 CODATA value.
|
||||
const doublereal GasConstant = 8314.47215; // J/kmol/K
|
||||
|
||||
const doublereal logGasConstant = 9.025752908;
|
||||
|
||||
/// One atmosphere
|
||||
const doublereal OneAtm = 1.01325e5; // Pa
|
||||
//! One atmosphere
|
||||
/*!
|
||||
* Units are Pa
|
||||
*/
|
||||
const doublereal OneAtm = 1.01325e5;
|
||||
|
||||
/// Universal gas constant in cal/mol/K
|
||||
//! Universal gas constant in cal/mol/K
|
||||
const doublereal GasConst_cal_mol_K = 1.987;
|
||||
|
||||
/// Boltzmann's constant
|
||||
//! Boltzmann's constant
|
||||
/*!
|
||||
* Units are J/K
|
||||
*/
|
||||
const doublereal Boltzmann = GasConstant / Avogadro;
|
||||
|
||||
/// Planck's constant. Units of J-s
|
||||
|
|
|
|||
|
|
@ -195,8 +195,9 @@ namespace Cantera {
|
|||
|
||||
//! Copy Constructor for the Messages class
|
||||
/*!
|
||||
* constructor for the Messages class which is a subclass
|
||||
* Constructor for the Messages class which is a subclass
|
||||
* of the Application class.
|
||||
* @param r Message to be copied
|
||||
*/
|
||||
Messages(const Messages &r) :
|
||||
errorMessage(r.errorMessage),
|
||||
|
|
@ -216,6 +217,9 @@ namespace Cantera {
|
|||
}
|
||||
|
||||
//! Assignment operator
|
||||
/*!
|
||||
* @param r Message to be copied
|
||||
*/
|
||||
Messages & operator=(const Messages &r)
|
||||
{
|
||||
if (this == &r) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue