Transport properties package using non-uniform tabulated data for viscosity and thermal conductivity vs temperature. More...
#include <tabulatedTransport.H>


Public Member Functions | |
| tabulatedTransport (const word &, const tabulatedTransport &) | |
| Construct as named copy. | |
| tabulatedTransport (const dictionary &dict) | |
| Construct from dictionary. | |
| autoPtr< tabulatedTransport > | clone () const |
| Return a clone. | |
| scalar | mu (const scalar p, const scalar T) const |
| Dynamic viscosity [kg/m/s]. | |
| scalar | kappa (const scalar p, const scalar T) const |
| Thermal conductivity [W/m/K]. | |
| scalar | alphah (const scalar p, const scalar T) const |
| Thermal diffusivity of enthalpy [kg/m/s]. | |
| void | write (Ostream &os) const |
| Write to Ostream. | |
Static Public Member Functions | |
| static autoPtr< tabulatedTransport > | New (const dictionary &dict) |
| static word | typeName () |
| The instantiated type name. | |
Friends | |
| Ostream & | operator<< (Ostream &, const tabulatedTransport &) |
Transport properties package using non-uniform tabulated data for viscosity and thermal conductivity vs temperature.
| Property | Description |
|---|---|
mu | Dynamic viscosity vs temperature table |
kappa | Thermal conductivity vs temperature table |
Example of the specification of the transport properties:
transport
{
mu
(
(200 1.82e-05)
(350 2.61e-05)
(400 3.93e-05)
);
kappa
(
(200 2.56e-5)
(350 3.33e-5)
(400 4.72e-5)
);
}
Definition at line 96 of file tabulatedTransport.H.
|
inline |
Construct as named copy.
Definition at line 41 of file tabulatedTransportI.H.
References Foam::name().

|
explicit |
|
inline |
Return a clone.
Definition at line 55 of file tabulatedTransportI.H.
References Foam::New().

|
inlinestatic |
Definition at line 63 of file tabulatedTransportI.H.
References dict, and Foam::New().

|
inlinestatic |
The instantiated type name.
Definition at line 154 of file tabulatedTransport.H.
|
inline |
Dynamic viscosity [kg/m/s].
Definition at line 72 of file tabulatedTransportI.H.

|
inline |
Thermal conductivity [W/m/K].
Definition at line 83 of file tabulatedTransportI.H.
Referenced by alphah().


|
inline |
| void write | ( | Ostream & | os | ) | const |
Write to Ostream.
Definition at line 42 of file tabulatedTransport.C.

|
friend |