diff options
author | Amit Shekhar | 2018-08-17 20:27:17 +0530 |
---|---|---|
committer | Amit Shekhar | 2018-08-17 20:27:17 +0530 |
commit | ea2fa3f28c4e351ea06ad0082236368105aa7ddf (patch) | |
tree | 674c98aa109b72d8e21aee57aec6ef150084a958 /convection-diffusion/basecase/system/fvSolution | |
parent | a3d90dcf6a46bc4bea5dc1af88c9c7e6f72553da (diff) | |
download | openfoam-tutorials-master.tar.gz openfoam-tutorials-master.tar.bz2 openfoam-tutorials-master.zip |
Diffstat (limited to 'convection-diffusion/basecase/system/fvSolution')
-rw-r--r-- | convection-diffusion/basecase/system/fvSolution | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/convection-diffusion/basecase/system/fvSolution b/convection-diffusion/basecase/system/fvSolution new file mode 100644 index 0000000..32e10ed --- /dev/null +++ b/convection-diffusion/basecase/system/fvSolution @@ -0,0 +1,35 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 5 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + T + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-06; + relTol 0; + } +} + +SIMPLE +{ + nNonOrthogonalCorrectors 0; +} + + +// ************************************************************************* // |