Default transport solver: change from PBiCG to smoothSolver with symGaussSeidel smoother

Better for most but not all cases.
This commit is contained in:
Henry
2014-02-04 16:27:35 +00:00
parent 2c5a28e005
commit bd5e4cf172
45 changed files with 141 additions and 141 deletions

View File

@ -47,24 +47,24 @@ solvers
"U.*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-7;
relTol 0;
}
"h.*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-7;
relTol 0;
}
"(k|epsilon|Theta).*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-7;
relTol 0;
}

View File

@ -53,32 +53,32 @@ solvers
"U.*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0;
}
"(h|e).*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-6;
relTol 0;
}
"Theta.*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-6;
relTol 0;
}
"(k|epsilon).*"
{
solver PBiCG;
preconditioner DILU;
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0;
}