LinFlow-heat coupling¶
Sound propagation in small dimensions where the viscous and thermal boundary layers are comparable to the feature dimensions, not only is affected by the viscous losses (LinFlow PDE) but also is affected by thermal losses. The thermal losses will be considered by coupling the heat PDE to LinFlow PDE. The coupling terms are discussed here.
Coupling conditions¶
Considering the temperature variations in LinFlow PDE requires using the equation of state and applying the relations among pressure, density and temperature. openCFS uses the linearized equation of state a
Where \beta_T and \alpha_p are the isothermal coefficients of compressibility and the isobaric coefficient of thermal expansion, respectively. In general, these coefficients can be written in terms of the measurable fluid properties such as density, heat capacity, adiabatic exponent (heat capacity ratio), speed of sound, and reference temperature 1. These coefficients are
with the speed of sound c = \sqrt{\frac{K}{\rho_0}}, compression modulus K, specific heat capacity at constant pressure c_{\rm p} and adiabatic exponent k . Applying \eqref{eq:eq-of-state} in conservation of mass in LinFlow PDE result in following
On the other hand, applying \eqref{eq:eq-of-state} to the Heat PDE changes it
In the openCFS simulation-xml file, the LinFlow-heat coupling is defined as
<couplingList>
<direct>
<linFlowHeatDirect>
<regionList>
<region name=""/>
</regionList>
</linFlowHeatDirect>
</direct>
</couplingList>
<pdeList>
both LinFlow fluidMechLin
and heat PDE heatConduction
should be defiend.
Material¶
In addition to general heat conduction material parameters (density, heat capacity, and heat conductivity) in LinFlow-heat PDE, the reference temperature T_0 needed in \eqref{eq:massHeatCoupling} should also be defined. A material-xml file in openCFS for LinFlow-heat coupling, e.g., for air, is
<material name="Air">
<flow>
...
</flow>
<heatConduction>
<density>
<linear>
<real>1.225</real>
</linear>
</density>
<heatCapacity>
<linear>
<real> 975.3</real>
</linear>
</heatCapacity>
<heatConductivity>
<linear>
<isotropic>
<real> 25.18e-3</real>
</isotropic>
</linear>
</heatConductivity>
<refTemperature>
<linear>
<real> 294.3 </real>
</linear>
</refTemperature>
</heatConduction>
</material>
References¶
-
Philip McCord Morse and K Uno Ingard. Theoretical acoustics. Princeton university press, 1986. ↩