Files
OpenFOAM-12/tutorials/modules/multicomponentFluid/lockExchange/system/setFieldsDict
Will Bainbridge 7976bf30b5 solvers: twoLiquidMixingFoam: Removed
Simulating the mixing of two miscible liquids is possible my considering
them as different species of a multicomponent fluid. This approach also
supports an arbitrary number of liquids. The twoLiquidMixingFoam solver
has therefore been removed and its tutorials converted to use the
multicomponentFluid solver module.
2022-11-09 16:48:09 +00:00

37 lines
931 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ 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
);
}
);
// ************************************************************************* //