Skip to content

Commit f26436d

Browse files
committed
Remove unnecessary check for T in concentrations
Now that sensitive conditions uses deepcopy to copy from initial_concentrations, there is no need to worry about T showing up in initial_concentrations
1 parent 3c66ace commit f26436d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rmgpy/solver/liquid.pyx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ cdef class LiquidReactor(ReactionSystem):
9191
"""
9292
initial_concentrations = {}
9393
for label, moleFrac in self.initial_concentrations.items():
94-
if label == 'T':
95-
continue
9694
initial_concentrations[species_dict[label]] = moleFrac
9795
self.initial_concentrations = initial_concentrations
9896

0 commit comments

Comments
 (0)