mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
The initial set of cases in the test directory are aimed at testing the reactingEulerFoam populationBalance functionality. Patch contributed by Institute of Fluid Dynamics, Helmholtz-Zentrum Dresden - Rossendorf (HZDR) and VTT Technical Research Centre of Finland Ltd. Integrated with the "tutorials" functionality by CFD Direct Ltd.
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object setFieldsDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
defaultFieldValues
|
|
(
|
|
volScalarFieldValue alpha.air1 0
|
|
volScalarFieldValue alpha.air2 1
|
|
volScalarFieldValue alpha.water 0
|
|
);
|
|
|
|
regions
|
|
(
|
|
boxToCell
|
|
{
|
|
box (0 0 -0.1) (0.15 0.701 0.1);
|
|
fieldValues
|
|
(
|
|
volScalarFieldValue alpha.air2 0
|
|
volScalarFieldValue alpha.water 1
|
|
);
|
|
}
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|