怎么把适合v2306的湍流模型改编到OpenFOAM-10版本上
-
我想在OpenFOAM-10版本上用dynamicSmagorinsky湍流模型,在网上找到一个版本可惜它老是显示无法加载动态库参考我之前的帖子:链接文本
又在网上找到一个新的dynamicSmagorinsky模型:https://github.com/AlbertoPa/dynamicSmagorinsky
想把它改成OpenFOAM-10版本下使用,无奈我才疏学浅,不知怎么下手,只知道要改写make文件下option文件(也不知其他文件需不需要修改):EXE_INC = \ -I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \ -I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \ -I$(LIB_SRC)/transportModels \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ LIB_LIBS = \ -lturbulenceModels \ -lincompressibleTurbulenceModels \ -lincompressibleTransportModels \ -lcompressibleTurbulenceModels \ -lcompressibleTransportModels \ -lfiniteVolume \ -lmeshTools \ -lOpenFOAM
路过的大佬帮忙给点意见,感谢!感谢!感谢!
-
@李东岳 谢谢李老师的解答,我也在cfd-online找到相关帖子里面有这样一句话:The dynamic Smagorinsky in previous versions was averaging the coefficient over the whole domain (which defeats the whole purpose of a dynamic solution). However you can use the dynamicLagrangian model which is supposed to perform the averaging over a streamline(在以前的版本中,动态Smagorinsky是对整个域的系数求平均值(这违背了动态解决方案的全部目的)。然而,你可以使用动态拉格朗日模型,它应该在流线上执行平均)。所以dynamicSmagorinsky和dynamicLagrangian仅仅是平均的方式不同吗?它用在喷雾雾化过程可行吗?(可能这个需要看详细代码,原谅学生的这个问题不太成熟,也是希望有做过喷雾的大佬看到这个帖子,了解的帮忙解答一二!)感谢李老师。