temperatureCoupledBase, turbulentHeatFluxTemperatureFvPatchScalarField: updated docs

Provided by Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1875
This commit is contained in:
Henry Weller
2015-10-25 17:08:29 +00:00
parent c213bcae71
commit 63c620dc68
2 changed files with 40 additions and 14 deletions

View File

@ -25,17 +25,41 @@ Class
Foam::temperatureCoupledBase Foam::temperatureCoupledBase
Description Description
Common functions for use in temperature coupled boundaries. For now only Common functions for use in temperature coupled boundaries.
kappa() : heat conduction at patch. Gets supplied how to lookup/calculate For now only provides the following methods:
kappa:
- kappa() : heat conduction at patch. Gets supplied how to lookup/calculate
'kappa':
- 'lookup' : lookup volScalarField (or volSymmTensorField) with name - 'lookup' : lookup volScalarField (or volSymmTensorField) with name
- 'fluidThermo' : use fluidThermo and default compressible::turbulenceModel defined in 'kappaName'
to calculate kappa - 'fluidThermo' : use fluidThermo and default
compressible::turbulenceModel to calculate kappa
- 'solidThermo' : use solidThermo kappa() - 'solidThermo' : use solidThermo kappa()
- 'directionalSolidThermo': uses look up for volSymmTensorField for - 'directionalSolidThermo': uses look up for volSymmTensorField for
transformed kappa vector. Named 'Anialpha' in solid solver transformed kappa vector. Field name definable in 'alphaAniName',
named 'Anialpha' in solid solver by default
\heading Keywords provided by this class
\table
Property | Description | Required | Default value
kappa | heat conduction type at patch, as listed above | yes |
kappaName | Name of thermal conductivity field | yes |
alphaAniName | name of the non-isotropic alpha | no | 'Anialpha'
\endtable
Usage examples:
\verbatim
nonIsotropicWall
{
...
kappa directionalSolidThermo;
kappaName none;
alphaAniName Anialpha;
...
}
\endverbatim
SourceFiles SourceFiles
temperatureCoupledBase.C temperatureCoupledBase.C

View File

@ -35,12 +35,15 @@ Description
Property | Description | Required | Default value Property | Description | Required | Default value
heatSource | 'power' [W] or 'flux' [W/m^2] | yes | heatSource | 'power' [W] or 'flux' [W/m^2] | yes |
q | heat power or flux field | yes | q | heat power or flux field | yes |
kappa | inherited from Foam::temperatureCoupledBase | yes | kappa | inherited from temperatureCoupledBase | yes |
kappaName | inherited from temperatureCoupledBase | yes |
Qr | name of the radiative flux field | yes | Qr | name of the radiative flux field | yes |
value | initial temperature value | no | calculated value | initial temperature value | no | calculated
gradient | initial gradient value | no | 0.0 gradient | initial gradient value | no | 0.0
\endtable \endtable
Note: If needed, both 'value' and 'gradient' must be defined to be used.
Example usage: Example usage:
\verbatim \verbatim
hotWall hotWall
@ -49,9 +52,8 @@ Description
heatSource flux; heatSource flux;
q uniform 10; q uniform 10;
kappa fluidThermo; kappa fluidThermo;
kappaName none;
Qr none; Qr none;
gradient uniform 0;
value uniform 300;
} }
\endverbatim \endverbatim