Skip to content

Commit 536cb19

Browse files
committed
trying to remove jobflow.
1 parent 2660772 commit 536cb19

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/ts-workflow-examples/geodesic_ts_with_hessian/using_mace.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import toml
22
import logging
3-
import jobflow as jf
3+
#import jobflow as jf
44
from ase.io import read
55
from quacc import get_settings
66
from 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

6063
if __name__ == "__main__":

0 commit comments

Comments
 (0)