Fixed an interface error in getSpeciesViscosities().
This seldom used interface function needed to ensure that update_T() is called so that the temperature is current.
This commit is contained in:
parent
36ed5b338f
commit
6b0516e54d
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ namespace Cantera {
|
|||
|
||||
|
||||
virtual void getSpeciesViscosities(doublereal* visc)
|
||||
{ updateViscosity_T(); copy(m_visc.begin(), m_visc.end(), visc); }
|
||||
{ update_T(); updateViscosity_T(); copy(m_visc.begin(), m_visc.end(), visc); }
|
||||
|
||||
virtual void getThermalDiffCoeffs(doublereal* dt);
|
||||
virtual doublereal thermalConductivity();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue