Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / rhoCentralFoam / shockTube / system / fvSolution
blobac5274f29e60cfce635c5f17f71d557f37b7cc0b
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     {
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     h
45     {
46         solver          smoothSolver;
47         smoother        GaussSeidel;
48         nSweeps         2;
49         tolerance       1e-10 relTol 0;
50     }
53 // ************************************************************************* //