tutorials/modules/fluid/forwardStep: Updated for consistency with the rhoCentralFoam case

This commit is contained in:
Henry Weller
2023-01-16 16:32:30 +00:00
parent 864dba76dc
commit 20d30d2d1e
2 changed files with 9 additions and 10 deletions

View File

@ -42,7 +42,7 @@ boundaryField
obstacle
{
type noSlip;
type slip;
}
defaultFaces

View File

@ -16,26 +16,25 @@ FoamFile
solvers
{
"rho.*"
{
solver diagonal;
}
"p.*"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-06;
tolerance 1e-7;
relTol 0;
}
"(U|e).*"
{
$p;
tolerance 1e-05;
relTol 0;
}
"rho.*"
{
solver PCG;
preconditioner DIC;
tolerance 1e-05;
tolerance 1e-7;
relTol 0;
}
}