Added getPower
Method to Calculate Laser Power for Resonantly Driven Atoms
#169
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces a new method
getPower
to the ARC package.The
getPower
method calculates the laser power required for resonantly driving a transition between two atomic states in the center of a TEM00 mode of a driving field.Method Details
Parameters
n1, l1, j1, mj1
: Quantum numbers of the initial state from which the transition is driven.n2, l2, j2, mj2
: Quantum numbers of the final state to which the transition is driven.q
: Laser polarization, where -1, 0, and 1 correspond torabiFrequency
: Laser power in units of rad/s.laserWaist
: Lasers
(optional): Total spin angular momentum of the state, defaulting to 0.5 for Alkali atoms.Returns
float
: The calculated laser power in units of Watts (W).Usage
This method can be used to determine the necessary laser power for experiments involving resonantly driven transitions in Alkali atoms. It takes into account the dipole matrix element and other physical constants to provide an accurate calculation.
Example