initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / rhoCentralFoam / biconic25-55Run35 / system / fvSolution
blob1b0e6d8a3ead5c28ae50b5b4cc3c7d6e98cda206
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.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     {
22         solver          diagonal;
23     }
25     rhoU
26     {
27         solver          diagonal;
28     }
30     rhoE
31     {
32         solver          diagonal;
33     }
35     U
36     {
37         solver          smoothSolver;
38         smoother        GaussSeidel;
39         nSweeps         2;
40         tolerance       1e-09;
41         relTol          0.01;
42     }
44     e
45     {
46         solver          smoothSolver;
47         smoother        GaussSeidel;
48         nSweeps         2;
49         tolerance       1e-09 relTol 0.1;
50     }
54 // ************************************************************************* //