OpenFOAM-4.x/tutorials/combustion/fireFoam/les/oppositeBurningPanels/0/C3H8
2016-06-28 11:59:45 +01:00

53 lines
1.5 KiB
Text

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