openfoam/applications/test/parallelOverset/heatTransfer/0.orig/T
2020-12-23 10:01:39 +01:00

49 lines
1.3 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;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 273;
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
"(walls|hole)"
{
type zeroGradient;
}
left1
{
type fixedValue;
value uniform 300;
}
right1
{
type fixedValue;
value uniform 273;
}
overset
{
type overset;
}
}
// ************************************************************************* //