initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / tutorials / interDyMFoam / sloshingTank2D / system / fvSchemes
blobf089e4e5e6a14300b65f1deeeda14777be255c0c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  dev                                   |
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      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default Euler;
22 gradSchemes
24     default         Gauss linear;
25     grad(U)         Gauss linear;
26     grad(gamma)     Gauss linear;
29 divSchemes
31     div(rho*phi,U)  Gauss vanLeerV;
32     div(phi,gamma)  Gauss vanLeer;
33     div(phirb,gamma) Gauss vanLeer;
36 laplacianSchemes
38     default         Gauss linear corrected;
41 interpolationSchemes
43     default         linear;
46 snGradSchemes
48     default         corrected;
51 fluxRequired
53     default         no;
54     pd;
55     pcorr;
56     gamma;
59 // ************************************************************************* //