Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylinderInChannelFineIcoIbFoam / system / fvSchemes
blob520f08ba89970a4adc7c0a9af0bc9fbd2f783cf4
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     object      fvSchemes;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 ddtSchemes
19     default Euler;
20     ddt(U)  backward;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
29 divSchemes
31     default         none;
32 //     div(phi,U)      Gauss upwind;
33     div(phi,U)      Gauss linear;
34 //     div(phi,U)      Gauss linearUpwind Gauss linear;
35 //     div(phi,U)      Gauss vanLeer;
36 //     div(phi,U)      Gauss GammaV 0.2;
39 laplacianSchemes
41     default         none;
42     laplacian(nu,U) Gauss linear corrected;
43     laplacian((1|A(U)),p) Gauss linear corrected;
45     laplacian(1,p) Gauss linear corrected;
48 interpolationSchemes
50     default         linear;
51     interpolate(HbyA) linear;
54 snGradSchemes
56     default         corrected;
59 fluxRequired
61     p;
64 // ************************************************************************* //