-
Notifications
You must be signed in to change notification settings - Fork 100
Open
Labels
Description
I was trying to calculate the Rabi frequency ratio of Cs atom excitation (6S_{1/2} -->nP_{1/2}) to (6S_{1/2} -->nP_{3/2})
By running the following code:
rabiFreq = cs.getRabiFrequency(n1=6, l1=0, j1=0.5, mj1=0.5, n2=84, l2=1, j2=1.5, q= +1,
laserPower=1000.e-3, laserWaist= 50.e-6)
rabiFreq_2 = cs.getRabiFrequency(n1=6, l1=0, j1=0.5, mj1=0.5, n2=84, l2=1, j2=0.5, q= 0,
laserPower=1000.e-3, laserWaist= 50.e-6)
print(rabiFreq/rabiFreq_2)
I got the ratio = 3.4056.
However, the following papers say that the oscillator strength for excitation to P_{1/2} states is orders of magnitude weaker than for excitation to P_{3/2} states:
• https://journals.aps.org/pra/abstract/10.1103/PhysRevA.89.033416
• https://arxiv.org/pdf/1706.06237.pdf
The oscillator strengths are proportional to the square of the Rabi frequency:
3.4^2 = 11.56
but this still can't get us 4 orders of magnitude as the paper say ....
I wonder if there is something wrong with getDipoleMatrixElement
?
By the way, I also made this plot: