basicThermo: Correct function descriptions
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1044
This commit is contained in:
parent
6288457023
commit
a981013e67
@ -405,32 +405,35 @@ public:
|
|||||||
//- Thermal diffusivity for temperature of mixture [J/m/s/K]
|
//- Thermal diffusivity for temperature of mixture [J/m/s/K]
|
||||||
virtual tmp<volScalarField> kappa() const = 0;
|
virtual tmp<volScalarField> kappa() const = 0;
|
||||||
|
|
||||||
//- Thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Thermal diffusivity for temperature
|
||||||
|
// of mixture for patch [J/m/s/K]
|
||||||
virtual tmp<scalarField> kappa
|
virtual tmp<scalarField> kappa
|
||||||
(
|
(
|
||||||
const label patchi
|
const label patchi
|
||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture [J/m/s/K]
|
//- Effective thermal diffusivity for temperature
|
||||||
|
// of mixture [J/m/s/K]
|
||||||
virtual tmp<volScalarField> kappaEff
|
virtual tmp<volScalarField> kappaEff
|
||||||
(
|
(
|
||||||
const volScalarField&
|
const volScalarField&
|
||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Effective thermal diffusivity for temperature
|
||||||
|
// of mixture for patch [J/m/s/K]
|
||||||
virtual tmp<scalarField> kappaEff
|
virtual tmp<scalarField> kappaEff
|
||||||
(
|
(
|
||||||
const scalarField& alphat,
|
const scalarField& alphat,
|
||||||
const label patchi
|
const label patchi
|
||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture [J/m/s/K]
|
//- Effective thermal diffusivity of mixture [kg/m/s]
|
||||||
virtual tmp<volScalarField> alphaEff
|
virtual tmp<volScalarField> alphaEff
|
||||||
(
|
(
|
||||||
const volScalarField& alphat
|
const volScalarField& alphat
|
||||||
) const = 0;
|
) const = 0;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Effective thermal diffusivity of mixture for patch [kg/m/s]
|
||||||
virtual tmp<scalarField> alphaEff
|
virtual tmp<scalarField> alphaEff
|
||||||
(
|
(
|
||||||
const scalarField& alphat,
|
const scalarField& alphat,
|
||||||
|
@ -259,30 +259,32 @@ public:
|
|||||||
//- Thermal diffusivity for temperature of mixture [J/m/s/K]
|
//- Thermal diffusivity for temperature of mixture [J/m/s/K]
|
||||||
virtual tmp<volScalarField> kappa() const;
|
virtual tmp<volScalarField> kappa() const;
|
||||||
|
|
||||||
//- Thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Thermal diffusivity for temperature
|
||||||
|
// of mixture for patch [J/m/s/K]
|
||||||
virtual tmp<scalarField> kappa
|
virtual tmp<scalarField> kappa
|
||||||
(
|
(
|
||||||
const label patchi
|
const label patchi
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture [J/m/s/K]
|
//- Effective thermal diffusivity for temperature
|
||||||
|
// of mixture [J/m/s/K]
|
||||||
virtual tmp<volScalarField> kappaEff(const volScalarField&) const;
|
virtual tmp<volScalarField> kappaEff(const volScalarField&) const;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Effective thermal diffusivity for temperature
|
||||||
|
// of mixture for patch [J/m/s/K]
|
||||||
virtual tmp<scalarField> kappaEff
|
virtual tmp<scalarField> kappaEff
|
||||||
(
|
(
|
||||||
const scalarField& alphat,
|
const scalarField& alphat,
|
||||||
const label patchi
|
const label patchi
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
|
//- Effective thermal diffusivity of mixture [kg/m/s]
|
||||||
//- Effective thermal diffusivity of mixture [J/m/s/K]
|
|
||||||
virtual tmp<volScalarField> alphaEff
|
virtual tmp<volScalarField> alphaEff
|
||||||
(
|
(
|
||||||
const volScalarField& alphat
|
const volScalarField& alphat
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
//- Effective thermal diffusivity of mixture for patch [J/m/s/K]
|
//- Effective thermal diffusivity of mixture for patch [kg/m/s]
|
||||||
virtual tmp<scalarField> alphaEff
|
virtual tmp<scalarField> alphaEff
|
||||||
(
|
(
|
||||||
const scalarField& alphat,
|
const scalarField& alphat,
|
||||||
|
Loading…
Reference in New Issue
Block a user