Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tutorial-query-nomad-archive
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nomad-lab
ai-toolkit
tutorial-query-nomad-archive
Commits
4d2b7f15
Commit
4d2b7f15
authored
4 years ago
by
Aakash Ashok Naik
Browse files
Options
Downloads
Patches
Plain Diff
Update atomic_properties_dft.py
parent
051c64b1
Branches
Branches containing commit
No related tags found
1 merge request
!5
Periodic table rescaled
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
query_nomad_archive/atomic_properties_dft.py
+12
-12
12 additions, 12 deletions
query_nomad_archive/atomic_properties_dft.py
with
12 additions
and
12 deletions
query_nomad_archive/atomic_properties_dft.py
+
12
−
12
View file @
4d2b7f15
...
...
@@ -120,51 +120,51 @@ def t(df1,objs):
def
method
(
Spin
=
''
,
method
=
''
):
if
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
hse06
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_hse06_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_hse06_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
pbe
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_pbe_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_pbe_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
pbe0
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_pbe0_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_pbe0_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
pbesol
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_pbesol_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_pbesol_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
pw-lda
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_pw-lda_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_pw-lda_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
false
'
and
method
.
lower
()
==
'
revpbe
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/no_spin_revpbe_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/no_spin_revpbe_really_tight.csv
'
)
objs
=
[]
f
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
hse06
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_hse06_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_hse06_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
pbe
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_pbe_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_pbe_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
pbe0
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_pbe0_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_pbe0_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
pbesol
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_pbesol_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_pbesol_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
pw-lda
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_pw-lda_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_pw-lda_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
elif
Spin
.
lower
()
==
'
true
'
and
method
.
lower
()
==
'
revpbe
'
:
df1
=
pd
.
read_csv
(
'
./
query_nomad_archive
/csv/spin_revpbe_really_tight.csv
'
)
df1
=
pd
.
read_csv
(
'
./
data
/csv/spin_revpbe_really_tight.csv
'
)
objs
=
[]
t
(
df1
,
objs
)
else
:
...
...
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