Skip to content

Commit 7361ba1

Browse files
zhubonancoderabbitai[bot]kavanase
authored
Fix a bug when supercell k-points lie on periodic boundary (#62)
* Fix unfold kpoint wrap problem Fix a bug in find_K_from_k function where wrapping of the k point is not taken into account when computing the G0 (lattice vector in reciprocal space), which causes problem when the supercell k-point lies on the edge of the reciprocal space. * Fix --no-expand and update the documentation * Updated docs * Add .lfsconfig file * Fix * Update and add file to lfs * Fix doc strings * Update doc string * Update docs * Update docs/examples/example_si222.md Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Minor docs cleanup * Fix changed figure and update example command * Typo fix * Minor updates * Update examples * Remove old KPOINTS file * Add missing png file * Update no_expand.png --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Sean Kavanagh <s.kavanagh19@imperial.ac.uk>
1 parent 45995b9 commit 7361ba1

25 files changed

+519
-341
lines changed

.lfsconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[lfs]
2+
fetchexclude="examples/Si222/Si_super_deformed/WAVECAR,examples/Si222/Si_super_deformed/vasprun.xml"

docs/examples/example_mgo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ when plotting the unfolded band structure:
3535

3636
```bash
3737
easyunfold unfold plot-projections --procar MgO_super/PROCAR.gz --atoms="Mg,O" --combined --emin=-6 \
38-
--emax=20 --intensity 6.5
38+
--emax=20 --intensity 6.5 --poscar MgO_super/POSCAR
3939
```
4040

4141
Note that the path of the `PROCAR(.gz)` is passed along with the desired atom projections (`Mg` and `O` here).

docs/examples/example_si222.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,28 @@ folder that can be used to perform these two steps above.
9999

100100
Unfold the supercell wave function (`WAVECAR`) and calculate the spectral weights:
101101

102-
```
102+
```bash
103103
cd ../
104104
easyunfold unfold calculate Si_super_deformed/WAVECAR
105105
```
106106

107107
:::{note}
108108
If you don't want to run the VASP calculation by yourself, the calculated `WAVECAR` and `vasprun.xml`
109-
for this example can be downloaded with:
109+
for this example can be downloaded using `git-lfs`:
110110

111+
If `git-lfs` was not installed when you cloned the repository, install it via:
112+
113+
```bash
114+
sudo apt install git-lfs
115+
git lfs install
111116
```
112-
wget -O Si_super_deformed/WAVECAR https://www.dropbox.com/s/3cmn2epw7d290jd/WAVECAR?dl=1
117+
118+
(or `brew install git-lfs` on macOS; see [here](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage) for full instructions).
119+
120+
Then download the files:
121+
122+
```bash
123+
git lfs pull -I examples/Si222/Si_super_deformed/WAVECAR,examples/Si222/Si_super_deformed/vasprun.xml --exclude=""
113124
```
114125
:::
115126

@@ -131,8 +142,7 @@ Spectral function of the unfolded bands.
131142

132143
:::{tip}
133144
See the [NaBiS<sub>2</sub> example](https://smtg-Bham.github.io/easyunfold/examples/example_nabis2.html) for tips on
134-
customising and prettifying the unfolded band structure plot. Here we have also actually used the `--intensity 3.5`
135-
option to increase the spectral function intensity.
145+
customising and prettifying the unfolded band structure plot. For example, you can use the `--intensity 3.5` option to increase the spectral function intensity.
136146
:::
137147

138148
Note the appearance of extra branches compared to the band structure of the primitive cell (below), due
@@ -161,12 +171,12 @@ easyunfold generate Si/POSCAR Si_super_deformed/POSCAR Si/KPOINTS_band --no-expa
161171
Swap the `KPOINTS` to the new file, non-expanded `KPOINTS` file:
162172

163173
```bash
164-
cp KPOINTS_no-expand Si_super_deformed/KPOINTS
165-
cd Si_super_deformed
174+
cp KPOINTS_no-expand Si_super_deformed_no_expand/KPOINTS
175+
cd Si_super_deformed_no_expand
166176
mpirun -np 4 vasp_std
167177
cd ../
168-
easyunfold unfold --data-file no-expand.json calculate Si_super_deformed/WAVECAR
169-
easyunfold unfold --data-file no-expand.json plot --out-file unfold_no-expand.png --intensity 3.5
178+
easyunfold unfold --data-file no-expand.json calculate Si_super_deformed_no_expand/WAVECAR
179+
easyunfold unfold --data-file no-expand.json plot --out-file unfold_no-expand.png
170180
```
171181

172182
output:

easyunfold/unfold.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@ def find_K_from_k(k: np.ndarray, M: np.ndarray):
5353
"""
5454

5555
M = np.array(M)
56-
Kc = np.dot(k, M.T)
57-
G = np.array(np.round(Kc), dtype=int)
58-
# Wrap to -0.5, 0.5
59-
KG = wrap_kpoints(Kc)
60-
56+
Kc = np.dot(k, M.T) # Primitive cell kpoint in supercell fractional coordinates
57+
KG = wrap_kpoints(Kc) # Wrap to the 1st BZ
58+
G = np.array(Kc - KG, dtype=int) # Compute the G vector in supercell fractional coordinates
6159
return KG, G
6260

6361

@@ -260,7 +258,7 @@ def expand_pc_kpoints(self) -> None:
260258
kset, weights = expand_K_by_symmetry(kpt, self.pc_opts, self.sc_opts, time_reversal=self.time_reversal)
261259
else:
262260
# Just take the original point and set the weight to be unity
263-
kset = [kpt]
261+
kset = [wrap_kpoints(kpt)]
264262
weights = np.array([1.0])
265263
expended_k.append(kset)
266264
expended_weights.append(weights)

examples/MgO/KPOINTS_easyunfold

Lines changed: 126 additions & 146 deletions
Original file line numberDiff line numberDiff line change
@@ -1,169 +1,149 @@
11
supercell kpoints
2-
166
2+
146
33
Rec
4+
-0.50000000 -0.50000000 -0.50000000 1.0
5+
-0.46666667 0.00000000 -0.46666667 1.0
6+
-0.46153846 0.26923077 -0.46153846 1.0
7+
-0.45454545 -0.50000000 0.45454545 1.0
8+
-0.45454545 -0.45454545 -0.45454545 1.0
9+
-0.45454545 -0.36363636 0.27272727 1.0
10+
-0.45454545 -0.11363636 -0.22727273 1.0
11+
-0.43750000 -0.50000000 -0.43750000 1.0
12+
-0.40909091 -0.50000000 0.40909091 1.0
13+
-0.40909091 -0.40909091 -0.40909091 1.0
14+
-0.40000000 0.00000000 -0.40000000 1.0
15+
-0.38461538 0.30769231 -0.38461538 1.0
16+
-0.37500000 -0.50000000 -0.37500000 1.0
17+
-0.36363636 -0.50000000 0.36363636 1.0
18+
-0.36363636 -0.36363636 -0.36363636 1.0
19+
-0.36363636 -0.34090909 0.31818182 1.0
20+
-0.36363636 -0.09090909 -0.18181818 1.0
21+
-0.33333333 0.00000000 -0.33333333 1.0
22+
-0.31818182 -0.50000000 0.31818182 1.0
23+
-0.31818182 -0.31818182 -0.31818182 1.0
24+
-0.31250000 -0.50000000 -0.31250000 1.0
25+
-0.30769231 0.34615385 -0.30769231 1.0
26+
-0.27272727 -0.50000000 0.27272727 1.0
27+
-0.27272727 -0.31818182 0.36363636 1.0
28+
-0.27272727 -0.27272727 -0.27272727 1.0
29+
-0.27272727 -0.06818182 -0.13636364 1.0
30+
-0.26666667 0.00000000 -0.26666667 1.0
31+
-0.25000000 -0.50000000 -0.25000000 1.0
32+
-0.23076923 0.38461538 -0.23076923 1.0
33+
-0.22727273 -0.50000000 0.22727273 1.0
34+
-0.22727273 -0.22727273 -0.22727273 1.0
35+
-0.20000000 0.00000000 -0.20000000 1.0
36+
-0.18750000 -0.50000000 -0.18750000 1.0
37+
-0.18181818 -0.50000000 0.18181818 1.0
38+
-0.18181818 -0.29545455 0.40909091 1.0
39+
-0.18181818 -0.18181818 -0.18181818 1.0
40+
-0.18181818 -0.04545455 -0.09090909 1.0
41+
-0.15384615 0.42307692 -0.15384615 1.0
42+
-0.13636364 -0.50000000 0.13636364 1.0
43+
-0.13636364 -0.13636364 -0.13636364 1.0
44+
-0.13333333 0.00000000 -0.13333333 1.0
45+
-0.12500000 -0.50000000 -0.12500000 1.0
46+
-0.09090909 -0.50000000 0.09090909 1.0
47+
-0.09090909 -0.27272727 0.45454545 1.0
48+
-0.09090909 -0.09090909 -0.09090909 1.0
49+
-0.09090909 -0.02272727 -0.04545455 1.0
50+
-0.07692308 0.46153846 -0.07692308 1.0
51+
-0.06666667 0.00000000 -0.06666667 1.0
52+
-0.06250000 -0.50000000 -0.06250000 1.0
53+
-0.04545455 -0.50000000 0.04545455 1.0
54+
-0.04545455 -0.04545455 -0.04545455 1.0
55+
0.00000000 -0.50000000 0.00000000 1.0
56+
0.00000000 0.00000000 -0.46153846 1.0
57+
0.00000000 0.00000000 -0.38461538 1.0
58+
0.00000000 0.00000000 -0.30769231 1.0
59+
0.00000000 0.00000000 -0.23076923 1.0
60+
-0.00000000 0.00000000 -0.15384615 1.0
61+
0.00000000 0.00000000 -0.07692308 1.0
462
0.00000000 0.00000000 0.00000000 1.0
5-
0.07692308 0.03846154 0.07692308 1.0
63+
0.00000000 0.02272727 -0.04545455 1.0
64+
0.00000000 0.03125000 0.06250000 1.0
65+
0.00000000 0.03333333 0.06666667 1.0
666
0.00000000 0.03846154 0.00000000 1.0
7-
0.00000000 0.00000000 -0.07692308 1.0
8-
0.15384615 0.07692308 0.15384615 1.0
67+
0.00000000 0.04545455 -0.09090909 1.0
68+
0.00000000 0.06250000 0.12500000 1.0
69+
0.00000000 0.06666667 0.13333333 1.0
70+
0.00000000 0.06818182 -0.13636364 1.0
971
0.00000000 0.07692308 0.00000000 1.0
10-
0.00000000 0.00000000 -0.15384615 1.0
11-
0.23076923 0.11538462 0.23076923 1.0
72+
0.00000000 0.09090909 -0.18181818 1.0
73+
0.00000000 0.09375000 0.18750000 1.0
74+
0.00000000 0.10000000 0.20000000 1.0
75+
0.00000000 0.11363636 -0.22727273 1.0
1276
0.00000000 0.11538462 0.00000000 1.0
13-
0.00000000 0.00000000 -0.23076923 1.0
14-
0.30769231 0.15384615 0.30769231 1.0
77+
0.00000000 0.12500000 0.25000000 1.0
78+
-0.00000000 0.13333333 0.26666667 1.0
79+
0.00000000 0.13636364 -0.27272727 1.0
1580
0.00000000 0.15384615 0.00000000 1.0
16-
-0.00000000 0.00000000 -0.30769231 1.0
17-
0.38461538 0.19230769 0.38461538 1.0
81+
0.00000000 0.15625000 0.31250000 1.0
82+
0.00000000 0.15909091 -0.31818182 1.0
83+
0.00000000 0.16666667 0.33333333 1.0
84+
0.00000000 0.18181818 -0.36363636 1.0
85+
0.00000000 0.18750000 0.37500000 1.0
1886
0.00000000 0.19230769 0.00000000 1.0
19-
0.00000000 0.00000000 -0.38461538 1.0
20-
0.46153846 0.23076923 0.46153846 1.0
21-
-0.00000000 0.23076923 0.00000000 1.0
22-
-0.00000000 0.00000000 -0.46153846 1.0
23-
-0.46153846 0.26923077 -0.46153846 1.0
87+
-0.00000000 0.20000000 0.40000000 1.0
88+
0.00000000 0.20454545 -0.40909091 1.0
89+
0.00000000 0.21875000 0.43750000 1.0
90+
0.00000000 0.22727273 -0.45454545 1.0
91+
0.00000000 0.23076923 0.00000000 1.0
92+
0.00000000 0.23333333 0.46666667 1.0
93+
0.00000000 0.25000000 -0.50000000 1.0
94+
-0.00000000 0.26666667 -0.46666667 1.0
2495
0.00000000 0.26923077 0.00000000 1.0
25-
-0.38461538 0.30769231 -0.38461538 1.0
96+
0.00000000 0.27272727 0.45454545 1.0
97+
0.00000000 0.29545455 0.40909091 1.0
98+
0.00000000 0.30000000 -0.40000000 1.0
2699
0.00000000 0.30769231 0.00000000 1.0
27-
-0.30769231 0.34615385 -0.30769231 1.0
100+
0.00000000 0.31818182 0.36363636 1.0
101+
0.00000000 0.33333333 -0.33333333 1.0
102+
0.00000000 0.34090909 0.31818182 1.0
28103
-0.00000000 0.34615385 0.00000000 1.0
29-
-0.23076923 0.38461538 -0.23076923 1.0
104+
0.00000000 0.36363636 0.27272727 1.0
105+
0.00000000 0.36666667 -0.26666667 1.0
30106
0.00000000 0.38461538 0.00000000 1.0
31-
-0.15384615 0.42307692 -0.15384615 1.0
32-
-0.00000000 0.42307692 -0.00000000 1.0
33-
-0.07692308 0.46153846 -0.07692308 1.0
34-
-0.00000000 0.46153846 0.00000000 1.0
35-
0.00000000 -0.50000000 0.00000000 1.0
107+
0.00000000 0.38636364 0.22727273 1.0
108+
-0.00000000 0.40000000 -0.20000000 1.0
109+
0.00000000 0.40909091 0.18181818 1.0
110+
0.00000000 0.42307692 0.00000000 1.0
111+
0.00000000 0.43181818 0.13636364 1.0
112+
0.00000000 0.43333333 -0.13333333 1.0
113+
0.00000000 0.45454545 0.09090909 1.0
114+
0.00000000 0.46153846 0.00000000 1.0
115+
-0.00000000 0.46666667 -0.06666667 1.0
36116
0.00000000 0.47727273 0.04545455 1.0
37-
-0.04545455 -0.50000000 0.04545455 1.0
38-
-0.09090909 -0.02272727 -0.04545455 1.0
39-
-0.04545455 -0.04545455 -0.04545455 1.0
40-
0.00000000 0.02272727 -0.04545455 1.0
41117
0.04545455 -0.50000000 -0.04545455 1.0
42-
0.09090909 -0.47727273 0.04545455 1.0
43-
-0.04545455 -0.47727273 0.00000000 1.0
44-
0.04545455 -0.02272727 0.00000000 1.0
45-
0.00000000 0.45454545 0.09090909 1.0
46-
-0.09090909 -0.50000000 0.09090909 1.0
47-
-0.18181818 -0.04545455 -0.09090909 1.0
48-
-0.09090909 -0.09090909 -0.09090909 1.0
49-
0.00000000 0.04545455 -0.09090909 1.0
118+
0.06250000 -0.46875000 0.00000000 1.0
119+
0.07692308 0.03846154 0.07692308 1.0
50120
0.09090909 -0.50000000 -0.09090909 1.0
51-
0.18181818 -0.45454545 0.09090909 1.0
52-
-0.09090909 -0.45454545 0.00000000 1.0
53-
0.09090909 -0.04545455 0.00000000 1.0
54-
0.00000000 0.43181818 0.13636364 1.0
55-
-0.13636364 -0.50000000 0.13636364 1.0
56-
-0.27272727 -0.06818182 -0.13636364 1.0
57-
-0.13636364 -0.13636364 -0.13636364 1.0
58-
0.00000000 0.06818182 -0.13636364 1.0
121+
0.09090909 -0.47727273 0.04545455 1.0
122+
0.09090909 -0.22727273 -0.45454545 1.0
123+
0.12500000 -0.43750000 0.00000000 1.0
59124
0.13636364 -0.50000000 -0.13636364 1.0
60-
0.27272727 -0.43181818 0.13636364 1.0
61-
-0.13636364 -0.43181818 0.00000000 1.0
62-
0.13636364 -0.06818182 0.00000000 1.0
63-
0.00000000 0.40909091 0.18181818 1.0
64-
-0.18181818 -0.50000000 0.18181818 1.0
65-
-0.36363636 -0.09090909 -0.18181818 1.0
66-
-0.18181818 -0.18181818 -0.18181818 1.0
67-
0.00000000 0.09090909 -0.18181818 1.0
125+
0.15384615 0.07692308 0.15384615 1.0
68126
0.18181818 -0.50000000 -0.18181818 1.0
69-
0.36363636 -0.40909091 0.18181818 1.0
70-
-0.18181818 -0.40909091 0.00000000 1.0
71-
0.18181818 -0.09090909 0.00000000 1.0
72-
0.00000000 0.38636364 0.22727273 1.0
73-
-0.22727273 -0.50000000 0.22727273 1.0
74-
-0.45454545 -0.11363636 -0.22727273 1.0
75-
-0.22727273 -0.22727273 -0.22727273 1.0
76-
0.00000000 0.11363636 -0.22727273 1.0
127+
0.18181818 -0.45454545 0.09090909 1.0
128+
0.18181818 -0.20454545 -0.40909091 1.0
129+
0.18750000 -0.40625000 0.00000000 1.0
77130
0.22727273 -0.50000000 -0.22727273 1.0
78-
0.45454545 -0.38636364 0.22727273 1.0
79-
-0.22727273 -0.38636364 0.00000000 1.0
80-
0.22727273 -0.11363636 0.00000000 1.0
81-
0.00000000 0.36363636 0.27272727 1.0
82-
-0.27272727 -0.50000000 0.27272727 1.0
83-
0.45454545 -0.13636364 -0.27272727 1.0
84-
-0.27272727 -0.27272727 -0.27272727 1.0
85-
0.00000000 0.13636364 -0.27272727 1.0
131+
0.23076923 0.11538462 0.23076923 1.0
132+
0.25000000 -0.37500000 0.00000000 1.0
86133
0.27272727 -0.50000000 -0.27272727 1.0
87-
-0.45454545 -0.36363636 0.27272727 1.0
88-
-0.27272727 -0.36363636 0.00000000 1.0
89-
0.27272727 -0.13636364 0.00000000 1.0
90-
0.00000000 0.34090909 0.31818182 1.0
91-
-0.31818182 -0.50000000 0.31818182 1.0
92-
0.36363636 -0.15909091 -0.31818182 1.0
93-
-0.31818182 -0.31818182 -0.31818182 1.0
94-
0.00000000 0.15909091 -0.31818182 1.0
95-
0.31818182 -0.50000000 -0.31818182 1.0
96-
-0.36363636 -0.34090909 0.31818182 1.0
97-
-0.31818182 -0.34090909 0.00000000 1.0
98-
0.31818182 -0.15909091 0.00000000 1.0
99-
0.00000000 0.31818182 0.36363636 1.0
100-
-0.36363636 -0.50000000 0.36363636 1.0
134+
0.27272727 -0.43181818 0.13636364 1.0
101135
0.27272727 -0.18181818 -0.36363636 1.0
102-
-0.36363636 -0.36363636 -0.36363636 1.0
103-
0.00000000 0.18181818 -0.36363636 1.0
136+
0.30769231 0.15384615 0.30769231 1.0
137+
0.31250000 -0.34375000 0.00000000 1.0
138+
0.31818182 -0.50000000 -0.31818182 1.0
104139
0.36363636 -0.50000000 -0.36363636 1.0
105-
-0.27272727 -0.31818182 0.36363636 1.0
106-
-0.36363636 -0.31818182 0.00000000 1.0
107-
0.36363636 -0.18181818 0.00000000 1.0
108-
0.00000000 0.29545455 0.40909091 1.0
109-
-0.40909091 -0.50000000 0.40909091 1.0
110-
0.18181818 -0.20454545 -0.40909091 1.0
111-
-0.40909091 -0.40909091 -0.40909091 1.0
112-
0.00000000 0.20454545 -0.40909091 1.0
140+
0.36363636 -0.40909091 0.18181818 1.0
141+
0.36363636 -0.15909091 -0.31818182 1.0
142+
0.37500000 -0.31250000 0.00000000 1.0
143+
0.38461538 0.19230769 0.38461538 1.0
113144
0.40909091 -0.50000000 -0.40909091 1.0
114-
-0.18181818 -0.29545455 0.40909091 1.0
115-
-0.40909091 -0.29545455 0.00000000 1.0
116-
0.40909091 -0.20454545 0.00000000 1.0
117-
0.00000000 0.27272727 0.45454545 1.0
118-
-0.45454545 -0.50000000 0.45454545 1.0
119-
0.09090909 -0.22727273 -0.45454545 1.0
120-
-0.45454545 -0.45454545 -0.45454545 1.0
121-
0.00000000 0.22727273 -0.45454545 1.0
122-
0.45454545 -0.50000000 -0.45454545 1.0
123-
-0.09090909 -0.27272727 0.45454545 1.0
124-
-0.45454545 -0.27272727 0.00000000 1.0
125-
0.45454545 -0.22727273 0.00000000 1.0
126-
0.00000000 0.25000000 -0.50000000 1.0
127-
-0.50000000 -0.50000000 -0.50000000 1.0
128-
0.00000000 0.21875000 0.43750000 1.0
129-
-0.43750000 -0.50000000 -0.43750000 1.0
130145
0.43750000 -0.28125000 0.00000000 1.0
131-
0.00000000 0.18750000 0.37500000 1.0
132-
-0.37500000 -0.50000000 -0.37500000 1.0
133-
0.37500000 -0.31250000 0.00000000 1.0
134-
0.00000000 0.15625000 0.31250000 1.0
135-
-0.31250000 -0.50000000 -0.31250000 1.0
136-
0.31250000 -0.34375000 0.00000000 1.0
137-
0.00000000 0.12500000 0.25000000 1.0
138-
-0.25000000 -0.50000000 -0.25000000 1.0
139-
0.25000000 -0.37500000 0.00000000 1.0
140-
0.00000000 0.09375000 0.18750000 1.0
141-
-0.18750000 -0.50000000 -0.18750000 1.0
142-
0.18750000 -0.40625000 0.00000000 1.0
143-
0.00000000 0.06250000 0.12500000 1.0
144-
-0.12500000 -0.50000000 -0.12500000 1.0
145-
0.12500000 -0.43750000 0.00000000 1.0
146-
0.00000000 0.03125000 0.06250000 1.0
147-
-0.06250000 -0.50000000 -0.06250000 1.0
148-
0.06250000 -0.46875000 0.00000000 1.0
149-
-0.06666667 0.00000000 -0.06666667 1.0
150-
-0.00000000 0.46666667 -0.06666667 1.0
151-
-0.13333333 0.00000000 -0.13333333 1.0
152-
-0.00000000 0.43333333 -0.13333333 1.0
153-
-0.20000000 0.00000000 -0.20000000 1.0
154-
-0.00000000 0.40000000 -0.20000000 1.0
155-
-0.26666667 0.00000000 -0.26666667 1.0
156-
-0.00000000 0.36666667 -0.26666667 1.0
157-
-0.33333333 0.00000000 -0.33333333 1.0
158-
0.00000000 0.33333333 -0.33333333 1.0
159-
-0.40000000 0.00000000 -0.40000000 1.0
160-
0.00000000 0.30000000 -0.40000000 1.0
161-
-0.46666667 0.00000000 -0.46666667 1.0
162-
-0.00000000 0.26666667 -0.46666667 1.0
163-
-0.00000000 0.23333333 0.46666667 1.0
164-
-0.00000000 0.20000000 0.40000000 1.0
165-
0.00000000 0.16666667 0.33333333 1.0
166-
-0.00000000 0.13333333 0.26666667 1.0
167-
0.00000000 0.10000000 0.20000000 1.0
168-
0.00000000 0.06666667 0.13333333 1.0
169-
0.00000000 0.03333333 0.06666667 1.0
146+
0.45454545 -0.50000000 -0.45454545 1.0
147+
0.45454545 -0.38636364 0.22727273 1.0
148+
0.45454545 -0.13636364 -0.27272727 1.0
149+
0.46153846 0.23076923 0.46153846 1.0

examples/MgO/easyunfold.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

examples/MgO/unfold.png

58.3 KB
Loading

examples/MgO/unfold_project.png

-1.91 KB
Loading

0 commit comments

Comments
 (0)