Files
openfoam/tutorials/combustion/fireFoam/les/oppositeBurningPanels/0/O2
2015-12-09 15:03:05 +00:00

56 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object O2;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField uniform 0.23301;
boundaryField
{
top
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
ground
{
type zeroGradient;
}
sides
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
burner
{
type fixedValue;
value uniform 0;
}
"(region0_to.*)"
{
type zeroGradient;
}
}
// ************************************************************************* //