28 template<
class Thermo>
40 template<
class Thermo>
52 template<
class Thermo>
67 template<
class Thermo>
69 kappa(
const scalar
p,
const scalar
T)
const 74 template<
class Thermo>
76 Kappa(
const scalar
p,
const scalar
T)
const 82 template<
class Thermo>
84 mu(
const scalar
p,
const scalar
T)
const 91 template<
class Thermo>
95 return kappa_/this->Cpv(p, T);
100 template<
class Thermo>
101 inline void Foam::constAnIsoSolidTransport<Thermo>::operator=
110 template<
class Thermo>
111 inline void Foam::constAnIsoSolidTransport<Thermo>::operator+=
116 scalar molr1 = this->nMoles();
118 molr1 /= this->nMoles();
119 scalar molr2 = ct.nMoles()/this->nMoles();
121 kappa_ = molr1*kappa_ + molr2*ct.kappa_;
125 template<
class Thermo>
126 inline void Foam::constAnIsoSolidTransport<Thermo>::operator-=
131 scalar molr1 = this->nMoles();
133 molr1 /= this->nMoles();
134 scalar molr2 = ct.nMoles()/this->nMoles();
136 kappa_ = molr1*kappa_ - molr2*ct.kappa_;
143 template<
class Thermo>
152 s*
static_cast<const Thermo&
>(ct),
A list of keyword definitions, which are a keyword followed by any number of values (e...
static autoPtr< constAnIsoSolidTransport > New(const dictionary &dict)
Vector< scalar > vector
A scalar version of the templated Vector.
const dimensionedScalar kappa
Coulomb constant: default SI units: [N.m2/C2].
gmvFile<< "tracers "<< particles.size()<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().x()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().y()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){gmvFile<< iter().position().z()<< " ";}gmvFile<< nl;forAll(lagrangianScalarNames, i){word name=lagrangianScalarNames[i];IOField< scalar > s(IOobject(name, runTime.timeName(), cloud::prefix, mesh, IOobject::MUST_READ, IOobject::NO_WRITE))
scalar mu(const scalar p, const scalar T) const
Dynamic viscosity [kg/ms].
A class for handling words, derived from string.
scalar kappa(const scalar p, const scalar T) const
Isotropic thermal conductivity [W/mK].
vector alphah(const scalar p, const scalar T) const
Thermal diffusivity of enthalpy [kg/ms].
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
dimensioned< scalar > mag(const dimensioned< Type > &)
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
vector Kappa(const scalar p, const scalar T) const
Un-isotropic thermal conductivity [W/mK].
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Constant properties Transport package. Templated into a given Thermodynamics package (needed for ther...