Skip to content

Commit

Permalink
minor enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
yoelcortes committed May 28, 2024
1 parent 1f38024 commit 6ca7e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thermosteam/reaction/_reaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,8 @@ def _get_stream(self, material, T=None, P=None, phase=None):
except:
self._stream = stream = tmo.Stream(thermo=self._thermo)
stream.imol.data[:] = material
stream.T = T
stream.P = P
if P is not None: stream.T = T
if P is not None: stream.P = P
stream.phase = phase
return stream

Expand Down

0 comments on commit 6ca7e07

Please sign in to comment.