File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/ts-workflow-examples/geodesic_ts_with_hessian Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11import toml
22import logging
3- import jobflow as jf
3+ # import jobflow as jf
44from ase .io import read
55from quacc import get_settings
66from quacc .recipes .mace .ts import ts_job , irc_job , geodesic_job
7+ from quacc import strip_decorator
78
89
910# Load configuration from TOML file
@@ -31,9 +32,10 @@ def main():
3132 logger .info ("Successfully read reactant and product structures." )
3233
3334 # Create NEB job
34- job1 = geodesic_job (reactant , product , calc_kwargs = calc_kwargs )
35+ job1 = strip_decorator (geodesic_job (reactant , product , calc_kwargs = calc_kwargs ))
36+ print (job1 )
3537 logger .info ("Created Geodesic job." )
36-
38+ '''
3739 # Create TS job with custom Hessian
3840 job2 = ts_job(job1.output['highest_e_atoms'], use_custom_hessian=True, **calc_kwargs)
3941 logger.info("Created TS job with custom Hessian.")
@@ -55,6 +57,7 @@ def main():
5557 responses = jf.managers.local.run_locally(flow)
5658 logger.info("Workflow executed successfully.")
5759 logger.info(f"Responses: {responses}")
60+ '''
5861
5962
6063if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments