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

52 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / 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 volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
ground
{
type fixedValue;
value $internalField;
}
burner
{
type flowRateInletVelocity;
massFlowRate constant 0.001294; //60kW C3H8
value uniform (0 0 0);
}
"(top|sides)"
{
type pressureInletOutletVelocity;
value $internalField;
}
"(region0_to.*)"
{
type mappedFlowRate;
nbrPhi phiGas;
value uniform (0 0 0);
}
}
// ************************************************************************* //