请问thermoType中的Hf是什么含义?
-
看到User guide中有下面的例子,有几个问题想请教大家。
mixture { specie { nMoles 1; molWeight 28.96; } thermodynamics { Cp 1004.5; Hf 2.544e+06; } transport { mu 0; Pr 1; } }
第一个就是
thermodynamics
中的Hf
是什么含义,2.544e+06
是如何得到的?
第二个就是OpenFOAM里的这些设置如何和密度、压强等量联系起来,也就是如果通过这些得到密度和压强等量? -
//- Heat of formation // Note: input in [J/kg], but internally uses [J/kmol] scalar Hf_; 参考 https://coding.net/u/dyfluid/p/OpenFOAM-5.x/git/blob/master/src/thermophysicalModels/specie/thermo/eConst/eConstThermo.H
具体的值需要根据物性查。你这个是哪里的文件?为什么
mu
是0?粘度是0? -
我也具体忘了是哪个了,可能是无粘的。举一个新的例子。这是rhoPimpleFoam的下的helmholtzResonance算例文件。这个Hf反而是0了。
mixture { specie { nMoles 1; molWeight 28.9; } thermodynamics { Cv 712; Hf 0; } transport { mu 1.8e-05; Pr 0.7; } }
-
谢谢啦。
2018年1月24日 13:09
3/5
2018年1月27日 07:02