mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Integration of VOF MULES new interfaces. Update of VOF solvers and all instances of MULES in the code. Integration of reactingTwoPhaseEuler and reactingMultiphaseEuler solvers and sub-models Updating reactingEuler tutorials accordingly (most of them tested) New eRefConst thermo used in tutorials. Some modifications at thermo specie level affecting mostly eThermo. hThermo mostly unaffected New chtMultiRegionTwoPhaseEulerFoam solver for quenching and tutorial. Phases sub-models for reactingTwoPhaseEuler and reactingMultiphaseEuler were moved to src/phaseSystemModels/reactingEulerFoam in order to be used by BC for chtMultiRegionTwoPhaseEulerFoam. Update of interCondensatingEvaporatingFoam solver.
144 lines
2.9 KiB
C++
144 lines
2.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1806 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object changeDictionaryDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
U
|
|
{
|
|
internalField uniform (0 0 0);
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform (0 0 0);
|
|
}
|
|
|
|
".*"
|
|
{
|
|
type fixedValue;
|
|
value uniform (0 0 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
T
|
|
{
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 300;
|
|
}
|
|
|
|
".*"
|
|
{
|
|
type fixedValue;
|
|
value uniform 300;
|
|
}
|
|
|
|
"water_to_.*"
|
|
{
|
|
type compressible::turbulentTemperatureRadCoupledMixed;
|
|
Tnbr T;
|
|
kappaMethod fluidThermo;
|
|
qrNbr none;
|
|
qr none;
|
|
value uniform 300;
|
|
}
|
|
}
|
|
}
|
|
|
|
epsilon
|
|
{
|
|
internalField uniform 0.01;
|
|
|
|
boundaryField
|
|
{
|
|
|
|
maxY
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 0.01;
|
|
}
|
|
|
|
".*"
|
|
{
|
|
type epsilonWallFunction;
|
|
value uniform 0.01;
|
|
}
|
|
}
|
|
}
|
|
|
|
k
|
|
{
|
|
internalField uniform 0.1;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 0.1;
|
|
}
|
|
|
|
".*"
|
|
{
|
|
type kqRWallFunction;
|
|
value uniform 0.1;
|
|
}
|
|
}
|
|
}
|
|
|
|
p_rgh
|
|
{
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
maxY
|
|
{
|
|
type prghTotalHydrostaticPressure;
|
|
p0 $internalField;
|
|
value uniform 0;
|
|
}
|
|
|
|
".*"
|
|
{
|
|
type fixedFluxPressure;
|
|
value $internalField;
|
|
}
|
|
}
|
|
}
|
|
|
|
p
|
|
{
|
|
internalField uniform 0;
|
|
|
|
boundaryField
|
|
{
|
|
".*"
|
|
{
|
|
type calculated;
|
|
value uniform 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|