Skip to content

Commit 79cde93

Browse files
authored
Adding dataType for PsiM (#114)
1 parent 891b63b commit 79cde93

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

scri/__init__.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ def version_info():
7878
FrameType = [UnknownFrameType, Inertial, Coprecessing, Coorbital, Corotating] = range(5)
7979
FrameNames = ["UnknownFrameType", "Inertial", "Coprecessing", "Coorbital", "Corotating"]
8080

81-
DataType = [UnknownDataType, psi0, psi1, psi2, psi3, psi4, sigma, h, hdot, news, psin] = range(11)
82-
DataNames = ["UnknownDataType", "Psi0", "Psi1", "Psi2", "Psi3", "Psi4", "sigma", "h", "hdot", "news", "psin"]
83-
SpinWeights = [sys.maxsize, 2, 1, 0, -1, -2, 2, -2, -2, -2, sys.maxsize]
84-
ConformalWeights = [sys.maxsize, 2, 1, 0, -1, -2, 1, 0, -1, -1, -3]
85-
RScaling = [sys.maxsize, 5, 4, 3, 2, 1, 2, 1, 1, 1, 0]
86-
MScaling = [sys.maxsize, 2, 2, 2, 2, 2, 0, 0, 1, 1, 2]
81+
DataType = [UnknownDataType, psi0, psi1, psi2, psi3, psi4, sigma, h, hdot, news, psin, psim] = range(12)
82+
DataNames = ["UnknownDataType", "Psi0", "Psi1", "Psi2", "Psi3", "Psi4", "sigma", "h", "hdot", "news", "psin", "PsiM"]
83+
SpinWeights = [sys.maxsize, 2, 1, 0, -1, -2, 2, -2, -2, -2, sys.maxsize, 0]
84+
ConformalWeights = [sys.maxsize, 2, 1, 0, -1, -2, 1, 0, -1, -1, -3, 0]
85+
RScaling = [sys.maxsize, 5, 4, 3, 2, 1, 2, 1, 1, 1, 0, 0]
86+
MScaling = [sys.maxsize, 2, 2, 2, 2, 2, 0, 0, 1, 1, 2, 1]
8787
DataNamesLaTeX = [
8888
r"\mathrm{unknown data type}",
8989
r"\psi_0",
@@ -96,6 +96,7 @@ def version_info():
9696
r"\dot{h}",
9797
r"\mathrm{n}",
9898
r"\psi_n",
99+
r"\psi_M",
99100
]
100101
# It might also be worth noting that:
101102
# - the radius `r` has spin weight 0 and boost weight -1
@@ -186,6 +187,7 @@ def version_info():
186187
"hdot",
187188
"news",
188189
"psin",
190+
"psim",
189191
"DataNames",
190192
"DataNamesLaTeX",
191193
"SpinWeights",

0 commit comments

Comments
 (0)