mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/*--------------------------------*- 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;
|
|
object p_rgh;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 1 -1 -2 0 0 0 0 ];
|
|
|
|
internalField uniform 1e5;
|
|
|
|
boundaryField
|
|
{
|
|
bottom
|
|
{
|
|
type fixedFluxPressure;
|
|
value $internalField;
|
|
}
|
|
|
|
top
|
|
{
|
|
type totalPressure;
|
|
p0 $internalField;
|
|
}
|
|
|
|
left
|
|
{
|
|
type fixedFluxPressure;
|
|
value $internalField;
|
|
}
|
|
|
|
right
|
|
{
|
|
type fixedFluxPressure;
|
|
value $internalField;
|
|
}
|
|
|
|
frontAndBack
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|