Files
openfoam/tutorials/combustion/fireFoam/LES/compartmentFire/0/p_rgh

70 lines
2.0 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";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 101325;
boundaryField
{
inlet
{
type fixedFluxPressure;
gradient uniform 0;
value uniform 101325;
}
entrainment
{
type totalPressure;
rho rho;
psi none;
gamma 1.4;
p0 uniform 101325;
value uniform 101325;
}
outlet
{
type totalPressure;
rho rho;
psi none;
gamma 1.4;
p0 uniform 101325;
value uniform 101325;
}
region0_to_panelRegion_wallPanel
{
type fixedFluxPressure;
gradient uniform 0;
value uniform 101325;
}
region0_to_panelRegion_internalWallPanel_top
{
type fixedFluxPressure;
gradient uniform 0;
value uniform 101325;
}
region0_to_panelRegion_internalWallPanel_bottom
{
type fixedFluxPressure;
gradient uniform 0;
value uniform 101325;
}
}
// ************************************************************************* //