Skip to content

Commit

Permalink
Call hydrolysis function (still doesn't exist)
Browse files Browse the repository at this point in the history
  • Loading branch information
alongd committed Oct 10, 2024
1 parent 829d584 commit 1ab020a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions arc/job/adapters/ts/heuristics.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,14 @@ def execute_incore(self):
)
tsg.tok()

if rxn.family == 'hydrolysis':
tsg = TSGuess(method='Heuristics')
tsg.tic()
xyzs = hydrolysis(arc_reaction=rxn,
rmg_reactions=reaction_list,
)
tsg.tok()

for method_index, xyz in enumerate(xyzs):
unique = True
for other_tsg in rxn.ts_species.ts_guesses:
Expand Down

0 comments on commit 1ab020a

Please sign in to comment.