openfoam/tutorials/verificationAndValidation/interCondensatingEvaporatingFoam/stefanProblem/system/fvSolution
sergio 499933dbab ENH: Adding features for phase change solvers
1) Adding interfaceHeight FO
2) Adding interfaceHeatResistance mass transfer model to
   interCondensatingEvaporatingFoam with spread source approach
3) Reworking framework for icoReactingMultiphaseInterFoam
2020-02-19 14:18:25 +00:00

119 lines
2.5 KiB
C++
Executable File

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: plus |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
alpha.liquid
{
nAlphaCorr 2;
nAlphaSubCycles 2;
cAlpha 1;
MULESCorr no;
nLimiterIter 5;
//solver smoothSolver;
//smoother symGaussSeidel;
//tolerance 1e-8;
//relTol 0;
}
rho
{
solver diagonal;
tolerance 1e-7;
relTol 0.1;
}
rhoFinal
{
$rho;
tolerance 1e-7;
relTol 0;
}
p_rgh
{
//solver GAMG;
tolerance 1e-9;
solver PCG;
preconditioner DIC;
relTol 0.001;
smoother DIC;
}
mDotSmearFinal
{
solver PCG;
tolerance 1e-6;
preconditioner DIC;
relTol 0.00;
smoother DIC;
}
p_rghFinal
{
$p_rgh;
tolerance 1e-9;
relTol 0;
minIter 10;
}
pcorrFinal
{
$p_rgh;
tolerance 1e-9;
relTol 0;
}
"(U|h|T.*|k|epsilon|R)"
{
solver smoothSolver; //PBiCGStab;
smoother symGaussSeidel;
//preconditioner DILU;
tolerance 1e-7;
relTol 0.;
minIter 15;
maxIter 50;
}
"(U|h|T.*|k|epsilon|R)Final"
{
$U;
tolerance 1e-7;
relTol 0;
maxIter 50;
}
}
PIMPLE
{
momentumPredictor yes;
nCorrectors 4;
nNonOrthogonalCorrectors 0;
}
relaxationFactors
{
equations
{
".*" 1;
}
}
// ************************************************************************* //