Transport package using the Andrade function for the natural logarithm of dynamic viscosity and thermal conductivity of liquids: More...


Public Member Functions | |
| AndradeTransport (const word &, const AndradeTransport &) | |
| Construct as named copy. More... | |
| AndradeTransport (const dictionary &dict) | |
| Construct from dictionary. More... | |
| autoPtr< AndradeTransport > | clone () const |
| Construct and return a clone. More... | |
| scalar | mu (const scalar p, const scalar T) const |
| Dynamic viscosity [kg/m/s]. More... | |
| scalar | kappa (const scalar p, const scalar T) const |
| Thermal conductivity [W/m/K]. More... | |
| void | write (Ostream &os) const |
| Write to Ostream. More... | |
Static Public Member Functions | |
| static autoPtr< AndradeTransport > | New (const dictionary &dict) |
| static word | typeName () |
| Return the instantiated type name. More... | |
Friends | |
| Ostream & | operator (Ostream &, const AndradeTransport &) |
Transport package using the Andrade function for the natural logarithm of dynamic viscosity and thermal conductivity of liquids:
log(mu) = muCoeffs[0] + muCoeffs[1]*T + muCoeffs[2]*sqr(T)
+ muCoeffs_[3]/(muCoeffs_[4] + T)
log(kappa) = kappaCoeffs[0] + kappaCoeffs[1]*T + kappaCoeffs[2]*sqr(T)
+ kappaCoeffs_[3]/(kappaCoeffs_[4] + T)
);
References:
Andrade, E. D. C. (1934).
XLI. A theory of the viscosity of liquids.—Part I.
The London, Edinburgh, and Dublin Philosophical Magazine
and Journal of Science, 17(112), 497-511.
Andrade, E. D. C. (1934).
LVIII. A theory of the viscosity of liquids.—Part II.
The London, Edinburgh, and Dublin Philosophical Magazine
and Journal of Science, 17(113), 698-732.
| Property | Description |
|---|---|
muCoeffs | Dynamic viscosity polynomial coefficients |
kappaCoeffs | Thermal conductivity polynomial coefficients |
Example of the specification of the transport properties for water@200bar:
transport
{
muCoeffs (-25.8542 0.031256 -2.2e-05 3289.918 -11.4784);
kappaCoeffs (-2.56543 0.008794 -9.8e-06 100.368 0);
}Definition at line 95 of file AndradeTransport.H.
|
inline |
Construct as named copy.
Definition at line 46 of file AndradeTransportI.H.
| AndradeTransport | ( | const dictionary & | dict | ) |
Construct from dictionary.
Definition at line 32 of file AndradeTransport.C.
|
inline |
Construct and return a clone.
Definition at line 59 of file AndradeTransportI.H.
|
inlinestatic |
Definition at line 70 of file AndradeTransportI.H.
References dict, and AndradeTransport< Thermo >::mu().

|
inlinestatic |
Return the instantiated type name.
Definition at line 177 of file AndradeTransport.H.
References AndradeTransport< Thermo >::kappa(), AndradeTransport< Thermo >::mu(), p, Foam::T(), and AndradeTransport< Thermo >::write().

|
inline |
Dynamic viscosity [kg/m/s].
Definition at line 83 of file AndradeTransportI.H.
References Foam::exp(), AndradeTransport< Thermo >::kappa(), and Foam::sqr().
Referenced by AndradeTransport< Thermo >::New(), and AndradeTransport< Thermo >::typeName().


|
inline |
Thermal conductivity [W/m/K].
Definition at line 100 of file AndradeTransportI.H.
References Foam::exp(), and Foam::sqr().
Referenced by AndradeTransport< Thermo >::mu(), and AndradeTransport< Thermo >::typeName().


| void write | ( | Ostream & | os | ) | const |
Write to Ostream.
Definition at line 43 of file AndradeTransport.C.
References dictionary::add(), token::BEGIN_BLOCK, Foam::decrIndent(), dict, dictionaryName::dictName(), token::END_BLOCK, Foam::endl(), Foam::incrIndent(), Foam::indent(), Foam::name(), Foam::nl, Foam::vtkWriteOps::write(), and Ostream::write().
Referenced by AndradeTransport< Thermo >::typeName().


|
friend |