From e47ece66a8d2dc3c54b7c8ae275e0ee4ebd93ba4 Mon Sep 17 00:00:00 2001 From: Yoel Date: Wed, 7 Sep 2022 11:08:10 -0500 Subject: [PATCH] fix bug --- thermosteam/_chemical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermosteam/_chemical.py b/thermosteam/_chemical.py index 4dfdae18..6f6be7d0 100644 --- a/thermosteam/_chemical.py +++ b/thermosteam/_chemical.py @@ -1441,7 +1441,7 @@ def reset(self, CAS, eos=None, phase_ref=None, self._set_phase_ref(phase_ref, self._Tm, self._Tb) if free_energies: self._init_energies(self._Cn, self._Hvap, self._Psat, self._Hfus, self._Sfus, - self._Tm, self._Tb, self._eos, phase_ref) + self._Tm, self._Tb, self._eos, self._phase_ref) self._init_reactions(Hf, S0, LHV, HHV, combustion, atoms) if self._formula and self._Hf is not None: self.reset_combustion_data() TDependentProperty.RAISE_PROPERTY_CALCULATION_ERROR = True