Replies: 2 comments 2 replies
-
To be more specific, setting the orca configuration as shown above, my path_opt-1_orca.inp file has the following for functional and basis set; ! LooseOpt PBE0 RIJCOSX D3BJ def2-SVP def2/J How to I change that to the PBE functional instead of PBE0? Jerry |
Beta Was this translation helpful? Give feedback.
0 replies
-
Sorry for the lack of docs – >>> ade.Config.ORCA.keywords.set_functional("PBE")
>>> # Check that they're set
>>> ade.Config.ORCA.keywords.sp
SPKeywords('SP' Functional(PBE) ResolutionOfIdentity(rijcosx) DispersionCorrection(d3bj) BasisSet(def2-TZVP) 'def2/J' EffectiveCorePotential(def2-ECP))
>>> ade.Config.ORCA.keywords.low_opt
OptKeywords('LooseOpt' Functional(PBE) ResolutionOfIdentity(rijcosx) DispersionCorrection(d3bj) BasisSet(def2-SVP) 'def2/J' MaxOptCycles(N = 10) EffectiveCorePotential(def2-ECP)) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I don't see anything written for "Configuration" in your documentation. I would like to globally set the functional used for optimization, sp, etc, much like that for basis sets. For basis sets, ade.Config.ORCA.keywords.set_opt_basis_set will set the basis set for all types of calculations (from what I've read in your documentation). Is there something similar for functionals?
I'm currently using:
ade.Config.ORCA.keywords.opt = ['OPT', 'PBE', 'def2-SVP']
ade.Config.ORCA.keywords.sp = ['SP', 'PBE', 'def2-SVP']
Didn't know if there was a global way to set the functional to PBE.
Also, will you be providing documentation of "Configure"?
Jerry
Beta Was this translation helpful? Give feedback.
All reactions