Merge branch 'master' of github.com-OpenFOAM:OpenFOAM/OpenFOAM-dev

This commit is contained in:
Henry Weller
2019-08-01 14:27:11 +01:00
10 changed files with 41 additions and 54 deletions

View File

@ -48,9 +48,6 @@ Usage
\rho = 1000 - 0.05 T + 0.003 T^2
\f]
Note
Input in [kg/m^3], but internally uses [kg/m3/kmol].
SourceFiles
icoPolynomialI.H
icoPolynomial.C
@ -116,7 +113,7 @@ class icoPolynomial
{
// Private Data
//- Density polynomial coefficients
//- Density polynomial coefficients [kg/m^3/K^i]
Polynomial<PolySize> rhoCoeffs_;

View File

@ -88,12 +88,10 @@ class eConstThermo
{
// Private Data
//- Heat capacity at constant volume
// Note: input in [J/kg/K], but internally uses [J/kmol/K]
//- Heat capacity at constant volume [J/kg/K]
scalar Cv_;
//- Heat of formation
// Note: input in [J/kg], but internally uses [J/kmol]
//- Heat of formation [J/kg]
scalar Hf_;

View File

@ -86,7 +86,10 @@ class hConstThermo
{
// Private Data
//- Heat capacity at constant pressure [J/kmol/K]
scalar Cp_;
//- Heat of formation [J/kg]
scalar Hf_;

View File

@ -56,8 +56,6 @@ Usage
\f]
Note
- Heat of formation is inputted in [J/kg], but internally uses [J/kmol]
- Standard entropy is inputted in [J/kg/K], but internally uses [J/kmol/K]
- Specific heat at constant pressure polynomial coefficients evaluate to an
expression in [J/kg/K].
@ -132,14 +130,15 @@ class hPolynomialThermo
//- Standard entropy
scalar Sf_;
//- Specific heat at constant pressure polynomial coeffs
//- Specific heat at constant pressure polynomial coeffs [J/kg/K/K^i]
Polynomial<PolySize> CpCoeffs_;
//- Enthalpy polynomial coeffs - derived from cp [J/kg]
// NOTE: relative to Tstd
//- Enthalpy polynomial coeffs [J/kg/K^i]
// Derived from Cp coeffs. Relative to Tstd.
typename Polynomial<PolySize>::intPolyType hCoeffs_;
//- Entropy - derived from Cp [J/kg/K] - relative to Tstd
//- Entropy polynomial coeffs [J/kg/K/K^i]
// Derived from Cp coeffs. Relative to Tstd.
Polynomial<PolySize> sCoeffs_;

View File

@ -63,12 +63,6 @@ Usage
\kappa = 2000 - 0.15 ln(T) + 0.023 ln(T)^2
\f]
Note
- Dynamic viscosity polynomial coefficients evaluate to an expression in
[Pa.s], but internally uses [Pa.s/kmol].
- Thermal conductivity polynomial coefficients evaluate to an expression in
[W/m/K], but internally uses [W/m/K/kmol].
SourceFiles
logPolynomialTransportI.H
logPolynomialTransport.C
@ -125,12 +119,10 @@ class logPolynomialTransport
{
// Private Data
//- Dynamic viscosity polynomial coefficients
// Note: input in [Pa.s], but internally uses [Pa.s/kmol]
//- Dynamic viscosity polynomial coefficients [Pa.s/K^i]
Polynomial<PolySize> muCoeffs_;
//- Thermal conductivity polynomial coefficients
// Note: input in [W/m/K], but internally uses [W/m/K/kmol]
//- Thermal conductivity polynomial coefficients [W/m/K/K^i]
Polynomial<PolySize> kappaCoeffs_;

View File

@ -54,12 +54,6 @@ Usage
\kappa = 2000 - 0.15 T + 0.023 T^2
\f]
Note
- Dynamic viscosity polynomial coefficients evaluate to an expression in
[Pa.s], but internally uses [Pa.s/kmol].
- Thermal conductivity polynomial coefficients evaluate to an expression in
[W/m/K], but internally uses [W/m/K/kmol].
SourceFiles
polynomialTransportI.H
polynomialTransport.C
@ -116,10 +110,10 @@ class polynomialTransport
{
// Private Data
//- Dynamic viscosity polynomial coefficients
//- Dynamic viscosity polynomial coefficients [Pa.s/K^i]
Polynomial<PolySize> muCoeffs_;
//- Thermal conductivity polynomial coefficients
//- Thermal conductivity polynomial coefficients [W/m/K/K^i]
Polynomial<PolySize> kappaCoeffs_;