40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: 1.7.x |
|
||
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class volScalarField;
|
||
|
location "0";
|
||
|
object err;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
dimensions [0 1 0 0 0 0 0];
|
||
|
|
||
|
internalField uniform 1;
|
||
|
|
||
|
boundaryField
|
||
|
{
|
||
|
top
|
||
|
{
|
||
|
type zeroGradient;
|
||
|
}
|
||
|
bottom
|
||
|
{
|
||
|
type zeroGradient;
|
||
|
}
|
||
|
sides
|
||
|
{
|
||
|
type empty;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|