AutoCalibratedModulatedLaser

Class Arguments

Argument

Type

Default Value

photodiode

Photodiode

modulator

LightModulator

laser_source

LaserSource

points

TInt32

6

switch

Switchable

None

fm_device

TStr

mod

am_device

TStr

mod

src_transmission

TFloat

1.0

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

Inheritance diagram of atomiq.components.laser.AutoCalibratedModulatedLaser

Example Component Dictionary

   {
    "laser_example": {
        "classname": "atomiq.components.laser.AutoCalibratedModulatedLaser",
        "arguments": {
            "photodiode": "<mandatory parameter (Photodiode)>",
            "modulator": "<mandatory parameter (LightModulator)>",
            "laser_source": "<mandatory parameter (LaserSource)>",
            "points": 6,
            "switch": null,
            "fm_device": "mod",
            "am_device": "mod",
            "src_transmission": 1.0,
            "zero_freq": null,
            "power": 0.001
        }
    }
}

Class Description

class atomiq.components.laser.AutoCalibratedModulatedLaser(points=6, *args, amp_min=0.0, amp_max=1.0, timestep=0.000325, **kwargs)

Bases: StabilizedModulatedLaser

A laser that uses a Measurable to auto-calibrate its power

With some means of measuring the laser power after the amplitude modulator and a feedback, the amplitude for the modulator to achieve a certain power in the beam can be auto-calibrated. To achieve this, this laser measures a configurable number of points and makes a linear interpolation between them if a power in between is requested.

Parameters:
  • points (TInt32) -- number of points to measure for the auto-calibration. (default 6)

  • amp_min (TFloat) -- minimum amplitude to test in the auto-calibration

  • amp_max (TFloat) -- maximum amplitude to test in the auto-calibration

  • timestep (TFloat)

A Switchable has one ore more channel(s) that can be switched on or off

set_power(power)

Set the output power of the laser

If no autocalibration has been done before in this kernel, this will immediately perform the calibration and set the modulator according to the result. If a calibration is present in the cache, the cache values are used to calculate an interpolation.

Parameters:
  • power (artiq.compiler.types.TMono('float', OrderedDict())) -- the power the laser should be stabilized to. If the photodiode is calibrated the power should be

  • units (given in the calibrated)

arb(duration, samples_amp=[], samples_power=[], samples_freq=[], samples_det=[], samples_phase=[], repetitions=1, prepare_only=False, run_prepared=False, transform_amp=<function identity_float>, transform_freq=<function identity_float>, transform_phase=<function identity_float>)

Play Arbitrary Samples from a List

This method allows to set the output amplitude, frequency an phase according to the values specified in respective lists. The whole sequence is played in the specified duration. The pattern store in the sample list can also be repeated.

We supports a scheme to prepare the arb function before it is actually used. If that is needed, run this function with prepare_only = True when the arb should be prepared and with run_only = True when the prepared arb should be played. In both calls the other parameters have to be passed.

Parameters:
  • samples_amp (artiq.compiler.types.TMono('list', OrderedDict([('elt', artiq.compiler.types.TMono('float', OrderedDict()))]))) -- List of amplitude samples. If this list is empty (default), the amplitude is not modified.

  • samples_power (artiq.compiler.types.TMono('list', OrderedDict([('elt', artiq.compiler.types.TMono('float', OrderedDict()))]))) -- List of power samples. If this list is empty (default), the amplitude is not modified. This overwrites samples_amp.

  • samples_freq (artiq.compiler.types.TMono('list', OrderedDict([('elt', artiq.compiler.types.TMono('float', OrderedDict()))]))) -- List of frequency samples. If this list is empty (default), the frequency is not modified.

  • samples_det (artiq.compiler.types.TMono('list', OrderedDict([('elt', artiq.compiler.types.TMono('float', OrderedDict()))]))) -- List of frequency samples relative to the zero frequency. If this list is empty (default), the frequency is not modified. This overwrites samples_frequency

  • samples_phase (artiq.compiler.types.TMono('list', OrderedDict([('elt', artiq.compiler.types.TMono('float', OrderedDict()))]))) -- List of phase samples. If this list is empty (default), the phase is not modified.

  • duration (artiq.compiler.types.TMono('float', OrderedDict())) -- The time in which the whole sequence of samples should be played back [s].

  • repetitions (artiq.compiler.types.TMono('int', OrderedDict([('width', artiq.compiler.types.TValue(32))]))) -- Number of times the sequence of all samples should be played. (default 1)

  • prepare_only (artiq.compiler.types.TMono('bool', OrderedDict()))

  • run_prepared (artiq.compiler.types.TMono('bool', OrderedDict()))

ramp(duration, frequency_start=-1.0, frequency_end=-1.0, amplitude_start=-1.0, amplitude_end=-1.0, power_start=-1.0, power_end=-1.0, ramp_timestep=-1.0, ramp_steps=-1)

Ramp frequency and/or power/amplitude over a given duration.

Parameters default to -1 to indicate no change. If the start frequency/amplitude is set to -1, the ramp starts from the last frequency/amplitude which was set.

Either power or amplitude can be given to ramp the intensity of the laser. If power is given, it overwrites the value for the amplitude

This method advances the timeline by ´duration´

Parameters:
  • duration (artiq.compiler.types.TMono('float', OrderedDict())) -- ramp duration [s]

  • frequency_start (artiq.compiler.types.TMono('float', OrderedDict())) -- initial frequency [Hz]

  • frequency_end (artiq.compiler.types.TMono('float', OrderedDict())) -- end frequency [Hz]

  • amplitude_start (artiq.compiler.types.TMono('float', OrderedDict())) -- initial amplitude [Hz]

  • amplitude_end (artiq.compiler.types.TMono('float', OrderedDict())) -- end amplitude [Hz]

  • power_start (artiq.compiler.types.TMono('float', OrderedDict()))

  • power_end (artiq.compiler.types.TMono('float', OrderedDict()))

  • ramp_timestep (artiq.compiler.types.TMono('float', OrderedDict()))

  • ramp_steps (artiq.compiler.types.TMono('int', OrderedDict([('width', artiq.compiler.types.TValue(32))])))

set_frequency(frequency)

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