大学の研究にて層流の定常解析をsimpleFoamを用いて行っています。
素人質問で申し訳ないのですが、fvSolution内の収束判定条件について質問させていただきます。
収束判定値の設定はsolversとSIMPLEにおいてそれぞれ設定しなければならないようですが、
どういった違いがあるのでしょうか。
またrelaxationFactorsはどういったものなのでしょうか。
ざっくりとした質問で申し訳ありませんが、ご教授いただけたら幸いです。
参考にfvSolutionの記述を以下に掲載します。
*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-06; //絶対残差許容値
relTol 0.01; //相対残差許容値
}
U
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0.01;
}
}
SIMPLE
{
nNonOrthogonalCorrectors 0;
residualControl
{
p 1e-5;
U 1e-5;
}
}
relaxationFactors
{
fields
{
p 0.3;
}
equations
{
U 0.7;
}
}
// ************************************************************************* //