55 lines
1.4 KiB
C++
55 lines
1.4 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/wallFilmRegion";
|
|
object fvSolution;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solvers
|
|
{
|
|
"(Uf|hf|deltaf\*rhof)"
|
|
{
|
|
solver smoothSolver;
|
|
smoother GaussSeidel;
|
|
tolerance 1e-10;
|
|
relTol 0;
|
|
maxIter 100;
|
|
}
|
|
deltaf
|
|
{
|
|
solver smoothSolver;
|
|
smoother GaussSeidel;
|
|
tolerance 1e-10;
|
|
relTol 0;
|
|
maxIter 100;
|
|
}
|
|
}
|
|
|
|
|
|
PISO
|
|
{
|
|
momentumPredictor yes;
|
|
nCorr 1;
|
|
nNonOrthCorr 0;
|
|
}
|
|
|
|
|
|
relaxationFactors
|
|
{
|
|
equations
|
|
{
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|