Internal energy based thermodynamics package using a polynomial function of temperature for the constant heat capacity at constant volume: More...


Public Member Functions | |
| ePolynomialThermo (const word &name, const dictionary &dict) | |
| Construct from name and dictionary. More... | |
| ePolynomialThermo (const word &, const ePolynomialThermo &) | |
| Construct as a named copy. More... | |
| scalar | limit (const scalar) const |
| Limit the temperature to be in the range Tlow_ to Thigh_. More... | |
| scalar | Cv (const scalar p, const scalar T) const |
| Heat capacity at constant volume [J/kg/K]. More... | |
| scalar | es (const scalar p, const scalar T) const |
| Sensible internal energy [J/kg]. More... | |
| scalar | ea (const scalar p, const scalar T) const |
| Absolute internal energy [J/kg]. More... | |
| scalar | hf () const |
| Enthalpy of formation [J/kg]. More... | |
| scalar | s (const scalar p, const scalar T) const |
| Entropy [J/kg/K]. More... | |
| scalar | gStd (const scalar T) const |
| Gibbs free energy of the mixture in the standard state [J/kg]. More... | |
| scalar | dCpdT (const scalar p, const scalar T) const |
| Temperature derivative of heat capacity at constant pressure. More... | |
| void | write (Ostream &os) const |
| Write to Ostream. More... | |
| void | operator+= (const ePolynomialThermo &) |
| void | operator*= (const scalar) |
Static Public Member Functions | |
| static word | typeName () |
| Return the instantiated type name. More... | |
Friends | |
| ePolynomialThermo | operator+ (const ePolynomialThermo &, const ePolynomialThermo &) |
| ePolynomialThermo | operator* (const scalar, const ePolynomialThermo &) |
| ePolynomialThermo | operator== (const ePolynomialThermo &, const ePolynomialThermo &) |
| Ostream & | operator (Ostream &, const ePolynomialThermo &) |
Internal energy based thermodynamics package using a polynomial function of temperature for the constant heat capacity at constant volume:
Cv = CvCoeffs[0] + CvCoeffs[1]*T + CvCoeffs[2]*sqr(T)
+ CvCoeffs[3]*pow3(T) + CvCoeffs[4]*pow4(T)
+ CvCoeffs[5]*pow(T, 5) + CvCoeffs[6]*pow(T, 6)
+ CvCoeffs[7]*pow(T, 7)
The polynomial function is templated on the order of the polynomial which defaults to 8.
| Property | Description |
|---|---|
hf | Heat of formation |
sf | Standard entropy |
CvCoeffs<8> | Specific heat at constant volume polynomial coeffs |
Example of the specification of the thermodynamic properties:
thermodynamics
{
hf 0;
sf 0;
CvCoeffs<8> (1000 -0.05 0.003 0 0 0 0 0);
}Note: Specific heat at constant volume polynomial coefficients evaluate to an expression in [J/kg/K].
Definition at line 133 of file ePolynomialThermo.H.
| ePolynomialThermo | ( | const word & | name, |
| const dictionary & | dict | ||
| ) |
Construct from name and dictionary.
Definition at line 32 of file ePolynomialThermo.C.
|
inline |
Construct as a named copy.
Definition at line 51 of file ePolynomialThermoI.H.
|
inlinestatic |
Return the instantiated type name.
Definition at line 185 of file ePolynomialThermo.H.
|
inline |
Limit the temperature to be in the range Tlow_ to Thigh_.
Definition at line 69 of file ePolynomialThermoI.H.
References Foam::T().

|
inline |
Heat capacity at constant volume [J/kg/K].
Definition at line 79 of file ePolynomialThermoI.H.
References Cv(), p, and Foam::T().

|
inline |
Sensible internal energy [J/kg].
Definition at line 90 of file ePolynomialThermoI.H.
References Foam::constant::electromagnetic::e, p, and Foam::T().

|
inline |
Absolute internal energy [J/kg].
Definition at line 101 of file ePolynomialThermoI.H.
References es(), p, and Foam::T().

|
inline |
Enthalpy of formation [J/kg].
Definition at line 112 of file ePolynomialThermoI.H.
|
inline |
Entropy [J/kg/K].
Definition at line 120 of file ePolynomialThermoI.H.

|
inline |
Gibbs free energy of the mixture in the standard state [J/kg].
Definition at line 131 of file ePolynomialThermoI.H.
References Foam::constant::standard::Pstd, rho, s(), and Foam::T().

|
inline |
Temperature derivative of heat capacity at constant pressure.
Definition at line 143 of file ePolynomialThermoI.H.
References NotImplemented, and Foam::T().

| void write | ( | Ostream & | os | ) | const |
Write to Ostream.
Definition at line 75 of file ePolynomialThermo.C.
References dictionary::add(), dict, dictionaryName::dictName(), Foam::indent(), Foam::name(), and Foam::vtkWriteOps::write().

|
inline |
Definition at line 157 of file ePolynomialThermoI.H.
References Foam::mag(), Foam::operator+=(), and Y.

|
inline |
Definition at line 181 of file ePolynomialThermoI.H.
References s().

|
friend |
|
friend |
|
friend |
|
friend |