Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylinderInChannelScalarTransport / system / fvSolution
blob6830825ad93c00d56dfa807f5105a58f0a0c8aa1
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     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     p
20     {
21         solver           CG;
22         preconditioner   Cholesky;
24         minIter          1;
25         maxIter          1000;
26         tolerance        1e-08;
27         relTol           0;
28     }
30     T
31     {
32         solver           BiCGStab;
33         preconditioner   ILU0;
34         tolerance        1e-08;
35         relTol           0;
36     };
39 SIMPLE
41     nNonOrthogonalCorrectors 0;
44 // ************************************************************************* //