turbulent diffusivity added to increase thermal diffusivity
This commit is contained in:
parent
48844d3f12
commit
0554892b94
1 changed files with 4 additions and 1 deletions
|
|
@ -38,8 +38,11 @@ void TurbulentTransport::init(ThermoPhase* thermo, int mode, int log_level)
|
|||
|
||||
doublereal TurbulentTransport::thermalConductivity()
|
||||
{
|
||||
doublereal rho = m_thermo->density();
|
||||
doublereal cp = m_thermo->cp_mass();
|
||||
|
||||
MixTransport::thermalConductivity();
|
||||
m_lambda += m_turbmodifier;
|
||||
m_lambda += m_turbmodifier * rho * cp;
|
||||
m_condmix_ok = true;
|
||||
return m_lambda;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue