Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / compressible / rhoCentralFoam / biconic25-55Run35 / system / fvSolution
blob1e2c2e85917bd03aeece87f677b2ab0644d76b0d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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|rhoU|rhoE)"
21     {
22         solver          diagonal;
23     }
25     U
26     {
27         solver          smoothSolver;
28         smoother        GaussSeidel;
29         nSweeps         2;
30         tolerance       1e-09;
31         relTol          0.01;
32     }
34     e
35     {
36         $U;
37         relTol          0.1;
38     }
42 // ************************************************************************* //