Skip to content

Commit

Permalink
Fix bug to use termination conversion in RMS's constant_T_V_liquid_re…
Browse files Browse the repository at this point in the history
…actor
  • Loading branch information
hwpang committed Jun 7, 2023
1 parent a14149b commit 420b3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/rmg/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ def constant_T_V_liquid_reactor(temperature,
termination = []
if terminationConversion is not None:
for spec, conv in terminationConversion.items():
termination.append(TerminationConversion(species_dict[spec], conv))
termination.append((species_dict[spec], conv))
if terminationTime is not None:
termination.append(TerminationTime(Quantity(terminationTime)))
if terminationRateRatio is not None:
Expand Down

0 comments on commit 420b3a2

Please sign in to comment.