mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
105 lines
2.9 KiB
C++
105 lines
2.9 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;
|
|
location "0/air";
|
|
object p_rgh;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [ 1 -1 -2 0 0 0 0 ];
|
|
|
|
internalField uniform 100000;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type totalPressure;
|
|
value $internalField;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
minX
|
|
{
|
|
type totalPressure;
|
|
value $internalField;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
maxX
|
|
{
|
|
type totalPressure;
|
|
value $internalField;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
minY
|
|
{
|
|
type totalPressure;
|
|
value $internalField;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
maxZ
|
|
{
|
|
type totalPressure;
|
|
value $internalField;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
air_to_floor
|
|
{
|
|
type fixedFluxPressure;
|
|
value uniform 100000;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
air_to_solid
|
|
{
|
|
type fixedFluxPressure;
|
|
value uniform 100000;
|
|
p0 $internalField;
|
|
U U;
|
|
phi phi;
|
|
rho rho;
|
|
psi none;
|
|
gamma 0;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|