Dynamic immersed boundary capability with an example moving immersed boundary mesh...
[foam-extend-4.0.git] / tutorials / immersedBoundary / movingCylinderInChannelIco / system / fvSchemes
blob974b06b9a6b5462bcacf1a3bbc3de4e50d0ff109
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;
22 gradSchemes
24     default         Gauss linear;
25     grad(p)         Gauss linear;
28 divSchemes
30     default         none;
31     div(phi,U)      Gauss upwind;
34 laplacianSchemes
36     default         none;
37     laplacian(nu,U) Gauss linear corrected;
38     laplacian((1|A(U)),p) Gauss linear corrected;
40     laplacian(1,p) Gauss linear corrected;
43 interpolationSchemes
45     default         linear;
46     interpolate(HbyA) linear;
49 snGradSchemes
51     default         corrected;
54 fluxRequired
56     p;
59 // ************************************************************************* //