1 /*--------------------------------*- C++ -*----------------------------------*\
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 \*---------------------------------------------------------------------------*/
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // Time derivative discretisation schemes
24 // Gradient discretisation schemes
27 // Default gradient scheme
32 // Convection discretisation schemes
37 div(phi,U) Gauss limitedLinearV 1;
38 div(phid,p) Gauss limitedLinear 1;
39 div(phiU,p) Gauss linear;
40 div(phi,h) Gauss limitedLinear 1;
41 div(phi,k) Gauss limitedLinear 1;
42 div(phi,epsilon) Gauss limitedLinear 1;
43 div(phi,R) Gauss limitedLinear 1;
44 div(phi,omega) Gauss limitedLinear 1;
45 div((rho*R)) Gauss linear;
48 div((muEff*dev2(grad(U).T()))) Gauss linear;
51 // Laplacian discretisation schemes
56 laplacian(muEff,U) Gauss linear corrected;
57 laplacian(mut,U) Gauss linear corrected;
58 laplacian(DkEff,k) Gauss linear corrected;
59 laplacian(DepsilonEff,epsilon) Gauss linear corrected;
60 laplacian(DREff,R) Gauss linear corrected;
61 laplacian(DomegaEff,omega) Gauss linear corrected;
62 laplacian((rho*(1|A(U))),p) Gauss linear corrected;
63 laplacian(alphaEff,h) Gauss linear corrected;
66 // Interpolation schemes
73 // Surface normal gradient schemes
80 // Calculation of flux
83 // Create storage for flux for all solved variables?
88 // ************************************************************************* //