OpenFOAM 中的热物理类之继承派生关系

根据上一篇的介绍,我们已经知道

1
2
3
4
5
6
7
8
9
10
thermoType
{
type heRhoThermo;
mixture pureMixture;
transport const;
thermo hConst;
equationOfState perfectGas;
specie specie;
energy sensibleInternalEnergy;
}

这个设置对应的是下述类:

1
2
3
4
5
6
7
8
heRhoThermo                                                                 
<
rhoThermo,
pureMixture
<
constTransport<species::thermo<hConstThermo<perfectGas<specie>>,sensibleInternalEnergy>>
>

>

接下来就能来看看具体的类的继承派生关系了。

Read More