Files
OpenFOAM-12/tutorials/multicomponentFluid/lockExchange/system/setFieldsDict
2024-07-06 16:02:47 +01:00

37 lines
930 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
object setFieldsDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
defaultFieldValues
(
volScalarFieldValue sludge 0
volScalarFieldValue water 1
);
regions
(
boxToCell
{
box (0 0 0) (5 2 2);
fieldValues
(
volScalarFieldValue sludge 1
volScalarFieldValue water 0
);
}
);
// ************************************************************************* //