This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/boussinesqBuoyantFoam/heatedCavity/system/fvSchemes

70 lines
1.6 KiB
Text

/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.4 |
| \\ / A nd | Web: http://www.openfoam.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
root "";
case "";
instance "";
local "";
class dictionary;
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
ddtSchemes
{
default Euler;
}
gradSchemes
{
default Gauss linear;
grad(p) Gauss linear;
}
divSchemes
{
default none;
div(phi,U) Gauss GammaV 0.2;
div(phi,T) Gauss Gamma 0.2;
}
laplacianSchemes
{
default none;
laplacian((mu|rho0),U) Gauss linear corrected;
laplacian((1|A(U)),p) Gauss linear corrected;
laplacian((k|(rho0*Cp)),T) Gauss linear corrected;
}
interpolationSchemes
{
default linear;
interpolate(HbyA) linear;
laplacian(DT,T) Gauss linear corrected;
}
snGradSchemes
{
default corrected;
}
fluxRequired
{
default no;
p;
}
// ************************************************************************* //