STYLE: Minor corrections/additions to basicThermo.H

This commit is contained in:
andy
2010-02-11 12:01:23 +00:00
parent 9259d4f635
commit 23ec967297

View File

@ -145,17 +145,17 @@ public:
// Non-const access allowed for transport equations // Non-const access allowed for transport equations
virtual volScalarField& h(); virtual volScalarField& h();
//- Enthalpy [J/kg] //- Total enthalpy [J/kg]
virtual const volScalarField& h() const; virtual const volScalarField& h() const;
//- Enthalpy for cell-set [J/kg] //- Total enthalpy for cell-set [J/kg]
virtual tmp<scalarField> h virtual tmp<scalarField> h
( (
const scalarField& T, const scalarField& T,
const labelList& cells const labelList& cells
) const; ) const;
//- Enthalpy for patch [J/kg] //- Total enthalpy for patch [J/kg]
virtual tmp<scalarField> h virtual tmp<scalarField> h
( (
const scalarField& T, const scalarField& T,
@ -166,17 +166,17 @@ public:
// Non-const access allowed for transport equations // Non-const access allowed for transport equations
virtual volScalarField& hs(); virtual volScalarField& hs();
//- Enthalpy [J/kg] //- Sensible enthalpy [J/kg]
virtual const volScalarField& hs() const; virtual const volScalarField& hs() const;
//- Enthalpy for cell-set [J/kg] //- Sensible enthalpy for cell-set [J/kg]
virtual tmp<scalarField> hs virtual tmp<scalarField> hs
( (
const scalarField& T, const scalarField& T,
const labelList& cells const labelList& cells
) const; ) const;
//- Enthalpy for patch [J/kg] //- Sensible enthalpy for patch [J/kg]
virtual tmp<scalarField> hs virtual tmp<scalarField> hs
( (
const scalarField& T, const scalarField& T,
@ -197,7 +197,7 @@ public:
const labelList& cells const labelList& cells
) const; ) const;
//-Internal energy for patch [J/kg] //- Internal energy for patch [J/kg]
virtual tmp<scalarField> e virtual tmp<scalarField> e
( (
const scalarField& T, const scalarField& T,