LaserΒΆ
Class Arguments
Argument |
Type |
Default Value |
---|---|---|
laser_source |
LaserSource |
|
zero_freq |
TFloat |
None |
power |
TFloat |
0.001 |
Bold arguments are mandatory. For more documentation on the listed arguments refer to the class definition below. If parameters appear in this list but not in the class definition below, please recursively check the linked base classes for the definition of the parameter.
Inheritance Diagram
Example Component Dictionary
{
"laser_example": {
"classname": "atomiq.components.laser.Laser",
"arguments": {
"laser_source": "<mandatory parameter (LaserSource)>",
"zero_freq": null,
"power": 0.001
}
}
}
Class Description
- class atomiq.components.laser.Laser(laser_source, zero_freq=None, *args, **kwargs)[source]
Bases:
LaserSource
Laser light that can be modulated
Since we inherit from LaserSource here, a Laser object can itself again be a LaserSource for another Laser object. This way one can describe consecutive manipulations from a LaserSource to the final Laser object.
- Parameters:
laser_source (LaserSource) -- The laser source that this laser is taken from
zero_freq (TFloat) -- absolute frequency in Hz that should be considered zero. This allows to reference the laser frequency relative to e.g. an atomic transition. If not set, the detuning will be relative to the lock point of the laser source
- set_frequency(frequency)[source]
Set the absolute frequency of the light after modulation
- Parameters:
frequency (artiq.compiler.types.TMono('float', OrderedDict())) -- Absolute frequency of the light after modulation in Hz
- set_detuning(detuning)[source]
Set the detuning of the light from the frequency defined by zero_freq
Note
If you are using a modulator (e.g. AOM) the center frequency is not taken into account. If you want to set the detuning from the center frequency of the modulator use self.modulator.set_detuning
- Parameters:
detuning (artiq.compiler.types.TMono('float', OrderedDict())) -- Detuning in Hz
- detune(frequency)[source]
Alias for
set_detuning()
- Parameters:
frequency (artiq.compiler.types.TMono('float', OrderedDict()))