forked from chjost/clebsch_gordan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_pw
executable file
·67 lines (60 loc) · 1.76 KB
/
example_pw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/python
import numpy as np
import itertools as it
import group
def main():
prefs = [[0.,0.,0.], [0.,0.,1.], [1.,1.,0.], [1.,1.,1.]]
p2max = 4
jmax = 3
groups = []
# initialize groups
for p2 in range(p2max):
try:
_g = group.TOh.read(p2=p2)
except IOError:
_g = group.TOh(pref=prefs[p2], irreps=True)
_g.save()
groups.append(_g)
print(" CMF ".center(40, "="))
print("scalar-scalar")
for p in range(p2max):
try:
pw = group.PWOps(groups, 0, p, p, s1=0, s2=0)
print(" %d x %d -> 0 ".center(40, "+") % (p, p))
pw.print_all(jmax)
print(" ")
except RuntimeError:
continue
print("scalar-vector")
for p in range(p2max):
try:
pw = group.PWOps(groups, 0, p, p, s1=0, s2=1)
print(" %d x %d -> 0 ".center(40, "+") % (p, p))
pw.print_all(jmax)
print(" ")
except RuntimeError:
continue
print(" MF1 ".center(40, "="))
print("scalar-scalar")
for p, k in it.product(range(p2max), repeat=2):
try:
pw = group.PWOps(groups, 1, p, k, s1=0, s2=0)
print(" %d x %d -> 1 ".center(40, "+") % (p, k))
pw.print_all(jmax)
print(" ")
except RuntimeError:
continue
print("scalar-vector")
for p, k in it.product(range(p2max), repeat=2):
try:
pw = group.PWOps(groups, 1, p, k, s1=0, s2=1)
print(" %d x %d -> 1 ".center(40, "+") % (p, k))
pw.print_all(jmax)
print(" ")
except RuntimeError:
continue
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
pass