atomiq.components.dummies¶
This module gathers different dummy components that mimic hardware but do nothing. They are mainly used for debugging atomiq
Classes¶
An analog-to-ditigal converter (ADC) with multiple channels |
|
A dummy RFSource used for debugging |
|
A DAC with multiple channels |
|
An atomiq Component |
|
An atomiq Component |
|
An atomiq Component |
|
A ARTIQ sim dummy core device that works with Atomiq. |
Module Contents¶
- class atomiq.components.dummies.DummyADC(return_value, *args, **kwargs)[source]¶
Bases:
atomiq.components.electronics.adc.ADCAn analog-to-ditigal converter (ADC) with multiple channels
Many ADCs come with multiple channels that are always sampled together. This class represents such ADCs
- Parameters:
num_chan -- Number of channels the ADC has.
return_value (artiq.language.types.TFloat)
- kernel_invariants¶
- return_value¶
- num_chan¶
- invalid_return¶
- _build()¶
Specify here what should be done for this component in the build phase
- measure(samples=1, channel='')¶
Measures all channels and returns the mean for a given number of subsequent samples.
This method advances the timeline by samples * sampling_time
- Parameters:
samples (artiq.language.types.TInt32) -- number of samples to take and average
channel (artiq.language.types.TStr)
- Return type:
TArray(TFloat)
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- measurement_channels()¶
- class atomiq.components.dummies.DummyRFSource(default_frequency=100000000.0, default_amplitude=0.0, default_phase=0.0, freq_limit=(0.0, float('inf')), amp_limit=(0.0, 1.0), blind=False, default_ramp_steps=30, *args, **kwargs)[source]¶
Bases:
atomiq.components.electronics.rfsource.RFSourceA dummy RFSource used for debugging
- Parameters:
default_frequency (artiq.language.types.TFloat)
default_amplitude (artiq.language.types.TFloat)
default_phase (artiq.language.types.TFloat)
freq_limit (tuple)
amp_limit (tuple)
blind (artiq.language.types.TBool)
default_ramp_steps (artiq.language.types.TInt32)
- kernel_invariants¶
- amplitude = 0.0¶
- frequency = 100000000.0¶
- phase = 0.0¶
- default_ramp_steps = 30¶
- blind = False¶
- _prerun()¶
Specify here what should be done for this component before the run starts. In contrast to the _build() method, the _prerun() routine is executed on the core device before the actual experiment starts.
- _prerun_blind()¶
- set_frequency(frequency)¶
- Parameters:
frequency (artiq.language.types.TFloat)
- _check_frequency(frequency)¶
- get_frequency()¶
- Return type:
artiq.language.types.TFloat
- set_amplitude(amplitude)¶
- Parameters:
amplitude (artiq.language.types.TFloat)
- _check_amplitude(amplitude)¶
- Parameters:
amplitude (artiq.language.types.TFloat)
- get_amplitude()¶
- Return type:
artiq.language.types.TFloat
- set_phase(phase)¶
- Parameters:
phase (artiq.language.types.TFloat)
- get_phase()¶
- Return type:
artiq.language.types.TFloat
- set(frequency=float('nan'), amplitude=float('nan'), phase=0.0)¶
Set the frequency and amplitude of the DDS channel
Frequency/amplitude are set to the last known value if
float("nan")is passed (default).- Parameters:
frequency (artiq.language.types.TFloat) -- Frequency in Hz (
nanto use previous value)amplitude (artiq.language.types.TFloat) -- Amplitude (
nanto use previous value)phase (artiq.language.types.TFloat) -- Phase in rad (default 0.0)
- _ramp(duration, frequency_start, frequency_end, amplitude_start, amplitude_end, ramp_timestep=0.0002)¶
This method implements a stupid ramp on an abstract level. This will most likely work but be slow. If your hardware has native support for ramping, please override this function when you inherit from RFSource
- Parameters:
duration (artiq.language.types.TFloat)
frequency_start (artiq.language.types.TFloat)
frequency_end (artiq.language.types.TFloat)
amplitude_start (artiq.language.types.TFloat)
amplitude_end (artiq.language.types.TFloat)
ramp_timestep (artiq.language.types.TFloat)
- ramp(duration, frequency_start=float('nan'), frequency_end=float('nan'), amplitude_start=float('nan'), amplitude_end=float('nan'), ramp_timestep=float('nan'), ramp_steps=-1)¶
Ramp frequency and amplitude over a given duration. Parameters default to
-1ornanto indicate no change. If the start frequency/amplitude is set tonan, the ramp starts from the last frequency/amplitude which was set. This method advances the timeline by ´duration´- Parameters:
duration (artiq.language.types.TFloat) -- ramp duration [s]
frequency_start (artiq.language.types.TFloat) -- initial frequency [Hz]
frequency_end (artiq.language.types.TFloat) -- end frequency [Hz]
amplitude_start (artiq.language.types.TFloat) -- initial amplitude [0..1]
amplitude_end (artiq.language.types.TFloat) -- end amplitude [0..1]
ramp_timesteps -- time between steps in the ramp [s]
ramp_steps (artiq.language.types.TInt32) -- number of steps the whole ramp should have. This takes precedence over ramp_timesteps
ramp_timestep (artiq.language.types.TFloat)
- _arb(duration, samples_amp, samples_freq, samples_phase, repetitions=1, prepare_only=False, run_prepared=False, transform_amp=identity_float, transform_freq=identity_float, transform_phase=identity_float)¶
- Parameters:
duration (artiq.language.types.TFloat)
samples_amp (TList(TFloat))
samples_freq (TList(TFloat))
samples_phase (TList(TFloat))
repetitions (artiq.language.types.TInt32)
prepare_only (artiq.language.types.TBool)
run_prepared (artiq.language.types.TBool)
- arb(duration, samples_amp=[], samples_freq=[], samples_phase=[], repetitions=1, prepare_only=False, run_prepared=False, transform_amp=identity_float, transform_freq=identity_float, transform_phase=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.
Tip
We supports a scheme to prepare the arb function before it is actually used. If that is needed, run this function with
prepapre_only = Truewhen the arb should be prepared and withrun_prepared = Truewhen the prepared arb should be played. In both calls the other parameters have to be passed.- Parameters:
samples_amp (TList(TFloat)) -- List of amplitude samples. If this list is empty (default), the amplitude is not modified.
samples_freq (TList(TFloat)) -- List of frequency samples. If this list is empty (default), the frequency is not modified.
samples_phase (TList(TFloat)) -- List of phase samples. If this list is empty (default), the phase is not modified.
duration (artiq.language.types.TFloat) -- The time in which the whole sequence of samples should be played back [s].
repetitions (artiq.language.types.TInt32) -- Number of times the sequence of all samples should be played. (default 1)
prepare_only (artiq.language.types.TBool) -- Only write the sequence to RAM, don't play it.
run_prepared (artiq.language.types.TBool) -- Play arb sequence previously prepared with
prepare_only.transform_amp -- Function to transform amplitude samples, must take a single argument of type
TFloatand return a singleTFloat.transform_freq -- Function to transform frequency samples (see
transform_amp).transform_phase -- Function to transform phase samples (see
transform_amp).
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- set_parameter(value, channel=None)¶
- Parameters:
value (artiq.language.types.TFloat)
channel (artiq.language.types.TStr)
- class atomiq.components.dummies.DummyDAC(*args, **kwargs)[source]¶
Bases:
atomiq.components.electronics.voltagesource.DACA DAC with multiple channels
- Parameters:
num_chan -- Number of channels the DAC has
- values¶
- set_channel_voltage(channel, voltage)[source]¶
- Parameters:
channel (artiq.language.types.TInt32)
voltage (artiq.language.types.TFloat)
- kernel_invariants¶
- num_chan¶
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- set_parameter(value, channel=None)¶
- Parameters:
value (artiq.language.types.TFloat)
channel (artiq.language.types.TStr)
- class atomiq.components.dummies.DummyActor(*args, **kwargs)[source]¶
Bases:
atomiq.components.primitives.Component,atomiq.components.primitives.ParametrizableAn atomiq Component
Every component in atomiq inherits from this class. It provides basic functionality for automatic and recursive building and initialization of components (prepare, build, prerun). It also takes care for joining kernel invariants along the inheritance tree.
Note
The arguments parent and identifier are automatically passed to the component object by the atomiq object builder.
- Parameters:
parent -- The parent context of the component. Usually this is the experiment that uses the component
identifier -- A unique name to identify the component.
debug_output -- Set whether the component should show debug output. Using this switch rather than the debug kernel logger can allow the compiler to not include the debug commands in the kernel code if the output is not needed.
- amplitude = 0.0¶
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- set_parameter(value, channel=None)¶
- Parameters:
value (artiq.language.types.TFloat)
channel (artiq.language.types.TStr)
- class atomiq.components.dummies.DummyMonitor(dummy_actor, *args, **kwargs)[source]¶
Bases:
atomiq.components.primitives.Component,atomiq.components.primitives.MeasurableAn atomiq Component
Every component in atomiq inherits from this class. It provides basic functionality for automatic and recursive building and initialization of components (prepare, build, prerun). It also takes care for joining kernel invariants along the inheritance tree.
Note
The arguments parent and identifier are automatically passed to the component object by the atomiq object builder.
- Parameters:
parent -- The parent context of the component. Usually this is the experiment that uses the component
identifier -- A unique name to identify the component.
debug_output -- Set whether the component should show debug output. Using this switch rather than the debug kernel logger can allow the compiler to not include the debug commands in the kernel code if the output is not needed.
dummy_actor (DummyActor)
- dummy_actor¶
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- abstractmethod measure(channel='')¶
- Parameters:
channel (artiq.language.types.TStr)
- Return type:
artiq.language.types.TFloat
- measurement_channels()¶
- class atomiq.components.dummies.DummySwitch(channels, *args, **kwargs)[source]¶
Bases:
atomiq.components.primitives.Component,atomiq.components.primitives.SwitchableAn atomiq Component
Every component in atomiq inherits from this class. It provides basic functionality for automatic and recursive building and initialization of components (prepare, build, prerun). It also takes care for joining kernel invariants along the inheritance tree.
Note
The arguments parent and identifier are automatically passed to the component object by the atomiq object builder.
- Parameters:
parent -- The parent context of the component. Usually this is the experiment that uses the component
identifier -- A unique name to identify the component.
debug_output -- Set whether the component should show debug output. Using this switch rather than the debug kernel logger can allow the compiler to not include the debug commands in the kernel code if the output is not needed.
- states¶
- _get_channel_index(channel)[source]¶
- Parameters:
channel (artiq.language.types.TStr)
- Return type:
artiq.language.types.TInt32
- is_on(channel='')[source]¶
- Parameters:
channel (artiq.language.types.TStr)
- Return type:
artiq.language.types.TBool
- experiment¶
- identifier¶
- debug_output = False¶
- core¶
- _kernel_invariants¶
- _prepare_done = False¶
- _build_done = False¶
- _hooks_done = []¶
- children = []¶
- __in_build = True¶
- toggle(channel=None)¶
- Parameters:
channel (artiq.language.types.TStr)
- pulse(pulsetime, channel='')¶
- Parameters:
pulsetime (artiq.language.types.TFloat)
channel (artiq.language.types.TStr)