openfoam/etc/caseDicts/postProcessing/scalarTransport/T

32 lines
1.0 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Tinlet 1;
dimensions [0 0 0 0 0 0 0]; // T can represent any scalar
// with any dimensional units
internalField uniform 0;
boundaryField
{
inlet
{
type fixedValue;
value uniform $Tinlet;
}
".*"
{
type zeroGradient;
}
#includeEtc "caseDicts/setConstraintTypes"
}
// ************************************************************************* //