openfoam/tutorials/compressible/overRhoSimpleFoam/hotCylinder/cylinderAndBackground/0.orig/T
2021-05-27 08:59:28 +00:00

54 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "include/initialConditions"
dimensions [0 0 0 1 0 0 0];
internalField uniform $temperature;
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
wall
{
type fixedValue;
value uniform 450;
}
inlet
{
type fixedValue;
value uniform $temperature;
}
outlet
{
type inletOutlet;
value $internalField;
inletValue $internalField;
}
".*"
{
type zeroGradient;
}
}
// ************************************************************************* //