mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Enhanced documentation for MArshak radiation boundary conditions
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -25,8 +25,21 @@ Class
|
|||||||
Foam::MarshakRadiationFvPatchScalarField
|
Foam::MarshakRadiationFvPatchScalarField
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Marshak boundary for radiation G field
|
A 'mixed' boundary condition that implements a Marshak condition for the
|
||||||
- radiation temperature taken from patch value
|
incident radiation field (usually written as G)
|
||||||
|
|
||||||
|
The radiation temperature is retrieved from the mesh database, using a
|
||||||
|
user specified temperature field name.
|
||||||
|
|
||||||
|
Example of the boundary condition specification:
|
||||||
|
\verbatim
|
||||||
|
inlet
|
||||||
|
{
|
||||||
|
type MarshakRadiation;
|
||||||
|
T T; // name of temperature field
|
||||||
|
value uniform 0; // optional value entry
|
||||||
|
}
|
||||||
|
\endverbatim
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
MarshakRadiationFvPatchScalarField.C
|
MarshakRadiationFvPatchScalarField.C
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -25,8 +25,21 @@ Class
|
|||||||
Foam::MarshakRadiationFixedTMixedFvPatchScalarField
|
Foam::MarshakRadiationFixedTMixedFvPatchScalarField
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Marshak boundary for radiation G field
|
A 'mixed' boundary condition that implements a Marshak condition for the
|
||||||
- radiation temperature specified
|
incident radiation field (usually written as G)
|
||||||
|
|
||||||
|
The radiation temperature field across the patch is supplied by the user
|
||||||
|
using the \c Trad entry.
|
||||||
|
|
||||||
|
Example of the boundary condition specification:
|
||||||
|
\verbatim
|
||||||
|
inlet
|
||||||
|
{
|
||||||
|
type MarshakRadiationFixedT;
|
||||||
|
Trad uniform 1000; // radiation temperature field
|
||||||
|
value uniform 0; // place holder
|
||||||
|
}
|
||||||
|
\endverbatim
|
||||||
|
|
||||||
SourceFiles
|
SourceFiles
|
||||||
MarshakRadiationFixedTMixedFvPatchScalarField.C
|
MarshakRadiationFixedTMixedFvPatchScalarField.C
|
||||||
|
|||||||
Reference in New Issue
Block a user