Files
OpenFOAM-12/tutorials/shockFluid/forwardStep/system/fvSolution
2024-07-06 16:02:47 +01:00

46 lines
1.0 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
"(rho|rhoU|rhoE).*"
{
solver diagonal;
}
"U.*"
{
solver smoothSolver;
smoother GaussSeidel;
nSweeps 2;
tolerance 1e-09;
relTol 0.01;
}
"e.*"
{
$U;
tolerance 1e-10;
relTol 0;
}
}
PIMPLE
{}
// ************************************************************************* //