openfoam/etc/templates/compressibleInflowOutflow/0/T
2024-12-24 11:17:31 +00:00

49 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2412 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Tinlet 500;
Tout 298; // Used for fixedValue boundary condition on walls
dimensions [0 0 0 1 0 0 0];
internalField uniform $Tinlet;
boundaryField
{
inlet
{
type fixedValue;
value uniform $Tinlet;
}
outlet
{
type inletOutlet;
inletValue uniform $Tout;
value $inletValue;
}
wall
{
type fixedValue;
value uniform $Tout;
}
#includeEtc "caseDicts/setConstraintTypes"
}
// ************************************************************************* //