8bf86955be
* Note: depthCharge3D has a mesh size of over 1 Million cells, and it was not possible to run it on my system --> SOMEONE PLEASE CHECK IT
64 lines
1.4 KiB
C++
64 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default Gauss linear;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
div(rho*phi,U) Gauss upwind; //linear;
|
|
|
|
div(phi,alpha) Gauss vanLeer;
|
|
div(phirb,alpha) Gauss interfaceCompression 1.0;
|
|
|
|
div(phi,p) Gauss upwind; //vanLeer; //linear;
|
|
|
|
div(phi,k) Gauss vanLeer;
|
|
|
|
div((nuEff*dev(grad(U).T()))) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default Gauss linear uncorrected;
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
default linear;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
default uncorrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
p;
|
|
pcorr;
|
|
gamma;
|
|
}
|
|
|
|
// ************************************************************************* //
|