2021-02-18 15:28:14 +05:00
|
|
|
/*--------------------------------*- 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;
|
2021-02-24 15:36:17 +05:00
|
|
|
location "0";
|
2021-02-18 15:28:14 +05:00
|
|
|
object p;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
dimensions [0 2 -2 0 0 0 0];
|
|
|
|
|
2021-02-24 15:36:17 +05:00
|
|
|
|
|
|
|
internalField uniform 0;
|
2021-02-19 19:36:53 +05:00
|
|
|
|
2021-02-18 15:28:14 +05:00
|
|
|
boundaryField
|
|
|
|
{
|
|
|
|
inlet
|
|
|
|
{
|
2021-02-24 15:36:17 +05:00
|
|
|
type fixedValue;
|
|
|
|
value uniform 0.001;
|
2021-02-18 15:28:14 +05:00
|
|
|
}
|
|
|
|
outlet
|
|
|
|
{
|
2021-02-24 15:36:17 +05:00
|
|
|
type fixedValue;
|
|
|
|
value uniform 0;
|
2021-02-18 15:28:14 +05:00
|
|
|
}
|
2021-03-04 15:58:08 +05:00
|
|
|
symetryPlane
|
|
|
|
{
|
|
|
|
type zeroGradient;
|
|
|
|
}
|
2021-02-18 15:28:14 +05:00
|
|
|
wall
|
|
|
|
{
|
2021-02-24 15:36:17 +05:00
|
|
|
type zeroGradient;
|
2021-05-25 18:49:32 +05:00
|
|
|
}
|
2021-06-20 18:04:12 +05:00
|
|
|
strips
|
|
|
|
{
|
|
|
|
type zeroGradient;
|
|
|
|
}
|
|
|
|
|
2021-05-25 18:49:32 +05:00
|
|
|
defaultFaces
|
|
|
|
{
|
|
|
|
type zeroGradient;
|
2021-02-18 15:28:14 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-24 15:36:17 +05:00
|
|
|
|
2021-02-18 15:28:14 +05:00
|
|
|
// ************************************************************************* //
|