Files
OpenFOAM-12/tutorials/modules/compressibleVoF/sloshingTank2D/0/T.water
2023-04-17 10:32:32 +01:00

40 lines
953 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format binary;
class volScalarField;
location "0";
object T.water;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField uniform 300;
boundaryField
{
walls
{
type calculated;
value uniform 300;
}
front
{
type empty;
}
back
{
type empty;
}
}
// ************************************************************************* //