gauss upwind和gauss linearUpwind grad(U)结果差异大
-
@xpqiu
fvSchemes:ddtSchemes { default steadyState; } gradSchemes { default Gauss linear; grad(U) cellLimited leastSquares 1;//还用了cellLimited gauss linear和gauss linear grad(k) cellLimited leastSquares 1; grad(epsilon) cellLimited leastSquares 1; } divSchemes { default none; div(phi,U) Gauss limitedLinear 1;//还用了gauss upwind, gauss linearUpwind grad(U), bounded Gauss linearUpwind grad(U), 发现就gauss upwind和计算结果最吻合,gauss limitedLinear 1吻合的还行,其他的就完全有问题了。。 div(phi,k) bounded Gauss linearUpwind limited;//k和epsilon换了几个格式,发现影响不大 div(phi,epsilon) bounded Gauss linearUpwind limited; div((nuEff*dev2(T(grad(U))))) Gauss linear; } laplacianSchemes { default Gauss linear corrected; } interpolationSchemes { default linear; } snGradSchemes { default corrected; } wallDist { method meshWave; }
fvSolution:
solvers { p { //solver PCG; //preconditioner DIC; solver GAMG; tolerance 1e-7; relTol 0.1; smoother DICGaussSeidel; } "(U|k|epsilon|omega)" { solver PBiCGStab; preconditioner DILU; //solver smoothSolver; //smoother symGaussSeidel; tolerance 1e-7; relTol 0.001; } } SIMPLE { nNonOrthogonalCorrectors 2; consistent yes; residualControl { p 1e-7; U 1e-7; "(k|epsilon|omega|f|v2)" 1e-7; } } /*relaxationFactors { equations { U 0.9; ".*" 0.8; } }*/ relaxationFactors { fields { p 0.3; } equations { U 0.7; "(k|omega|epsilon).*" 0.7; } }
我换了另一个小模型,算的快一些,结果如下(红线的数据不见了,但我记得形状):
-
@Samuel-Tu
你这个算例设置得不太合理的地方有好几个,我没有一个一个去考察每个因素的影响,只是直接改成了我认为合理的设置。我把我改过的文件打包了,如下:
OFPlate0.zip另外,你的网格也不太好
这个网格咋一看,直觉就是边界层附近网格太粗了,看了一下最后一步的 yPlus分布,只看 roof 这个面,
果然,最小都300 多了。你用的湍流模型是 rke,这个是合理的选择,但是这个模型最好把 yPlus 控制在 30-100 范围内。
最后,我把我这边 gauss upwind 和 gauss linearUpwind 的结果对比放上来,
虽然看起来可能还是 upwind 的结果在中间这一段跟文献的更接近,但是左边这一段实际上这两个结果都与文献值有明显的偏差。我觉得你还是先把网格改得合理之后再算算看,应该会有改进的。
-
@xpqiu 确实是只有仿真结果,没有直接的试验结果参考。。但是这个仿真是为风吹雪这个物理过程做参考的,他们是做了风吹雪的风洞试验的,按照这个仿真结果算风吹雪的现象和风洞试验对上了。。。
另外我看您的设置有两个问题:
1.我看k文件里把壁面kLowREWallFucntion改成了kqrWallFunction。我记得kLowREWallFunction是适合低、高雷诺的,kqrWallFunction只适合高雷诺。我就是按比较保险的设置,所以用的kLowREWallFunction(当然现在看来yPLus那么大,没有必要用这个低、高雷诺都可以的壁面)。您这里为什么改成kqrWallFunction呢
2.fvSolution里面把nNonOrthogonalCorrectors从2改成0了。我记得这个是好像用来修正网格非正交的,我的网格有非正交的网格,这里改动的目的是啥呢。。