52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "5";
|
|
object water.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 0 0 0 0];
|
|
|
|
internalField uniform 1;
|
|
|
|
boundaryField
|
|
{
|
|
inlet
|
|
{
|
|
type fixedValue;
|
|
value uniform 1;
|
|
}
|
|
outlet
|
|
{
|
|
type inletOutlet;
|
|
phi phi.liquid;
|
|
inletValue uniform 1;
|
|
value uniform 1;
|
|
}
|
|
wall1
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
wall2
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
defaultFaces
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|