initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / electromagnetics / mhdFoam / hartmann / system / fvSchemes
blobb4cdaf0fb6ba32c06830ae180ccb8ce333304870
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "system";
14     object      fvSchemes;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 ddtSchemes
20     default         Euler;
23 gradSchemes
25     default         Gauss linear;
26     grad(p)         Gauss linear;
27     grad((DBU*magSqr(B))) Gauss linear;
30 divSchemes
32     default         none;
33     div(phi,U)      Gauss linear;
34     div(phiB,U)     Gauss linear;
35     div(phi,B)      Gauss linear;
36     div(phiB,((2*DBU)*B)) Gauss linear;
39 laplacianSchemes
41     default         none;
42     laplacian(nu,U) Gauss linear corrected;
43     laplacian((1|A(U)),p) Gauss linear corrected;
44     laplacian(DB,B) Gauss linear corrected;
45     laplacian((1|A(B)),pB) Gauss linear corrected;
48 interpolationSchemes
50     default         linear;
51     interpolate(HbyA) linear;
52     interpolate(B)  linear;
55 snGradSchemes
57     default         corrected;
60 fluxRequired
62     default         no;
63     p               ;
64     pB              ;
68 // ************************************************************************* //