fluent用LES算水翼边界层选择中心差分引起的震荡如何消除
-
您好,我也用过LES做过边界层,请问这么高的
, 是多少,WALE模型的LES要求近壁面的 几乎为0吧。 -
@心里的小漩涡 在 fluent用LES算水翼边界层选择中心差分引起的震荡如何消除 中说:
有试过二阶中心差分格式中耦合小部分一阶迎风格式吗,比如给个0.02%的一阶迎风格式,之前用fluent算3900的圆柱绕流,用纯二阶中心出现过数值振荡容易发散的情况,改成混合之后收敛性好很多,精度也还行,没有很明显的下降
@李东岳 李老师,这个在OpenFOAM里面能直接设置吗?
-
@xiezhuoyu LUST格式是线性迎风与线性的混合,权重是0.25与0.75,不过可以相对简单的改一下权重
这个帖子挺老了。当时没有服务器来算。有时间最近应该继续算一下。库朗数减小一些,比如0.3或者0.2左右来尝试纯粹的linear。当时完全算不动。
-
-
@李东岳 在 fluent用LES算水翼边界层选择中心差分引起的震荡如何消除 中说:
库朗数减小一些,比如0.3或者0.2左右来尝试纯粹的linear。
这个倒是找到一个很有意思的格式("Blends two schemes based on the local face-based Courant number"),
div(phi,U) Gauss CoBlended 0.01 // Co below which scheme1 is used linear // scheme1 0.05 // Co above which scheme2 is used LUST grad(U); // scheme2
这个格式可以根据Co数自动调整格式,可以实现按区域混合各种格式(虽然不是按权重混合)。
-
@xiezhuoyu Nice! 挺有意思
Description 28 Two-scheme Courant number based blending differencing scheme. 29 30 Similar to localBlended but uses a blending factor computed from the 31 face-based Courant number and the lower and upper Courant number limits 32 supplied: 33 \f[ 34 weight = 1 - max(min((Co - Co1)/(Co2 - Co1), 1), 0) 35 \f] 36 where 37 \vartable 38 Co1 | Courant number below which scheme1 is used 39 Co2 | Courant number above which scheme2 is used 40 \endvartable 41 42 The weight applies to the first scheme and 1-weight to the second scheme. 43 44 Example of the CoBlended scheme specification using LUST for Courant numbers 45 less than 1 and linearUpwind for Courant numbers greater than 10: 46 \verbatim 47 divSchemes 48 { 49 . 50 . 51 div(phi,U) Gauss CoBlended 1 LUST grad(U) 10 linearUpwind grad(U); 52 . 53 . 54 } 55 \endverbatim 56 57 SourceFiles 58 CoBlended.C
2020年11月29日 15:21
44/45
2023年12月1日 08:12