mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev.FMGlobal |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system/wallFilmRegion";
|
|
object fvSolution;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solvers
|
|
{
|
|
"(Uf|hsf|deltaf\*rhof)"
|
|
{
|
|
solver smoothSolver;
|
|
smoother GaussSeidel;
|
|
tolerance 1e-10;
|
|
relTol 0;
|
|
}
|
|
deltaf
|
|
{
|
|
solver smoothSolver;
|
|
smoother GaussSeidel;
|
|
tolerance 1e-10;
|
|
relTol 0;
|
|
}
|
|
}
|
|
|
|
|
|
PISO
|
|
{
|
|
momentumPredictor true;
|
|
nOuterCorr 1;
|
|
nCorr 1;
|
|
nNonOrthCorr 0;
|
|
dfMin 1e-10;
|
|
}
|
|
|
|
|
|
relaxationFactors
|
|
{}
|
|
|
|
// ************************************************************************* //
|