-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into new_bandswidget
- Loading branch information
Showing
18 changed files
with
1,100 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../miscellaneous/logos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from importlib import resources | ||
|
||
import yaml | ||
from aiidalab_widgets_base import ComputationalResourcesWidget | ||
|
||
from aiidalab_qe.common.panel import OutlinePanel | ||
from aiidalab_qe.plugins import xas as xas_folder | ||
|
||
from .result import Result | ||
from .setting import Setting | ||
from .workchain import workchain_and_builder | ||
|
||
PSEUDO_TOC = yaml.safe_load(resources.read_text(xas_folder, "pseudo_toc.yaml")) | ||
|
||
|
||
class XasOutline(OutlinePanel): | ||
title = "X-ray absorption spectroscopy (XAS)" | ||
help = """""" | ||
|
||
|
||
xs_code = ComputationalResourcesWidget( | ||
description="xspectra.x", default_calc_job_plugin="quantumespresso.xspectra" | ||
) | ||
|
||
xas = { | ||
"outline": XasOutline, | ||
"code": {"xspectra": xs_code}, | ||
"setting": Setting, | ||
"result": Result, | ||
"workchain": workchain_and_builder, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
xas_xch_elements: [C, Li] | ||
pseudos: | ||
pbe: | ||
gipaw_pseudos: | ||
C: C.pbe-n-kjgipaw_psl.1.0.0.UPF | ||
Cu: Cu.pbe-n-van_gipaw.UPF | ||
F: F.pbe-gipaw_kj_no_hole.UPF | ||
Li: Li.pbe-s-rrkjus-gipaw.UPF | ||
O: O.pbe-n-kjpaw_gipaw.UPF | ||
Si: Si.pbe-van_gipaw.UPF | ||
core_wavefunction_data: | ||
C: C.pbe-n-kjgipaw_psl.1.0.0.dat | ||
Cu: Cu.pbe-n-van_gipaw.dat | ||
F: F.pbe-gipaw_kj_no_hole.dat | ||
Li: Li.pbe-s-rrkjus-gipaw.dat | ||
O: O.pbe-n-kjpaw_gipaw.dat | ||
Si: Si.pbe-van_gipaw.dat | ||
core_hole_pseudos: | ||
1s: | ||
C: C.star1s.pbe-n-kjgipaw_psl.1.0.0.UPF | ||
Cu: Cu.star1s-pbe-n-van_gipaw.UPF | ||
F: F.star1s-pbe-gipaw_kj.UPF | ||
Li: Li.star1s-pbe-s-rrkjus-gipaw-test_2.UPF | ||
O: O.star1s.pbe-n-kjpaw_gipaw.UPF | ||
Si: Si.star1s-pbe-van_gipaw.UPF |
Oops, something went wrong.