You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 3.0.1 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
object p;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
pressure 0;
|
|
|
|
dimensions [0 2 -2 0 0 0 0];
|
|
|
|
internalField uniform $pressure;
|
|
|
|
boundaryField
|
|
{
|
|
//- Set patchGroups for constraint patches
|
|
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
|
|
Inlet
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
Outlet
|
|
{
|
|
type fixedValue;
|
|
value uniform $pressure;
|
|
}
|
|
|
|
wag
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
Ext
|
|
{
|
|
type fixedValue;
|
|
value uniform $pressure;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|