turbulentHeatFluxTemperatureFvPatchScalarField: Updated docs

Resolves report http://www.openfoam.org/mantisbt/view.php?id=1875
This commit is contained in:
Henry Weller
2015-10-25 15:29:33 +00:00
parent 0d9ae2f3e7
commit 8bbeafea8d

View File

@ -29,19 +29,36 @@ Description
heat source either specified in terms of an absolute power [W], or as a heat source either specified in terms of an absolute power [W], or as a
flux [W/m^2]. flux [W/m^2].
Example usage: \heading Patch usage
\table
Property | Description | Required | Default value
heatSource | 'power' [W] or 'flux' [W/m^2] | yes |
q | heat power or flux field | yes |
kappa | inherited from Foam::temperatureCoupledBase | yes |
Qr | name of the radiative flux field | yes |
value | initial temperature value | no | calculated
gradient | initial gradient value | no | 0.0
\endtable
Example usage:
\verbatim
hotWall hotWall
{ {
type compressible::turbulentHeatFluxTemperature; type compressible::turbulentHeatFluxTemperature;
heatSource flux; // power [W]; flux [W/m^2] heatSource flux;
q uniform 10; // heat power or flux q uniform 10;
kappa fluidThermo; // calculate kappa=alphaEff*thermo.Cp kappa fluidThermo;
Qr none; // name of the radiative flux Qr none;
value uniform 300; // initial temperature value gradient uniform 0;
value uniform 300;
} }
\endverbatim
SeeAlso
Foam::temperatureCoupledBase
SourceFiles SourceFiles
turbulentHeatFluxTemperatureFvPatchScalarField.C turbulentHeatFluxTemperatureFvPatchScalarField.C