mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2212 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// fvSchemes settings
|
|
ddtSchemes
|
|
{
|
|
default Euler;
|
|
}
|
|
divSchemes
|
|
{
|
|
div(phi,s) Gauss limitedLinear 1;
|
|
}
|
|
|
|
// fvSolution settings
|
|
solvers
|
|
{
|
|
s
|
|
{
|
|
solver smoothSolver;
|
|
smoother symGaussSeidel;
|
|
tolerance 1e-6;
|
|
relTol 0;
|
|
}
|
|
}
|
|
|
|
relaxationFactors
|
|
{
|
|
fields
|
|
{
|
|
}
|
|
equations
|
|
{
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|