mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
radiationModels/derivedFvPatchFields: Corrected documentation
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1687
This commit is contained in:
@ -38,7 +38,7 @@ Description
|
|||||||
\table
|
\table
|
||||||
Property | Description | Required | Default value
|
Property | Description | Required | Default value
|
||||||
T | temperature field name | no | T
|
T | temperature field name | no | T
|
||||||
emissivityMode | emissivity mode: solidThermo or lookup | yes |
|
emissivityMode | emissivity mode: solidRadiation or lookup | yes |
|
||||||
\endtable
|
\endtable
|
||||||
|
|
||||||
Example of the boundary condition specification:
|
Example of the boundary condition specification:
|
||||||
@ -47,15 +47,15 @@ Description
|
|||||||
{
|
{
|
||||||
type greyDiffusiveRadiation;
|
type greyDiffusiveRadiation;
|
||||||
T T;
|
T T;
|
||||||
emissivityMode solidThermo;
|
emissivityMode solidRadiation;
|
||||||
value uniform 0;
|
value uniform 0;
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|
||||||
SeeAlso
|
SeeAlso
|
||||||
|
Foam::radiationCoupledBase
|
||||||
Foam::radiation::radiationModel
|
Foam::radiation::radiationModel
|
||||||
Foam::radiation::fvDOM
|
Foam::radiation::fvDOM
|
||||||
Foam::radiationCoupledBase
|
|
||||||
Foam::mixedFvPatchField
|
Foam::mixedFvPatchField
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
@ -191,8 +191,8 @@ public:
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace radiation
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
}
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|||||||
@ -36,7 +36,7 @@ Description
|
|||||||
\table
|
\table
|
||||||
Property | Description | Required | Default value
|
Property | Description | Required | Default value
|
||||||
Qro | external radiative heat flux | yes |
|
Qro | external radiative heat flux | yes |
|
||||||
emissivityMode | emissivity mode: solidThermo or lookup | yes |
|
emissivityMode | emissivity mode: solidRadiation or lookup | yes |
|
||||||
\endtable
|
\endtable
|
||||||
|
|
||||||
Example of the boundary condition specification:
|
Example of the boundary condition specification:
|
||||||
@ -45,15 +45,15 @@ Description
|
|||||||
{
|
{
|
||||||
type greyDiffusiveRadiationViewFactor;
|
type greyDiffusiveRadiationViewFactor;
|
||||||
Qro uniform 0;
|
Qro uniform 0;
|
||||||
emissivityMode solidThermo;
|
emissivityMode solidRadiation;
|
||||||
value uniform 0;
|
value uniform 0;
|
||||||
}
|
}
|
||||||
\endverbatim
|
\endverbatim
|
||||||
|
|
||||||
SeeAlso
|
SeeAlso
|
||||||
|
Foam::radiationCoupledBase
|
||||||
Foam::radiation::radiationModel
|
Foam::radiation::radiationModel
|
||||||
Foam::radiation::viewFactor
|
Foam::radiation::viewFactor
|
||||||
Foam::radiationCoupledBase
|
|
||||||
Foam::fixedValueFvPatchField
|
Foam::fixedValueFvPatchField
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
@ -73,6 +73,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
namespace radiation
|
namespace radiation
|
||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class greyDiffusiveViewFactorFixedValueFvPatchScalarField declaration
|
Class greyDiffusiveViewFactorFixedValueFvPatchScalarField declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -186,8 +187,8 @@ public:
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
} // End namespace radiation
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
}
|
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|||||||
@ -32,7 +32,6 @@ License
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
defineTypeNameAndDebug(radiationCoupledBase, 0);
|
defineTypeNameAndDebug(radiationCoupledBase, 0);
|
||||||
|
|||||||
@ -22,14 +22,14 @@ License
|
|||||||
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Class
|
Class
|
||||||
Foam::radiationCoupledBase
|
radiationCoupledBase
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Common functions to emissivity. It gets supplied from lookup into a
|
Common functions to emissivity. It gets supplied from lookup into a
|
||||||
dictionary or calculated by the solidThermo:
|
dictionary or calculated by the solidThermo:
|
||||||
|
|
||||||
- 'lookup' : lookup volScalarField with name
|
- 'lookup' : Read the patch emissivity field from the dictionary
|
||||||
- 'solidThermo' : use solidThermo emissivity()
|
- 'solidRadiation' : Use the emissivity field mapped from the adjacent solid
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
radiationCoupledBase.C
|
radiationCoupledBase.C
|
||||||
@ -124,6 +124,7 @@ public:
|
|||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~radiationCoupledBase();
|
virtual ~radiationCoupledBase();
|
||||||
|
|
||||||
|
|
||||||
// Member functions
|
// Member functions
|
||||||
|
|
||||||
// Access
|
// Access
|
||||||
|
|||||||
Reference in New Issue
Block a user