-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a test case for the explicit kpath input flag
* Additional tests for band.dat and labelinfo.dat files * Test and parser for band.kpt file
- Loading branch information
Showing
23 changed files
with
15,713 additions
and
0 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
6 changes: 6 additions & 0 deletions
6
test-suite/tests/testw90_example03_explicit_kpath_band_kpt/.gitignore
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,6 @@ | ||
silicon_band.dat | ||
silicon_band.kpt | ||
silicon_band.labelinfo.dat | ||
silicon_band.gnu | ||
silicon.wout | ||
*.mmn |
14 changes: 14 additions & 0 deletions
14
test-suite/tests/testw90_example03_explicit_kpath_band_kpt/Makefile
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,14 @@ | ||
all: $(patsubst %.chk.fmt.bz2, %.chk, $(wildcard *.chk.fmt.bz2)) $(patsubst %.mmn.bz2, %.mmn, $(wildcard *.mmn.bz2)) | ||
|
||
%.chk: %.chk.fmt.bz2 | ||
$(eval SEEDNAME:=$(patsubst %.chk.fmt.bz2, %, $<)) | ||
echo $(SEEDNAME) | ||
cat $< | bunzip2 - > $(SEEDNAME).chk.fmt && ../../../w90chk2chk.x -f2u $(SEEDNAME) && rm $(SEEDNAME).chk.fmt | ||
|
||
%.mmn: %.mmn.bz2 | ||
$(eval SEEDNAME:=$(patsubst %.mmn.bz2, %, $<)) | ||
echo $(SEEDNAME) | ||
cat $< | bunzip2 - > $(SEEDNAME).mmn | ||
|
||
|
||
.PHONY: all |
52 changes: 52 additions & 0 deletions
52
...ite/tests/testw90_example03_explicit_kpath_band_kpt/benchmark.out.default.inp=silicon.win
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,52 @@ | ||
51 | ||
0.500000 0.500000 0.500000 1.0 | ||
0.450000 0.450000 0.450000 1.0 | ||
0.400000 0.400000 0.400000 1.0 | ||
0.350000 0.350000 0.350000 1.0 | ||
0.300000 0.300000 0.300000 1.0 | ||
0.250000 0.250000 0.250000 1.0 | ||
0.200000 0.200000 0.200000 1.0 | ||
0.150000 0.150000 0.150000 1.0 | ||
0.100000 0.100000 0.100000 1.0 | ||
0.050000 0.050000 0.050000 1.0 | ||
0.000000 0.000000 0.000000 1.0 | ||
0.041667 0.000000 0.041667 1.0 | ||
0.083333 0.000000 0.083333 1.0 | ||
0.125000 0.000000 0.125000 1.0 | ||
0.166667 0.000000 0.166667 1.0 | ||
0.208333 0.000000 0.208333 1.0 | ||
0.250000 0.000000 0.250000 1.0 | ||
0.291667 0.000000 0.291667 1.0 | ||
0.333333 0.000000 0.333333 1.0 | ||
0.375000 0.000000 0.375000 1.0 | ||
0.416667 0.000000 0.416667 1.0 | ||
0.458333 0.000000 0.458333 1.0 | ||
0.500000 0.000000 0.500000 1.0 | ||
0.500000 -0.500000 0.000000 1.0 | ||
0.468750 -0.468750 0.000000 1.0 | ||
0.437500 -0.437500 0.000000 1.0 | ||
0.406250 -0.406250 0.000000 1.0 | ||
0.375000 -0.375000 0.000000 1.0 | ||
0.343750 -0.343750 0.000000 1.0 | ||
0.312500 -0.312500 0.000000 1.0 | ||
0.281250 -0.281250 0.000000 1.0 | ||
0.250000 -0.250000 0.000000 1.0 | ||
0.218750 -0.218750 0.000000 1.0 | ||
0.187500 -0.187500 0.000000 1.0 | ||
0.156250 -0.156250 0.000000 1.0 | ||
0.125000 -0.125000 0.000000 1.0 | ||
0.093750 -0.093750 0.000000 1.0 | ||
0.062500 -0.062500 0.000000 1.0 | ||
0.031250 -0.031250 0.000000 1.0 | ||
0.000000 0.000000 0.000000 1.0 | ||
0.500000 0.000000 0.500000 1.0 | ||
0.500000 0.050000 0.500000 1.0 | ||
0.500000 0.100000 0.500000 1.0 | ||
0.500000 0.150000 0.500000 1.0 | ||
0.500000 0.200000 0.500000 1.0 | ||
0.500000 0.250000 0.500000 1.0 | ||
0.500000 0.300000 0.500000 1.0 | ||
0.500000 0.350000 0.500000 1.0 | ||
0.500000 0.400000 0.500000 1.0 | ||
0.500000 0.450000 0.500000 1.0 | ||
0.500000 0.500000 0.500000 1.0 |
6,146 changes: 6,146 additions & 0 deletions
6,146
test-suite/tests/testw90_example03_explicit_kpath_band_kpt/silicon.amn
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.