Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parser-gpaw
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-gpaw
Commits
42ac20c6
Commit
42ac20c6
authored
8 years ago
by
Mikkel Strange
Browse files
Options
Downloads
Patches
Plain Diff
xc name seperated out in x and c parts
parent
d9c3b9f4
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
parser/parser-gpaw/libxc_names.py
+37
-2
37 additions, 2 deletions
parser/parser-gpaw/libxc_names.py
parser/parser-gpaw/parser.py
+5
-3
5 additions, 3 deletions
parser/parser-gpaw/parser.py
with
42 additions
and
5 deletions
parser/parser-gpaw/libxc_names.py
+
37
−
2
View file @
42ac20c6
from
__future__
import
print_function
import
re
#p = re.compile(r"(?P<x_name>.*_X.*)\+(?P<c_name>.*_C.*)")
p
=
re
.
compile
(
'
((?P<x_name>(GGA|LDA|MGGA|HF|HYB_MGGA)_X.*)|(?P<c_name>(GGA|LDA|MGGA)_C.*))
'
)
short_names
=
{
'
LDA
'
:
'
LDA_X+LDA_C_PW
'
,
...
...
@@ -24,7 +28,38 @@ def get_libxc_name(name):
libxc_name
=
name
return
libxc_name
def
get_libxc_xc_names
(
name
):
name
=
get_libxc_name
(
name
)
xc
=
{
'
xc_name
'
:
None
,
'
x_name
'
:
None
,
'
c_name
'
:
None
}
if
'
_XC_
'
in
name
:
xc
[
'
xc_name
'
]
=
name
return
xc
if
'
+
'
in
name
:
s
=
name
.
split
(
'
+
'
)
xc
[
'
x_name
'
]
=
s
[
0
]
xc
[
'
c_name
'
]
=
s
[
1
]
return
xc
m
=
re
.
search
(
p
,
name
)
if
m
is
not
None
:
# it is either a correlation or exchange functional
xc
.
update
(
m
.
groupdict
())
return
xc
xc
[
'
xc_name
'
]
=
name
# for something like BEEF-vdW
return
xc
if
__name__
==
'
__main__
'
:
print
(
get_libxc_name
(
'
LDA
'
))
print
(
get_libxc_name
(
'
GGA_X_PBE
'
))
# print(get_libxc_name('LDA'))
# print(get_libxc_name('GGA_X_PBE'))
names
=
[
'
GGA_X_B88+GGA_C_LYP
'
,
'
HF_X
'
,
'
HYB_GGA_XC_B1LYP
'
,
'
HYB_GGA_XC_HSE03
'
,
'
BEEF-vdW
'
,
'
LDA_K_TF
'
]
for
name
in
names
:
print
(
get_libxc_xc_names
(
name
))
This diff is collapsed.
Click to expand it.
parser/parser-gpaw/parser.py
+
5
−
3
View file @
42ac20c6
...
...
@@ -8,7 +8,7 @@ from nomadcore.unit_conversion.unit_conversion import convert_unit as cu
from
nomadcore.local_meta_info
import
loadJsonFile
,
InfoKindEl
from
nomadcore.parser_backend
import
JsonParseEventsWriterBackend
from
tar
import
Reader
from
libxc_names
import
get_libxc_name
from
libxc_names
import
get_libxc_
xc_
name
s
@contextmanager
...
...
@@ -87,8 +87,10 @@ def parse(filename):
p
.
addRealValue
(
'
smearing_width
'
,
c
(
r
.
FermiWidth
,
'
hartree
'
))
with
o
(
p
,
'
section_XC_functionals
'
):
p
.
addValue
(
'
XC_functional_name
'
,
get_libxc_name
(
r
.
XCFunctional
))
xc_names
=
get_libxc_xc_names
(
r
.
XCFunctional
)
for
name
in
xc_names
.
values
():
if
name
is
not
None
:
p
.
addValue
(
'
XC_functional_name
'
,
name
)
with
o
(
p
,
'
section_single_configuration_calculation
'
):
p
.
addValue
(
'
single_configuration_calculation_to_system_ref
'
,
system_gid
)
...
...
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