initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / icoDyMFoam / movingCone / system / fvSolution
bloba348c8239f625400309190dfc71a39600a5e85a6
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      fvSolution;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 solvers
19     pcorr PCG
20     {
21         preconditioner   DIC;
22         tolerance        1e-02;
23         relTol           0;
24     };
26     p PCG
27     {
28         preconditioner   DIC;
29         tolerance        1e-06;
30         relTol           0.05;
31     };
33     pFinal PCG
34     {
35         preconditioner   DIC;
36         tolerance        1e-06;
37         relTol           0;
38     };
40     U PBiCG
41     {
42         preconditioner   DILU;
43         tolerance        1e-05;
44         relTol           0;
45     };
47     cellMotionUx PCG
48     {
49         preconditioner   DIC;
50         tolerance        1e-08;
51         relTol           0;
52     };
55 PISO
57     nCorrectors     2;
58     nNonOrthogonalCorrectors 0;
61 // ************************************************************************* //