We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c00df2d commit 6deb2e4Copy full SHA for 6deb2e4
1 file changed
rmgpy/chemkin.pyx
@@ -1157,7 +1157,9 @@ cpdef _process_duplicate_reactions(list reaction_list):
1157
elif reaction1.kinetics.is_pressure_dependent() == reaction2.kinetics.is_pressure_dependent():
1158
# If both reactions are pressure-independent or both are pressure-dependent, then they need
1159
# duplicate tags. Chemkin treates pdep and non-pdep reactions as different, so those are okay
1160
- raise ChemkinError('Encountered unmarked duplicate reaction {0}.'.format(reaction1))
+ # raise ChemkinError('Encountered unmarked duplicate reaction {0}.'.format(reaction1))
1161
+ reaction1.duplicate = True
1162
+ reaction2.duplicate = True
1163
1164
for reaction in duplicate_reactions_to_remove:
1165
reaction_list.remove(reaction)
0 commit comments