/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 3.2 | | \\ / A nd | Web: http://www.foam-extend.org | | \\/ 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 upwind; div((nuEff*dev(grad(U).T()))) Gauss linear; } laplacianSchemes { default none; laplacian(nuEff,U) Gauss linear limited 0.5; laplacian(rAU,pcorr) Gauss linear limited 0.5; laplacian(rAU,p) Gauss linear limited 0.5; laplacian(1,p) Gauss linear limited 0.5; laplacian((1|A(U)),p) Gauss linear limited 0.5; } interpolationSchemes { default linear; interpolate(HbyA) linear; interpolate(1|A) linear; } snGradSchemes { default limited 0.5; } fluxRequired { default no; pcorr; p; } // ************************************************************************* //