openfoam/tutorials/multiphase/compressibleInterFoam/laminar/waterCooler/solid/0/T
2020-12-09 15:17:45 +00:00

47 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 400;
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
top
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
value $internalField;
Tnbr T;
kappaMethod solidThermo;
}
bottom
{
type uniformFixedValue;
uniformValue 400;
}
walls
{
type zeroGradient;
value $internalField;
}
}
// ************************************************************************* //