Transport properties package using uniformly-spaced tabulated data for viscosity and thermal conductivity vs pressure and temperature. More...
Public Member Functions | |
tabulatedTransport (const word &, const tabulatedTransport &) | |
Construct as named copy. More... | |
tabulatedTransport (const dictionary &dict) | |
Construct from dictionary. More... | |
autoPtr< tabulatedTransport > | 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< tabulatedTransport > | New (const dictionary &dict) |
static word | typeName () |
Return the instantiated type name. More... | |
Friends | |
Ostream & | operator (Ostream &, const tabulatedTransport &) |
Transport properties package using uniformly-spaced tabulated data for viscosity and thermal conductivity vs pressure and temperature.
Property | Description |
---|---|
mu | Dynamic viscosity vs pressure and temperature table |
kappa | Thermal conductivity vs pressure and temperature table |
Example of the specification of the transport properties:
transport { mu { pLow 1e3; pHigh 1e6; Tlow 200; Thigh 1500; values <m> <n> ( (..........) . . . (..........) ); } kappa { pLow 1e3; pHigh 1e6; Tlow 200; Thigh 1500; values <m> <n> ( (..........) . . . (..........) ); } }
See also tutorials/resources/thermoData/wallBoiling*
Definition at line 113 of file tabulatedTransport.H.
|
inline |
Construct as named copy.
Definition at line 46 of file tabulatedTransportI.H.
tabulatedTransport | ( | const dictionary & | dict | ) |
Construct from dictionary.
Definition at line 33 of file tabulatedTransport.C.
|
inline |
Construct and return a clone.
Definition at line 59 of file tabulatedTransportI.H.
|
inlinestatic |
Definition at line 70 of file tabulatedTransportI.H.
References dict, and tabulatedTransport< Thermo >::mu().
|
inlinestatic |
Return the instantiated type name.
Definition at line 171 of file tabulatedTransport.H.
References tabulatedTransport< Thermo >::kappa(), tabulatedTransport< Thermo >::mu(), p, Foam::T(), and tabulatedTransport< Thermo >::write().
|
inline |
Dynamic viscosity [kg/m/s].
Definition at line 83 of file tabulatedTransportI.H.
References tabulatedTransport< Thermo >::kappa(), and UniformTable< Type >::value().
Referenced by tabulatedTransport< Thermo >::New(), and tabulatedTransport< Thermo >::typeName().
|
inline |
Thermal conductivity [W/m/K].
Definition at line 94 of file tabulatedTransportI.H.
References UniformTable< Type >::value().
Referenced by tabulatedTransport< Thermo >::mu(), and tabulatedTransport< Thermo >::typeName().
void write | ( | Ostream & | os | ) | const |
Write to Ostream.
Definition at line 46 of file tabulatedTransport.C.
References dictionary::add(), Foam::decrIndent(), dict, dictionaryName::dictName(), Foam::endl(), Foam::incrIndent(), Foam::indent(), Foam::name(), Foam::nl, Foam::vtkWriteOps::write(), and Ostream::write().
Referenced by tabulatedTransport< Thermo >::typeName().
|
friend |