intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / tutorials / snappyHexMesh / motorBike / system / fvSchemes
blob51ebb81a9da7ee1d671f1bdf6351da21d6c12cd7
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
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;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
28     //snGradCorr(cellMotionU) Gauss linear;
31 divSchemes
33     default         none;
34     div(phi,U)      Gauss linear;
37 laplacianSchemes
39     default         none;
40     laplacian(nu,U) Gauss linear corrected;
41     laplacian(1|A(U),p) Gauss linear corrected;
43     laplacian(diffusivity,cellMotionU) Gauss linear uncorrected;
46 interpolationSchemes
48     default         linear;
49     interpolate(HbyA) linear;
52 snGradSchemes
54     default         corrected;
57 fluxRequired
59     default         no;
60     p;
63 // ************************************************************************* //