2025-02-18 19:23:19 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2025-02-19 02:31:20 -05:00
|
|
|
from boundState import BoundState
|
2025-02-19 17:12:00 -05:00
|
|
|
from solveSE import WoodsSaxonPot, CoulombPotential, SpinOrbit_Pot, WS_SurfacePot
|
2025-02-20 00:02:12 -05:00
|
|
|
import matplotlib.pyplot as plt
|
2025-02-19 04:55:25 -05:00
|
|
|
|
2025-02-20 20:04:06 -05:00
|
|
|
# boundState = BoundState(16, 8, 1, 0, 1, 0, 0.5, -3.273)
|
2025-02-22 20:26:56 -05:00
|
|
|
# boundState = BoundState(16, 8, 1, 0, 0, 2, 2.5, -4.14)
|
|
|
|
# boundState.SetPotential(1.10, 0.65, -6, 1.25, 0.65, 1.30)
|
|
|
|
# boundState.FindPotentialDepth(-75, -50, 0.1)
|
2025-02-20 20:04:06 -05:00
|
|
|
# # boundState.PrintWF()
|
|
|
|
# boundState.PlotBoundState()
|
2025-02-20 00:39:22 -05:00
|
|
|
|
2025-02-20 20:04:06 -05:00
|
|
|
# exit()
|
2025-02-19 04:55:25 -05:00
|
|
|
|
2025-02-19 17:12:00 -05:00
|
|
|
from distortedWave import DistortedWave
|
2025-02-19 04:55:25 -05:00
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# dw = DistortedWave("60Ni", "p", 30)
|
|
|
|
# dw.ClearPotential()
|
|
|
|
# dw.AddPotential(WoodsSaxonPot(-47.937-2.853j, 1.20, 0.669), False)
|
|
|
|
# dw.AddPotential(WS_SurfacePot(-6.878j, 1.28, 0.550), False)
|
|
|
|
# dw.AddPotential(SpinOrbit_Pot(-5.250 + 0.162j, 1.02, 0.590), False)
|
|
|
|
# dw.AddPotential(CoulombPotential(1.258), False)
|
2025-02-19 04:55:25 -05:00
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
# dw = DistortedWave("60Ni", "d", 60)
|
|
|
|
# dw.PrintInput()
|
|
|
|
# dw.ClearPotential()
|
|
|
|
# dw.AddPotential(WoodsSaxonPot(-81.919, 1.15, 0.768), False)
|
|
|
|
# dw.AddPotential(WoodsSaxonPot(-4.836j, 1.33, 0.464), False)
|
|
|
|
# dw.AddPotential(WS_SurfacePot(-8.994j, 1.373, 0.774), False)
|
|
|
|
# dw.AddPotential(SpinOrbit_Pot(-3.557, 0.972, 1.011), False)
|
|
|
|
# dw.AddPotential(CoulombPotential(1.303), False)
|
2025-02-19 04:55:25 -05:00
|
|
|
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# dw.CalScatteringMatrix()
|
2025-02-20 00:39:22 -05:00
|
|
|
# dw.PrintScatteringMatrix()
|
2025-02-19 04:55:25 -05:00
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# dw.PlotDCSUnpolarized(180, 1)
|
2025-02-20 20:04:06 -05:00
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# exit()
|
2025-02-20 00:02:12 -05:00
|
|
|
|
|
|
|
# for i in range(1, 19):
|
|
|
|
# theta = 10*i
|
|
|
|
# # ruth = dw.RutherFord(theta)
|
|
|
|
# # coulAmp = dw.CoulombScatterintAmp(theta)
|
|
|
|
# dw.CalLegendre(theta)
|
|
|
|
# nuAmp1 = dw.NuclearScatteringAmp(-0.5, 0.5, 14)
|
|
|
|
# nuAmp2 = dw.NuclearScatteringAmp(0.5, -0.5, 14)
|
|
|
|
# # dsc = dw.DCSUnpolarized(theta, 14)
|
|
|
|
# # print(f"{theta:3.0f}, {nuAmp1:15.5f}, {nuAmp2:15.5f}, {dsc:10.6f}, {ruth:10.6f}")
|
|
|
|
# print(f"{theta:3.0f}, {nuAmp1:15.5f}, {nuAmp2:15.5f}")
|
2025-02-20 00:39:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
import sys, os
|
|
|
|
import re
|
|
|
|
import numpy as np
|
2025-02-22 20:26:56 -05:00
|
|
|
from scipy.integrate import simpson
|
|
|
|
import matplotlib.pyplot as plt
|
2025-02-20 00:39:22 -05:00
|
|
|
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '../Cleopatra'))
|
|
|
|
from IAEANuclearData import IsotopeClass
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
from clebschGordan import clebsch_gordan, quantum_factorial, obeys_triangle_rule
|
|
|
|
from sympy.physics.quantum.cg import wigner_9j
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
# Woods-Saxon
|
|
|
|
v = 0
|
|
|
|
r0 = 0
|
|
|
|
a = 0
|
|
|
|
vi = 0
|
|
|
|
ri0 = 0
|
|
|
|
ai = 0
|
|
|
|
# Woods-Saxon Surface
|
|
|
|
vsi = 0
|
|
|
|
rsi0 = 0
|
|
|
|
asi = 0
|
|
|
|
# Spin-orbit
|
|
|
|
vso = 0
|
|
|
|
rso0 = 0
|
|
|
|
aso = 0
|
|
|
|
vsoi = 0
|
|
|
|
rsoi0 = 0
|
|
|
|
asoi = 0
|
|
|
|
# Coulomb
|
|
|
|
rc0 = 0
|
|
|
|
|
|
|
|
def AnCai(A : int, Z : int, E : float):
|
|
|
|
global v, r0, a, vi, ri0, ai, vsi, rsi0, asi, vso, rso0, aso, vsoi, rsoi0, asoi, rc0
|
|
|
|
|
|
|
|
A3 = A**(1./3.)
|
|
|
|
v = 91.85 - 0.249*E + 0.000116*pow(E,2) + 0.642 * Z / A3
|
|
|
|
r0 = 1.152 - 0.00776 / A3
|
|
|
|
a = 0.719 + 0.0126 * A3
|
|
|
|
|
|
|
|
vi = 1.104 + 0.0622 * E
|
|
|
|
ri0 = 1.305 + 0.0997 / A3
|
|
|
|
ai = 0.855 - 0.1 * A3
|
|
|
|
|
|
|
|
vsi = 10.83 - 0.0306 * E
|
|
|
|
rsi0 = 1.334 + 0.152 / A3
|
|
|
|
asi = 0.531 + 0.062 * A3
|
|
|
|
|
|
|
|
vso = 3.557
|
|
|
|
rso0 = 0.972
|
|
|
|
aso = 1.011
|
|
|
|
|
|
|
|
vsoi = 0.0
|
|
|
|
rsoi0 = 0.0
|
|
|
|
asoi = 0.0
|
|
|
|
|
|
|
|
rc0 = 1.303
|
|
|
|
|
|
|
|
def Koning(A : int, Z : int, E : float, Zproj : float):
|
|
|
|
global v, r0, a, vi, ri0, ai, vsi, rsi0, asi, vso, rso0, aso, vsoi, rsoi0, asoi, rc0
|
|
|
|
|
|
|
|
N = A-Z
|
|
|
|
A3 = A**(1./3.)
|
|
|
|
|
|
|
|
vp1 = 59.3 + 21.*(N-Z)/A - 0.024*A
|
|
|
|
vn1 = 59.3 - 21.*(N-Z)/A - 0.024*A
|
|
|
|
|
|
|
|
vp2 = 0.007067 + 0.00000423*A
|
|
|
|
vn2 = 0.007228 - 0.00000148*A
|
|
|
|
|
|
|
|
vp3 = 0.00001729 + 0.00000001136 * A
|
|
|
|
vn3 = 0.00001994 - 0.00000002 * A
|
|
|
|
|
|
|
|
vp4 = 7e-9 # = vn4
|
|
|
|
vn4 = vp4
|
|
|
|
|
|
|
|
wp1 = 14.667 + 0.009629*A
|
|
|
|
wn1 = 12.195 + 0.0167*A
|
|
|
|
|
|
|
|
wp2 = 73.55 + 0.0795*A # = wn2
|
|
|
|
wn2 = wp2
|
|
|
|
|
|
|
|
dp1 = 16 + 16.*(N-Z)/A
|
|
|
|
dn1 = 16 - 16.*(N-Z)/A
|
|
|
|
|
|
|
|
dp2 = 0.018 + 0.003802/(1 + np.exp((A-156.)/8)) # = dn2
|
|
|
|
dn2 = dp2
|
|
|
|
|
|
|
|
dp3 = 11.5 # = dn3
|
|
|
|
dn3 = dp3
|
|
|
|
|
|
|
|
vso1 = 5.922 + 0.003 * A
|
|
|
|
vso2 = 0.004
|
|
|
|
|
|
|
|
wso1 = -3.1
|
|
|
|
wso2 = 160
|
|
|
|
|
|
|
|
epf = -8.4075 + 0.01378 *A
|
|
|
|
enf = -11.2814 + 0.02646 *A
|
|
|
|
|
|
|
|
rc = 1.198 + 0.697/pow(A3,2) + 12.995/pow(A3,5)
|
|
|
|
vc = 1.73/rc * Z / A3
|
|
|
|
|
|
|
|
v = vp1*(1 - vp2*(E-epf) + vp3*pow(E-epf,2) - vp4*pow(E-epf,3)) + vc * vp1 * (vp2 - 2*vp3*(E-epf) + 3*vp4*pow(E-epf,2))
|
|
|
|
#neutron
|
|
|
|
if Zproj == 0 :
|
|
|
|
v = vn1*(1 - vn2*(E-enf) + vn3*pow(E-enf,2) - vn4*pow(E-enf,3))
|
|
|
|
|
|
|
|
r0 = 1.3039 - 0.4054 / A3
|
|
|
|
a = 0.6778 - 0.000148 * A
|
|
|
|
|
|
|
|
vi = wp1 * pow(E-epf,2)/(pow(E-epf,2) + pow(wp2,2))
|
|
|
|
if Zproj == 0 :
|
|
|
|
vi = wn1 * pow(E-enf,2)/(pow(E-enf,2) + pow(wn2,2))
|
|
|
|
|
|
|
|
ri0 = 1.3039 - 0.4054 / A3
|
|
|
|
ai = 0.6778 - 0.000148 * A
|
|
|
|
|
|
|
|
vsi = dp1 * pow(E-epf,2)/(pow(E-epf,2)+pow(dp3,2)) * np.exp(-dp2*(E-epf))
|
|
|
|
if Zproj == 0 :
|
|
|
|
vsi = dn1 * pow(E-enf,2)/(pow(E-enf,2)+pow(dn3,2)) * np.exp(-dn2*(E-enf))
|
|
|
|
|
|
|
|
rsi0 = 1.3424 - 0.01585 * A3
|
|
|
|
asi = 0.5187 + 0.0005205 * A
|
|
|
|
if Zproj == 0:
|
|
|
|
asi = 0.5446 - 0.0001656 * A
|
|
|
|
|
|
|
|
vso = vso1 * np.exp(-vso2 * (E-epf))
|
|
|
|
if Zproj == 0:
|
|
|
|
vso = vso1 * np.exp(-vso2 * (E-enf))
|
|
|
|
|
|
|
|
rso0 = 1.1854 - 0.647/A3
|
|
|
|
aso = 0.59
|
|
|
|
|
|
|
|
vsoi = wso1 * pow(E-epf,2)/(pow(E-epf,2)+pow(wso2,2))
|
|
|
|
if Zproj == 0 :
|
|
|
|
vsoi = wso1 * pow(E-enf,2)/(pow(E-enf,2)+pow(wso2,2))
|
|
|
|
|
|
|
|
rsoi0 = 1.1854 - 0.647/A3
|
|
|
|
asoi = 0.59
|
|
|
|
|
|
|
|
rc0 = rc
|
|
|
|
|
|
|
|
def ConvertLSym(LSym :str) -> int:
|
|
|
|
if LSym == "s" :
|
|
|
|
return 0
|
|
|
|
elif LSym == "p" :
|
|
|
|
return 1
|
|
|
|
elif LSym == "d" :
|
|
|
|
return 2
|
|
|
|
elif LSym == "f" :
|
|
|
|
return 3
|
|
|
|
elif LSym == "g" :
|
|
|
|
return 4
|
|
|
|
elif LSym == "h" :
|
|
|
|
return 5
|
|
|
|
elif LSym == "i" :
|
|
|
|
return 6
|
|
|
|
elif LSym == "j" :
|
|
|
|
return 7
|
|
|
|
elif LSym == "k" :
|
|
|
|
return 8
|
|
|
|
else :
|
|
|
|
return -1
|
|
|
|
|
|
|
|
#==========================================
|
|
|
|
|
|
|
|
nu_A = "16O"
|
|
|
|
nu_a = "d"
|
|
|
|
nu_b = "p"
|
|
|
|
nu_B = "17O"
|
|
|
|
ELabPreU = 10 # MeV/u
|
|
|
|
Ex = 0.87
|
2025-02-22 20:26:56 -05:00
|
|
|
J_B = "1/2+"
|
2025-02-20 00:39:22 -05:00
|
|
|
orbital = "1s1/2"
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
import time
|
|
|
|
start_time = time.time() # Start the timer
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
iso = IsotopeClass()
|
|
|
|
|
|
|
|
A_A, Z_A = iso.GetAZ(nu_A)
|
|
|
|
A_a, Z_a = iso.GetAZ(nu_a)
|
|
|
|
A_b, Z_b = iso.GetAZ(nu_b)
|
|
|
|
A_B, Z_B = iso.GetAZ(nu_B)
|
|
|
|
|
|
|
|
A_x = abs(A_a - A_b)
|
|
|
|
Z_x = abs(Z_a - Z_b)
|
|
|
|
|
|
|
|
mass_A = iso.GetMassFromSym(nu_A)
|
|
|
|
mass_a = iso.GetMassFromSym(nu_a)
|
|
|
|
mass_b = iso.GetMassFromSym(nu_b)
|
|
|
|
mass_B = iso.GetMassFromSym(nu_B)
|
|
|
|
|
|
|
|
mass_x = iso.GetMassFromAZ( A_x, Z_x)
|
|
|
|
|
|
|
|
if A_A < A_B : # (d,p)
|
|
|
|
A_c = A_A
|
|
|
|
Z_c = Z_A
|
|
|
|
BindingEnergy = mass_B - mass_A - mass_x + Ex
|
|
|
|
else: #(p,d)
|
|
|
|
A_c = A_B
|
|
|
|
Z_c = Z_B
|
|
|
|
BindingEnergy = mass_A - mass_B - mass_x
|
|
|
|
|
|
|
|
sym_A = iso.GetSymbol(A_A, Z_A)
|
|
|
|
sym_B = iso.GetSymbol(A_B, Z_B)
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
spin_A_str = iso.GetJpi(A_A, Z_A)
|
|
|
|
spin_B_str = J_B
|
|
|
|
|
|
|
|
spin_A = float(eval(re.sub(r'[+-]', '', spin_A_str)))
|
|
|
|
spin_B = float(eval(re.sub(r'[+-]', '', J_B)))
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
if A_a == 2 and Z_a == 1:
|
|
|
|
spin_a = 1.0
|
|
|
|
spin_b = 0.5
|
|
|
|
else:
|
|
|
|
spin_a = 0.5
|
|
|
|
spin_b = 1.0
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
s = 0.5 # spin of x, neutron or proton
|
2025-02-20 00:39:22 -05:00
|
|
|
|
|
|
|
#=================== digest orbital
|
|
|
|
match = re.search(r'[a-zA-Z]', orbital) # Find first letter
|
|
|
|
if match:
|
|
|
|
index = match.start() # Get position of the first letter
|
|
|
|
|
|
|
|
node = int(orbital[:index])
|
|
|
|
l_sym = orbital[index:index+1]
|
|
|
|
j_sym = orbital[index+1:]
|
|
|
|
j = eval(j_sym)
|
|
|
|
l = ConvertLSym(l_sym)
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
#==== check the angular conservasion
|
|
|
|
passJ = False
|
|
|
|
if obeys_triangle_rule(spin_A, spin_B, j):
|
|
|
|
passJ = True
|
|
|
|
else:
|
|
|
|
print(f"the orbital spin-J ({j}) does not consver J({nu_A}) + J({nu_B}) = {spin_A} + {spin_B}.")
|
|
|
|
|
|
|
|
passS = False
|
|
|
|
if obeys_triangle_rule(spin_a, spin_b, s):
|
|
|
|
passS = True
|
|
|
|
else:
|
|
|
|
print(f"the orbital spin-s ({s})does not consver S({nu_a}) + S({nu_b}) = {spin_a} + {spin_b}.")
|
|
|
|
|
|
|
|
passl = False
|
|
|
|
if obeys_triangle_rule(j, s, l):
|
|
|
|
passl = True
|
|
|
|
else:
|
|
|
|
print(f"the orbital spin-l ({l})does not consver J({j}) + J({s}).")
|
|
|
|
|
|
|
|
if passJ == False or passS == False or passl == False :
|
|
|
|
print("Fail angular momentum conservation.")
|
|
|
|
exit()
|
|
|
|
|
|
|
|
reactionStr = f"{nu_A}({spin_A_str})({nu_a},{nu_b}){nu_B}({Ex:.3f}|{spin_B_str}, {orbital}) @ {ELabPreU:.1f} MeV/u"
|
|
|
|
|
|
|
|
print("==================================================")
|
|
|
|
print(reactionStr)
|
|
|
|
|
|
|
|
Q_value = mass_A + mass_a - mass_b - mass_B - Ex
|
|
|
|
print(f"Transfer Orbtial : {orbital}")
|
|
|
|
print(f"Q-value : {Q_value:10.6f} MeV")
|
|
|
|
print(f"Binding : {BindingEnergy:10.6f} MeV")
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
#=================== find the maximum L for partial wave
|
|
|
|
mass_I = mass_A * mass_a / (mass_A + mass_a) # reduced mass of incoming channel
|
|
|
|
hbarc = 197.3269788 # MeV.fm
|
|
|
|
k_I = np.sqrt(2*mass_I * A_a * ELabPreU)/hbarc # wave number of incoming channel
|
|
|
|
touching_Radius = 1.25*(A_A**(1./3) + A_a**(1./3)) + 10 # add 10 fm
|
|
|
|
maxL = int(touching_Radius * k_I) # maximum partial wave
|
|
|
|
print(f"max L : {maxL}")
|
|
|
|
|
|
|
|
#================== Bound state
|
2025-02-22 20:26:56 -05:00
|
|
|
print("====================== Bound state ")
|
2025-02-20 00:39:22 -05:00
|
|
|
boundState = BoundState(A_c, Z_c, A_x, Z_x, node, l, j, BindingEnergy)
|
2025-02-22 20:26:56 -05:00
|
|
|
boundState.SetPotential(1.10, 0.65, -6, 1.25, 0.65, 1.30)
|
2025-02-20 00:39:22 -05:00
|
|
|
boundState.FindPotentialDepth(-70, -55, 0.1)
|
|
|
|
# # boundState.PrintWF()
|
|
|
|
# boundState.PlotBoundState()
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# exit()
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
#================== incoming wave function
|
2025-02-22 20:26:56 -05:00
|
|
|
print("====================== Incoming wave function ")
|
2025-02-20 00:39:22 -05:00
|
|
|
AnCai(A_A, Z_A, A_a * ELabPreU)
|
|
|
|
|
|
|
|
dwI = DistortedWave(nu_A, nu_a, ELabPreU * A_a)
|
|
|
|
dwI.maxL = maxL
|
2025-02-22 20:26:56 -05:00
|
|
|
dwI.PrintInput()
|
2025-02-20 00:39:22 -05:00
|
|
|
dwI.ClearPotential()
|
|
|
|
dwI.AddPotential(WoodsSaxonPot(-v, r0, a), False)
|
|
|
|
dwI.AddPotential(WoodsSaxonPot(-1j*vi, ri0, ai), False)
|
|
|
|
dwI.AddPotential(WS_SurfacePot(-1j*vsi, rsi0, asi), False)
|
|
|
|
dwI.AddPotential(SpinOrbit_Pot(-vso , rso0, aso), False)
|
|
|
|
dwI.AddPotential(SpinOrbit_Pot(- 1j* vsoi, rsoi0, asoi), False)
|
|
|
|
dwI.AddPotential(CoulombPotential(rc0), False)
|
2025-02-22 20:26:56 -05:00
|
|
|
dwI.PrintPotentials()
|
2025-02-20 00:39:22 -05:00
|
|
|
|
|
|
|
sm_I, wfu_I = dwI.CalScatteringMatrix()
|
|
|
|
|
|
|
|
dwI.PrintScatteringMatrix()
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
# dwI.PlotDistortedWave(1, 1, 20)
|
|
|
|
# dwI.PlotScatteringMatrix()
|
|
|
|
|
2025-02-20 00:39:22 -05:00
|
|
|
#================= outgoing wave function
|
2025-02-22 20:26:56 -05:00
|
|
|
print("====================== Outgoing wave function ")
|
2025-02-20 00:39:22 -05:00
|
|
|
Koning(A_B, Z_B, A_a*ELabPreU + Q_value - Ex, Z_b)
|
|
|
|
|
|
|
|
dwO = DistortedWave(nu_B, nu_b, ELabPreU * A_a + Q_value - Ex)
|
|
|
|
dwO.maxL = maxL
|
|
|
|
dwO.ClearPotential()
|
|
|
|
dwO.AddPotential(WoodsSaxonPot(-v, r0, a), False)
|
|
|
|
dwO.AddPotential(WoodsSaxonPot(-1j*vi, ri0, ai), False)
|
|
|
|
dwO.AddPotential(WS_SurfacePot(-1j*vsi, rsi0, asi), False)
|
|
|
|
dwO.AddPotential(SpinOrbit_Pot(-vso , rso0, aso), False)
|
|
|
|
dwO.AddPotential(SpinOrbit_Pot(- 1j* vsoi, rsoi0, asoi), False)
|
|
|
|
dwO.AddPotential(CoulombPotential(rc0), False)
|
2025-02-22 20:26:56 -05:00
|
|
|
dwO.PrintPotentials()
|
2025-02-20 00:39:22 -05:00
|
|
|
|
|
|
|
sm_O, wfu_O = dwO.CalScatteringMatrix()
|
|
|
|
|
2025-02-22 20:26:56 -05:00
|
|
|
dwO.PrintScatteringMatrix()
|
|
|
|
|
|
|
|
# dwO.PlotDistortedWave(1, 1.5, 20)
|
|
|
|
|
|
|
|
end_time = time.time() # End the timer
|
|
|
|
print(f"Time used {(end_time - start_time) * 1000:.2f} milliseconds")
|
|
|
|
|
|
|
|
#=================== Calculate radial integral
|
|
|
|
print("====================== Calculating Radial integrals")
|
|
|
|
|
|
|
|
def FormatSpin(spin : float) -> str:
|
|
|
|
if int(2*spin) % 2 == 0 :
|
|
|
|
return f"{int(spin):+d}"
|
|
|
|
else:
|
|
|
|
return f"{int(2*spin):+d}/2"
|
|
|
|
|
|
|
|
spin_a = dwI.spin_a
|
|
|
|
spin_b = dwO.spin_a
|
|
|
|
|
|
|
|
radialInt = np.zeros((maxL+1, int(2*spin_a+1), int(2*spin_b+1)), dtype=complex)
|
|
|
|
|
|
|
|
bs = boundState.GetBoundStateWF()
|
|
|
|
|
|
|
|
for L in range(0, maxL+1):
|
|
|
|
for index1 in range(0, len(wfu_I[L])):
|
|
|
|
wf1 = wfu_I[L][index1]
|
|
|
|
for index2 in range(0, len(wfu_O[L])):
|
|
|
|
wf2 = wfu_O[L][index2]
|
|
|
|
# if L == 0 and index1 == 2 and index2 == 1 :
|
|
|
|
# for i in range(0, len(bs)):
|
|
|
|
# if i%50 == 0 :
|
|
|
|
# print(bs[i], wf1[i], wf2[i], bs[i]* wf1[i]* wf2[i])
|
|
|
|
pf1 = np.exp(1j*dwI.CoulombPhaseShift(L))
|
|
|
|
pf2 = np.exp(1j*dwI.CoulombPhaseShift(L))
|
|
|
|
integral = simpson (bs*wf1*wf2, dx=boundState.dr)
|
|
|
|
radialInt[L][index1][index2] = integral * pf1 * pf2
|
|
|
|
|
|
|
|
#print radial integral
|
|
|
|
for index1 in range(0, int(2*spin_a) + 1):
|
|
|
|
for index2 in range(0, int(2*spin_b) + 1):
|
|
|
|
print(f"======================= J1 = L{FormatSpin(index1-spin_a)}, J2 = L{FormatSpin(index2-spin_b)}")
|
|
|
|
for L in range(0, maxL+1):
|
|
|
|
J1 = L + index1 - spin_a
|
|
|
|
J2 = L + index2 - spin_b
|
|
|
|
print(f"{L:2d}, {J1:4.1f}, {J2:4.1f}, {np.real(radialInt[L][index1][index2]):12.4e} + {np.imag(radialInt[L][index1][index2]):12.4e}I")
|
|
|
|
|
|
|
|
# Plot radial integral
|
|
|
|
fig, axes = plt.subplots(int(2*spin_b+1), int(2*spin_a+1), figsize=(6*int(2*spin_a+1), 4*int(2*spin_b+1)))
|
|
|
|
|
|
|
|
for index2 in range(0, int(2*spin_b) + 1):
|
|
|
|
for index1 in range(0, int(2*spin_a) + 1):
|
|
|
|
haha = []
|
|
|
|
l_list = []
|
|
|
|
for L in range(0, maxL+1):
|
|
|
|
J1 = L + index1 - spin_a
|
|
|
|
J2 = L + index2 - spin_b
|
|
|
|
if J1 < 0 or J2 < 0 :
|
|
|
|
continue
|
|
|
|
l_list.append(L)
|
|
|
|
haha.append(radialInt[L][index1][index2])
|
|
|
|
axes[index2, index1].plot(l_list, np.real(haha), label="Real", marker='o')
|
|
|
|
axes[index2, index1].plot(l_list, np.imag(haha), label="Imag", marker='x')
|
|
|
|
axes[index2, index1].legend()
|
|
|
|
axes[index2, index1].set_xlabel('L')
|
|
|
|
axes[index2, index1].set_ylabel('Value')
|
|
|
|
axes[index2, index1].set_title(f'Radial Int. vs L for Spin J1 = L{FormatSpin(index1-spin_a)}, J2 = L{FormatSpin(index2-spin_b)}.')
|
|
|
|
axes[index2, index1].set_xlim(-1, maxL+1)
|
|
|
|
axes[index2, index1].grid()
|
|
|
|
|
|
|
|
plt.tight_layout()
|
|
|
|
plt.show(block=False)
|
|
|
|
input("Press Enter to continue...")
|
|
|
|
|
|
|
|
|
|
|
|
def Gamma(L1, J1, L2, J2, m, ma, mb):
|
|
|
|
if int(L1 + L2 + l)%2 != 0:
|
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
fact0 = wigner_9j(j, l, s, J1, L1, spin_a, J2, L2, spin_b)
|
|
|
|
if fact0 == 0:
|
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
fact1 = pow(-1, m) * np.power(1j, L1-L2-l) * (2*L2+1) * np.sqrt((2*l+1)*(2*s+1)*(2*L1+1)*(2*J2+1))
|
|
|
|
fact2 = np.sqrt( quantum_factorial(L2-m) / quantum_factorial(L2+m) )
|
|
|
|
fact3 = clebsch_gordan(J2, mb-m, j, m-mb+ma, J1, ma)
|
|
|
|
fact4 = clebsch_gordan(L1, 0, spin_a, ma, J1, ma)
|
|
|
|
fact5 = clebsch_gordan(L2, -m, spin_b, mb, J2, mb-m)
|
|
|
|
fact6 = clebsch_gordan(L1, 0, l, 0, L2, 0)
|
|
|
|
return fact0 * fact1 * fact2 * fact3 * fact4 * fact5 * fact6
|
|
|
|
|
|
|
|
|
|
|
|
def Beta(m, ma, mb, theta_deg):
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|