Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / tutorials / compressible / sonicFoam / laminar / forwardStep / system / fvSolution
blob36bf9d4df432022adc86375fa5bdf41c33db35b8
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 // ************************************************************************* //