TB2J 0.9.9.14__py3-none-any.whl → 0.9.9.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- TB2J/io_exchange/io_vampire.py +1 -1
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_merge.py +9 -5
- tb2j-0.9.9.15.data/scripts/TB2J_plot_magnon_bands.py +27 -0
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/METADATA +1 -1
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/RECORD +19 -19
- tb2j-0.9.9.14.data/scripts/TB2J_plot_magnon_bands.py +0 -7
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_downfold.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_eigen.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_magnon.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_magnon2.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_magnon_dos.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_rotate.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/TB2J_rotateDM.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/abacus2J.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/siesta2J.py +0 -0
- {tb2j-0.9.9.14.data → tb2j-0.9.9.15.data}/scripts/wann2J.py +0 -0
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/WHEEL +0 -0
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/entry_points.txt +0 -0
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/licenses/LICENSE +0 -0
- {tb2j-0.9.9.14.dist-info → tb2j-0.9.9.15.dist-info}/top_level.txt +0 -0
TB2J/io_exchange/io_vampire.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#!python
|
2
2
|
import argparse
|
3
|
-
|
4
|
-
import sys
|
3
|
+
|
5
4
|
from TB2J.io_merge import merge
|
5
|
+
from TB2J.version_info import print_license
|
6
6
|
|
7
7
|
|
8
8
|
def main():
|
@@ -32,14 +32,18 @@ def main():
|
|
32
32
|
"--main_path",
|
33
33
|
help="The path containning the reference structure.",
|
34
34
|
type=str,
|
35
|
-
default=None
|
35
|
+
default=None,
|
36
36
|
)
|
37
37
|
|
38
38
|
args = parser.parse_args()
|
39
39
|
# merge(*(args.directories), args.type.strip().lower(), path=args.output_path)
|
40
40
|
# merge(*(args.directories), method=args.type.strip().lower(), path=args.output_path)
|
41
|
-
#merge2(args.directories, args.type.strip().lower(), path=args.output_path)
|
41
|
+
# merge2(args.directories, args.type.strip().lower(), path=args.output_path)
|
42
|
+
print_license()
|
43
|
+
print("Merging the TB2J results from the following directories: ", args.directories)
|
42
44
|
merge(*args.directories, main_path=args.main_path, write_path=args.output_path)
|
45
|
+
print("Merging completed. The results are saved in:", args.output_path)
|
43
46
|
|
44
47
|
|
45
|
-
|
48
|
+
if __name__ == "__main__":
|
49
|
+
main()
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#!python
|
2
|
+
|
3
|
+
|
4
|
+
if __name__ == "__main__":
|
5
|
+
# add a warning messege that this functionality is under development and should not be used in production.
|
6
|
+
# make it visually distinct, e.g. with a different color or formatting.
|
7
|
+
import warnings
|
8
|
+
|
9
|
+
from TB2J.magnon.magnon3 import main
|
10
|
+
|
11
|
+
warnings.warn(
|
12
|
+
"""
|
13
|
+
# !!!!!!!!!!!!!!!!!! WARNING: =============================
|
14
|
+
#
|
15
|
+
# This functionality is under development and should not be used in production.
|
16
|
+
# It is provided for testing and development purposes only.
|
17
|
+
# Please use with caution and report any issues to the developers.
|
18
|
+
#
|
19
|
+
# This warning will be removed in future releases.
|
20
|
+
# =====================================
|
21
|
+
|
22
|
+
""",
|
23
|
+
UserWarning,
|
24
|
+
stacklevel=2,
|
25
|
+
)
|
26
|
+
# Call the main function from the magnons module
|
27
|
+
main()
|
@@ -60,7 +60,7 @@ TB2J/io_exchange/io_multibinit.py,sha256=8PDmWxzGuv-GwJosj2ZTmiyNY_duFVWJ4ekCuSq
|
|
60
60
|
TB2J/io_exchange/io_tomsasd.py,sha256=NqkAC1Fl-CUnFA21eBzSy_S5F_oeQFJysw4UukQbN8o,4173
|
61
61
|
TB2J/io_exchange/io_txt.py,sha256=BMr1eSILlKpgtjvDx7uw2VMAkEKSvGEPNxpaT_zev0I,10547
|
62
62
|
TB2J/io_exchange/io_uppasd.py,sha256=bI4iPEgnK4TvCZNvb6x2xYXgjW7pEehCqmcizy2pqFU,3301
|
63
|
-
TB2J/io_exchange/io_vampire.py,sha256=
|
63
|
+
TB2J/io_exchange/io_vampire.py,sha256=vOStLmtCiWLp9GPhZpsAmrtaRHg9KSmtOM2Fky6yCQA,5762
|
64
64
|
TB2J/magnon/__init__.py,sha256=Q69duroGIIotgW_71ZdHYarSiJLGAu9NPYgEacUk6eI,117
|
65
65
|
TB2J/magnon/io_exchange2.py,sha256=EcC3x6H13qq61WBsr__xKzHDtSvy_dMz1tEdUaqSG2I,23265
|
66
66
|
TB2J/magnon/magnon3.py,sha256=PFZFiyfYTIBscVu8SzvGxtrXhT-QM66EwIhWOqgSYQE,30219
|
@@ -91,21 +91,21 @@ TB2J/spinham/supercell.py,sha256=y17uUC6r3gQb278FhxIW4CABihfLTvKFj6flyXrCPR8,122
|
|
91
91
|
TB2J/wannier/__init__.py,sha256=7ojCbM84PYv1X1Tbo4NHI-d3gWmQsZB_xiYqbfxVV1E,80
|
92
92
|
TB2J/wannier/w90_parser.py,sha256=dbd63LuKyv2DVUzqRINGsbDzEsOxsQyE8_Ear_LQIRg,4620
|
93
93
|
TB2J/wannier/w90_tb_parser.py,sha256=qt8pnuprmPp9iIAYwPkPbmEzk6ZPgMq2xognoQp7vwc,4610
|
94
|
-
tb2j-0.9.9.
|
95
|
-
tb2j-0.9.9.
|
96
|
-
tb2j-0.9.9.
|
97
|
-
tb2j-0.9.9.
|
98
|
-
tb2j-0.9.9.
|
99
|
-
tb2j-0.9.9.
|
100
|
-
tb2j-0.9.9.
|
101
|
-
tb2j-0.9.9.
|
102
|
-
tb2j-0.9.9.
|
103
|
-
tb2j-0.9.9.
|
104
|
-
tb2j-0.9.9.
|
105
|
-
tb2j-0.9.9.
|
106
|
-
tb2j-0.9.9.
|
107
|
-
tb2j-0.9.9.
|
108
|
-
tb2j-0.9.9.
|
109
|
-
tb2j-0.9.9.
|
110
|
-
tb2j-0.9.9.
|
111
|
-
tb2j-0.9.9.
|
94
|
+
tb2j-0.9.9.15.data/scripts/TB2J_downfold.py,sha256=i4BVqnpDdgrX_amookVWeLGefGBn-qeAutWiwuY9SfQ,2099
|
95
|
+
tb2j-0.9.9.15.data/scripts/TB2J_eigen.py,sha256=Qs9v2hnMm2Tpfoa4h53muUKty2dZjwx8948MBoQooNg,1128
|
96
|
+
tb2j-0.9.9.15.data/scripts/TB2J_magnon.py,sha256=q7UwAmorRcFNk4tfE7gl_ny05l6p7pbD9Wm_LkIpKEw,3101
|
97
|
+
tb2j-0.9.9.15.data/scripts/TB2J_magnon2.py,sha256=tMa7Fg_Wd2UytnrH3C_AsgGM7BciUW0iy6NiPlWvar8,1920
|
98
|
+
tb2j-0.9.9.15.data/scripts/TB2J_magnon_dos.py,sha256=TMXQvD2dIbO5FZ4tUMmxJgCgH2O2hDAPUNfEKO4z-x4,110
|
99
|
+
tb2j-0.9.9.15.data/scripts/TB2J_merge.py,sha256=WQVrS2FvrjxkKukiPLY-naQxEK-d2T-bAb5n7e6ml2I,2096
|
100
|
+
tb2j-0.9.9.15.data/scripts/TB2J_plot_magnon_bands.py,sha256=wLlueNI-wU79cmPFu4LmPDwVBMerKSb5sUlTDSPQK6I,874
|
101
|
+
tb2j-0.9.9.15.data/scripts/TB2J_rotate.py,sha256=zgiDFuYZNmzKK0rwDmTaYD2OpRlmKA_VGeBx83w2Xwc,873
|
102
|
+
tb2j-0.9.9.15.data/scripts/TB2J_rotateDM.py,sha256=kCvF7gotuqAX1VnJ06cwfVm7RrhrdtiV5v7d9P2Pn_E,567
|
103
|
+
tb2j-0.9.9.15.data/scripts/abacus2J.py,sha256=ozYI7qZyja1WEs9oCYVpeYAfVj5PGhehhmdZFcvrd3g,1795
|
104
|
+
tb2j-0.9.9.15.data/scripts/siesta2J.py,sha256=QJ6c0DbqxaqYEesxiL5R9nK9-flNLrr7hajKfCwirYc,2318
|
105
|
+
tb2j-0.9.9.15.data/scripts/wann2J.py,sha256=OA31VHEXbQMD-JozoLUHDF6vB9Sr62d804OApSKtSnU,3240
|
106
|
+
tb2j-0.9.9.15.dist-info/licenses/LICENSE,sha256=CbZI-jyRTjiqIcWa244cRSHJdjjtUNqGR4HeJkgEwJw,1332
|
107
|
+
tb2j-0.9.9.15.dist-info/METADATA,sha256=4MA4Id_pqZPASA3ig_9xiICywGLB06rlUT6bPiccdW4,1768
|
108
|
+
tb2j-0.9.9.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
109
|
+
tb2j-0.9.9.15.dist-info/entry_points.txt,sha256=S81PATMTaKCIznjd3pei3Kb3q3xOy2dU-x_cAFSCS7k,194
|
110
|
+
tb2j-0.9.9.15.dist-info/top_level.txt,sha256=whYa5ByLYhl5XnTPBHSWr-IGD6VWmr5Ql2bye2qwV_s,5
|
111
|
+
tb2j-0.9.9.15.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|