From e4af5fa7bc90469f427e3b6299970a33128b05e8 Mon Sep 17 00:00:00 2001 From: Sebastian Weiss <sebastian.weiss@ptb.de> Date: Fri, 28 Oct 2022 06:31:42 +0000 Subject: [PATCH] Upload New File --- tutorial/system/fvSolution | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 tutorial/system/fvSolution diff --git a/tutorial/system/fvSolution b/tutorial/system/fvSolution new file mode 100644 index 0000000..756c13c --- /dev/null +++ b/tutorial/system/fvSolution @@ -0,0 +1,54 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2012 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + "rho.*" + { + solver diagonal; + } + + "p.*" + { + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-08; + relTol 0; + } + + "(U|e|R).*" + { + $p; + tolerance 1e-07; + } + + "(k|omega).*" + { + $p; + tolerance 1e-08; + } +} + +PIMPLE +{ + nOuterCorrectors 2; + nCorrectors 1; + nNonOrthogonalCorrectors 0; +} + + +// ************************************************************************* // -- GitLab