OpenFOAM-4.x/tutorials/incompressible/shallowWaterFoam/squareBump/0/hTotal
2016-06-28 11:59:45 +01:00

46 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.x |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object hTotal;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform 0.01;
boundaryField
{
sides
{
type calculated;
value uniform 0.01;
}
inlet
{
type calculated;
value uniform 0.01;
}
outlet
{
type calculated;
value uniform 0.01;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //