Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parser-orca
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nomad-lab
parser-orca
Commits
d2eecac6
Commit
d2eecac6
authored
8 years ago
by
Alarcon Villaseca, Sebastian (sebas81)
Browse files
Options
Downloads
Patches
Plain Diff
Checking sections and variables for XC functionals
parent
21c06f8a
Branches
Branches containing commit
Tags
1.0.0
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
parser/parser-orca/orca_parser.py
+6
-6
6 additions, 6 deletions
parser/parser-orca/orca_parser.py
with
6 additions
and
6 deletions
parser/parser-orca/orca_parser.py
+
6
−
6
View file @
d2eecac6
...
@@ -118,9 +118,9 @@ class OrcaContext(object):
...
@@ -118,9 +118,9 @@ class OrcaContext(object):
# RPBE: Revised PBE (functional form of X)
# RPBE: Revised PBE (functional form of X)
"
RPBE
"
:
[
"
GGA_X_RPBE
"
,
"
GGA_C_PBE
"
],
"
RPBE
"
:
[
"
GGA_X_RPBE
"
,
"
GGA_C_PBE
"
],
# PWP: PW91 exchange + P86 correlation
# PWP: PW91 exchange + P86 correlation
"
PW91
"
:
[
"
GGA_X_PW91
"
,
"
GGA_C_P86
"
]
"
PW91
"
:
[
"
GGA_X_PW91
"
,
"
GGA_C_P86
"
]
,
# OLYP: the optimized exchange and LYP
# OLYP:
Handy’s ‘optimal’ exchange and Lee-Yang-Parr correlation (
the optimized exchange and LYP
)
"
OLYP
"
:
[
"
GGA_X_OPTX
"
,
"
GGA_C_LYP
"
],
"
OLYP
"
:
[
"
GGA_X_OPTX
"
,
"
GGA_C_LYP
"
,
"
GGA_XC_OPWLYP_D
"
],
# OPBE: the optimized exchange and PBE
# OPBE: the optimized exchange and PBE
"
OPBE
"
:
[
"
GGA_XC_OPBE_D
"
],
"
OPBE
"
:
[
"
GGA_XC_OPBE_D
"
],
#XLYP: the Xu/Goddard exchange and LYP
#XLYP: the Xu/Goddard exchange and LYP
...
@@ -338,15 +338,15 @@ def buildSinglePointSubMatchers():
...
@@ -338,15 +338,15 @@ def buildSinglePointSubMatchers():
# SCF Settings:
# SCF Settings:
SM
(
name
=
'
Orca SCF settings
'
,
SM
(
name
=
'
Orca SCF settings
'
,
startReStr
=
r
"
\s*ORCA SCF\s*
"
,
startReStr
=
r
"
\s*ORCA SCF\s*
"
,
sections
=
[
"
section_method
"
],
sections
=
[
"
section_method
"
,
"
x_orca_section_functionals
"
],
fixedStartValues
=
{
fixedStartValues
=
{
"
electronic_structure_method
"
:
"
DFT
"
"
electronic_structure_method
"
:
"
DFT
"
},
},
subMatchers
=
[
subMatchers
=
[
# A - For HF methods:
# A - For HF methods:
SM
(
r
"
\s+Ab initio Hamiltonian\s+Method\s+\.\.\.\s+(?P<x_orca_
hf_method
>[-+0-9a-zA-Z()]+)
"
),
SM
(
r
"
\s+Ab initio Hamiltonian\s+Method\s+\.\.\.\s+(?P<x_orca_
XC_functional_type
>[-+0-9a-zA-Z()]+)
"
),
# B - For DFT methods:
# B - For DFT methods:
SM
(
r
"
\s+Density Functional\s+Method\s+\.\.\.\s+(?P<XC_functional_
nam
e>[a-zA-Z()]+)
"
),
SM
(
r
"
\s+Density Functional\s+Method\s+\.\.\.\s+(?P<
x_orca_
XC_functional_
typ
e>[a-zA-Z()]+)
"
),
SM
(
r
"
\s+Exchange Functional\s+Exchange\s+\.\.\.\s+(?P<x_orca_exchange_functional>[a-zA-Z0-9]+)
"
),
SM
(
r
"
\s+Exchange Functional\s+Exchange\s+\.\.\.\s+(?P<x_orca_exchange_functional>[a-zA-Z0-9]+)
"
),
SM
(
r
"
\s+X-Alpha parameter\s+XAlpha\s+\.\.\.\s+(?P<x_orca_xalpha_param>[-+0-9.eEdD]+)
"
),
SM
(
r
"
\s+X-Alpha parameter\s+XAlpha\s+\.\.\.\s+(?P<x_orca_xalpha_param>[-+0-9.eEdD]+)
"
),
SM
(
r
"
\s+Becke
'
s b parameter\s+XBeta\s+\.\.\.\s+(?P<x_orca_beckes_beta_param>[-+0-9.eEdD]+)
"
),
SM
(
r
"
\s+Becke
'
s b parameter\s+XBeta\s+\.\.\.\s+(?P<x_orca_beckes_beta_param>[-+0-9.eEdD]+)
"
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment