| /*--------------------------------*- C++ -*----------------------------------*\ | |
| | ========= | | | |
| | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | |
| | \\ / O peration | Version: v2212 | | |
| | \\ / A nd | Website: www.openfoam.com | | |
| | \\/ M anipulation | | | |
| \*---------------------------------------------------------------------------*/ | |
| FoamFile | |
| { | |
| version 2.0; | |
| format ascii; | |
| class dictionary; | |
| object fvSchemes; | |
| } | |
| // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // | |
| ddtSchemes | |
| { | |
| default Euler; | |
| } | |
| gradSchemes | |
| { | |
| default Gauss linear; | |
| grad(p) Gauss linear; | |
| } | |
| divSchemes | |
| { | |
| default none; | |
| div(phi,U) Gauss linear; //NOTICE: there is no space between the comma and the variables | |
| div(phi,T) Gauss linear; | |
| } | |
| laplacianSchemes | |
| { | |
| default Gauss linear orthogonal; | |
| } | |
| interpolationSchemes | |
| { | |
| default linear; | |
| } | |
| snGradSchemes | |
| { | |
| default orthogonal; | |
| } | |
| wallDist | |
| { | |
| method meshWave; | |
| } | |
| // ************************************************************************* // | |