Backported sonicFoam, sonicDyMFoam, sonicLiquidFoam and tutorials (vanilla OF 3.0.1)
[foam-extend-4.0.git] / tutorials / compressible / sonicFoam / laminar / forwardStep / system / fvSolution
blob3e4690cea0d9b0c682bbb4159b001f3f52ff6001
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSolution;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 solvers
20     rho
21     {}
23     p
24     {
25         solver          BiCGStab;
26         preconditioner  DILU;
27         tolerance       1e-07;
28         relTol          0;
29     }
31     U
32     {
33         solver          BiCGStab;
34         preconditioner  DILU;
35         tolerance       1e-07;
36         relTol          0;
37     }
39     e
40     {
41         solver          BiCGStab;
42         preconditioner  DILU;
43         tolerance       1e-07;
44         relTol          0;
45     }
48 PIMPLE
50     nOuterCorrectors 1;
51     nCorrectors      2;
52     nNonOrthogonalCorrectors 0;
55 relaxationFactors
57     U       1;
58     UFinal  1;
59     e       1;
60     eFinal  1;
63 // ************************************************************************* //