关于OpenFOAM中SIMPLEC算法的调用
-
看到solutionControl.H文件中有这样的描述
//- Flag to indicate to relax pressure using the // "consistent" approach of SIMPLEC bool consistent_;
1.是不是在SIMPLE里把这个改为yes就是调用了SIMPLEC了?
2.理论上SIMPLEC应该要比SIMPLE收敛快,为什么我感觉改了后几乎没区别,是我网格太少了体现不明显吗?
fvSolution里SIMPLE设置如下:SIMPLE { momentumPredictor true; nCorrectors 2; nNonOrthogonalCorrectors 1; consistent yes; residualControl { default 1e-7; } pRefCell 0; pRefValue 1e5; } relaxationFactors { fields { p_rgh 0.7; rho 1; } equations { U 0.3; h 1; } }