See also

An IPython notebook version of this tutorial can be downloaded here:

multiplexed_sequencing.ipynb

Multiplexed sequencing

The Pulsar QRM/QCM supports six sequencers. The output of each sequencer is multiplexed, accumulated and connected to the output ports of the instrument as shown in the figure below. Furthermore, input paths 0 and 1 of every sequencer are connected to inputs \(\text{I}^{1}\) and \(\text{I}^{2}\) respectively. In the first part of the tutorial we will connect outputs of multiple sequencers to a single pair of output ports and demonstrate how to multiplex output paths 0 and 1 of these sequencers as well as show how these multiplexed signals are accumulated. In the second part of the tutorial we will demonstrate firstly, how to frequency multiplex the output paths of different sequencers at different unique carrier frequencies on a single pair of output ports and secondly, how to aquire, demodulated and integrate the recieved frequency multiplexed waveforms. In the third part of the tutorial we will demonstrate “real mode”, where we will control various sequencers to independantly output real signals on each output port of the instrument.

We will show this by using a Pulsar QRM and directly connecting outputs \(\text{O}^{[1-2]}\) to inputs \(\text{I}^{[1-2]}\) respectively. We will then use the Pulsar QRM’s sequencers to sequence waveforms on the outputs and simultaneously acquire the resulting waveforms on the inputs.

Setup

First, we are going to import the required packages and connect to the instrument.

[1]:
#Set up the environment.
import pprint
import os
import scipy.signal
import math
import json
import matplotlib.pyplot
import numpy
import time
from scipy.fft import rfft, rfftfreq

from pulsar_qrm.pulsar_qrm import pulsar_qrm

#Close any existing connections to any pulsar_qcm
pulsar_qrm.close_all()

#Connect to the Pulsar QRM at default IP address.
pulsar = pulsar_qrm("qrm", "192.168.0.2")

#Reset the instrument for good measure.
pulsar.reset()
print("Status:")
print(pulsar.get_system_status())
Status:
{'status': 'OKAY', 'flags': []}

Generate waveforms

Next, we need to create the waveforms for the sequence.

[2]:
#Waveforms
waveform_len = 1000
waveforms    = {"gaussian": {"data": scipy.signal.gaussian(waveform_len, std=0.133*waveform_len).tolist(),   "index": 0},
                "sine":     {"data": [math.sin((2*math.pi/waveform_len)*i) for i in range(0, waveform_len)], "index": 1},
                "sawtooth": {"data": [(1.0/waveform_len)*i for i in range(0, waveform_len)],                 "index": 2},
                "block":    {"data": [1.0 for i in range(0, waveform_len)],                                  "index": 3}}

Let’s plot the waveforms to see what we have created.

[3]:
time    = numpy.arange(0, max(map(lambda d: len(d["data"]), waveforms.values())), 1)
fig, ax = matplotlib.pyplot.subplots(1,1, figsize=(10, 10/1.61))

ax.set_ylabel("Waveform primitive amplitude")
ax.set_xlabel("Time (ns)")

for wf, d in waveforms.items():
    ax.plot(time[:len(d["data"])], d["data"], ".-", linewidth=0.5, label=wf)

ax.legend(loc=4)
ax.yaxis.grid()
ax.xaxis.grid()

matplotlib.pyplot.draw()
matplotlib.pyplot.show()   # add this at EOF to prevent execution stall
../_images/tutorials_multiplexed_sequencing_6_0.png

Specify the acquisitions

We will only use a single bin in this tutorial, so we can keep it simple

[4]:
#Acquisitions
acquisitions = {"scope": {"num_bins": 1,"index": 0}}

Create Q1ASM program and upload the sequence

Now that we have the waveform and acquisition specifications for the sequence, we need a simple Q1ASM program that sequences the waveforms and triggers the acquisitions. In this case we will play a gaussian and a sinosoid wave for path 0 and 1 respectively per sequencer.

[5]:
#Number of sequencers per instrument
num_seq = 6

#Program
program = """
wait_sync 4
play      0,1,4
wait      140
acquire   0,0,16380
stop
"""

#Write to file
with open("sequence.json", 'w', encoding='utf-8') as file:
    json.dump({"waveforms": waveforms, "weights": waveforms, "acquisitions": acquisitions, "program": program}, file, indent=4)
    file.close()

#Program sequencers
for seq in range(0, num_seq):
    pulsar.set("sequencer{}_waveforms_and_program".format(seq), "sequence.json")

Multiplexed sequencer output control

The output paths of each sequencer are connected to the instrument’s outputs as shown in the figure below. Path 0 of each sequencer can be connected to output \(\text{O}^{1}\) and \(\text{O}^{3}\) and path 1 to \(\text{O}^{2}\) and \(\text{O}^{4}\) respectively in case of a Pulsar QCM, while path 0 can only be connected to output \(\text{O}^{1}\) and path 1 to output \(\text{O}^{2}\) respectively in case of a Pulsar QRM. In order to connect the sequencer output paths to corresponding output ports, we need to configure the sequencer’s channel map by calling sequencerX_channel_map_pathY_outZ_en where X, Y and Z represents sequencer ID, path ID and output port number respectively.

Capture1.PNG

Now lets configure the first sequencer to output its paths on \(\text{O}^{1}\) and \(\text{O}^{2}\). We will scale the amplitude of the signal such that we are able the show what happens when other sequencers are added and eventually output overflow occurs.

[6]:
#Configure the sequencer to trigger the scope acquisition.
pulsar.scope_acq_sequencer_select(0)
pulsar.scope_acq_trigger_mode_path0("sequencer")
pulsar.scope_acq_trigger_mode_path1("sequencer")

#Configure sequencer
pulsar.sequencer0_sync_en(True)
pulsar.sequencer0_gain_awg_path0(1.1/num_seq) #The output range is 1.0 to -1.0, but we want to show what happens when the signals go out of range.
pulsar.sequencer0_gain_awg_path1(1.1/num_seq)
pulsar.sequencer0_channel_map_path0_out0_en(True)
pulsar.sequencer0_channel_map_path1_out1_en(True)

#Start the sequence
pulsar.arm_sequencer(0)
pulsar.start_sequencer()

#Wait for the sequencer to stop
pulsar.get_sequencer_state(0, 1)
pulsar.get_acquisition_state(0, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_14_0.png

Let’s add the second sequencer.

[7]:
#Configure the sequencer
pulsar.sequencer1_sync_en(True)
pulsar.sequencer1_gain_awg_path0(1.1/num_seq)
pulsar.sequencer1_gain_awg_path1(1.1/num_seq)
pulsar.sequencer1_channel_map_path0_out0_en(True)
pulsar.sequencer1_channel_map_path1_out1_en(True)

#Start the sequencers
for seq in range(0, 2):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 2):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_16_0.png

Let’s add the third sequencer.

[8]:
#Configure the sequencer
pulsar.sequencer2_sync_en(True)
pulsar.sequencer2_gain_awg_path0(1.1/num_seq)
pulsar.sequencer2_gain_awg_path1(1.1/num_seq)
pulsar.sequencer2_channel_map_path0_out0_en(True)
pulsar.sequencer2_channel_map_path1_out1_en(True)

#Start the sequencers
for seq in range(0, 3):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 3):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_18_0.png

Let’s add the fourth sequencer.

[9]:
#Configure the sequencer
pulsar.sequencer3_sync_en(True)
pulsar.sequencer3_gain_awg_path0(1.1/num_seq)
pulsar.sequencer3_gain_awg_path1(1.1/num_seq)
pulsar.sequencer3_channel_map_path0_out0_en(True)
pulsar.sequencer3_channel_map_path1_out1_en(True)

#Start the sequencers
for seq in range(0, 4):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 4):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_20_0.png

Let’s add the fifth sequencer.

[10]:
#Configure the sequencer
pulsar.sequencer4_sync_en(True)
pulsar.sequencer4_gain_awg_path0(1.1/num_seq)
pulsar.sequencer4_gain_awg_path1(1.1/num_seq)
pulsar.sequencer4_channel_map_path0_out0_en(True)
pulsar.sequencer4_channel_map_path1_out1_en(True)

#Start the sequencers
for seq in range(0, 5):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 5):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_22_0.png

Let’s add the sixth sequencer.

[11]:
#Configure the sequencer
pulsar.sequencer5_sync_en(True)
pulsar.sequencer5_gain_awg_path0(1.1/num_seq)
pulsar.sequencer5_gain_awg_path1(1.1/num_seq)
pulsar.sequencer5_channel_map_path0_out0_en(True)
pulsar.sequencer5_channel_map_path1_out1_en(True)

#Start the sequencers
for seq in range(0, 6):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 6):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot the results
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))

ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:waveform_len])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')

matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_24_0.png

Note that now the outputs overflow and the output signal is clipped as intended. Also note that the output range of a Pulsar QRM is 1 Vpp, while it’s input range is 2 Vpp. This causes the signal in the figure to be clipped at 0.5 and -0.5.

Frequency multiplexing

Next, we will show frequency multiplexing. We will connect the outputs of various sequencers to a single output port pair, modulate their waveforms on unique carrier frequencies and in turn acquire, demodulate and integrate the results fed back into the inputs to validate the acquired signals. In this case, for simplicity, we will modulate a square wave pulse on each sequencer and we will play with the output gain. In order to visualise the frequency multiplexing, we will preform an FFT over the acquired scope acquisitions.

[12]:
#Reset
pulsar.reset()

#Program
program = """
      wait_sync 4
loop: play      3,3,4
      wait      140
      acquire   0,0,16380
      stop
"""

#Write to file
with open("sequence.json", 'w', encoding='utf-8') as file:
    json.dump({"waveforms": waveforms, "weights": waveforms, "acquisitions": acquisitions, "program": program}, file, indent=4)
    file.close()

Lets start with a single sequencer with an AWG gain of 1.0 (only on path 0 to create a “real” pulse). Let’s modulate it’s output with a carrier frequency of 20MHz.

[13]:
#Program sequencer
pulsar.sequencer0_waveforms_and_program("sequence.json")

#Configure the channel map
pulsar.sequencer0_channel_map_path0_out0_en(True)
pulsar.sequencer0_channel_map_path1_out1_en(True)

#Configure sequencer
pulsar.sequencer0_sync_en(               True)
pulsar.sequencer0_gain_awg_path0(        1.0)
pulsar.sequencer0_gain_awg_path1(        0.0)
pulsar.sequencer0_nco_freq(              20e6)
pulsar.sequencer0_mod_en_awg(            True)
pulsar.sequencer0_demod_en_acq(          True)
pulsar.sequencer0_integration_length_acq(waveform_len)
[14]:
#Start the sequencer
pulsar.arm_sequencer(0)
pulsar.start_sequencer(0)

#Wait for the sequencer to stop
pulsar.get_sequencer_state(0, 1)
pulsar.get_acquisition_state(0, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

Now lets have a look at the FFT of the scope acquisition to verify the presence of one tone at 20MHz.

[15]:
#Plot the FFT
fig, bx = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))
yf = abs(rfft(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len]))
xf = rfftfreq(1000, 1/1e3)
norm_fact = pulsar.sequencer0_gain_awg_path0() / 2 / numpy.max(yf)
bx.plot(xf[0:100], yf[0:100] * norm_fact)
bx.set_xlabel('Frequency (MHz)')
bx.set_ylabel('Amplitude')
matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_32_0.png

Now let’s have a look at the hardware demodulated and integrated results and check if it matches our expectations. Don’t forget that we need to divide the integration results by the integration length. In this case, the integration length is the same as the waveform length.

[16]:
bins = acq["scope"]["acquisition"]["bins"]
I = bins["integration"]["path0"][0] / waveform_len
Q = bins["integration"]["path1"][0] / waveform_len
print("Integeration results:")
print("I = {}".format(I))
print("Q = {}".format(Q))
print("R = sqrt(I^2 + Q^2) = {}".format(math.sqrt(I**2 + Q**2)))
Integeration results:
I = -0.2546829506595017
Q = -0.43076209086468004
R = sqrt(I^2 + Q^2) = 0.5004192085469352

The pulse acquired at the inputs is automatically demodulated at 20MHz, but due to phase rotation caused by output-to-input latency the result is not purely real. However the amplitude of the IQ vector is 0.5 as expected because: 1Vpp output range / 2Vpp input range = 0.5.

Now lets increase the number of sequencers to three, each with a slightly different AWG gain. We will modulate the signals of sequencer 0 to 2 with a carrier frequencies at 20MHz, 30MHz and 40MHz respectively.

[17]:
num_seq = 3
for seq in range(0, num_seq):
    #Program sequencers
    pulsar.set("sequencer{}_waveforms_and_program".format(seq), "sequence.json")

    #Configure the channel map
    pulsar.set("sequencer{}_channel_map_path0_out0_en".format(seq), True)
    pulsar.set("sequencer{}_channel_map_path1_out1_en".format(seq), True)

    #Configure the sequencers
    pulsar.set("sequencer{}_sync_en".format(seq),                True)
    pulsar.set("sequencer{}_mod_en_awg".format(seq),             True)
    pulsar.set("sequencer{}_demod_en_acq".format(seq),           True)
    pulsar.set("sequencer{}_integration_length_acq".format(seq), waveform_len)

#Set the gains
pulsar.sequencer0_gain_awg_path0(0.5)
pulsar.sequencer0_gain_awg_path1(0.0)
pulsar.sequencer1_gain_awg_path0(0.25)
pulsar.sequencer1_gain_awg_path1(0.0)
pulsar.sequencer2_gain_awg_path0(0.125)
pulsar.sequencer2_gain_awg_path1(0.0)

#Set the frequencies
pulsar.sequencer0_nco_freq(20e6)
pulsar.sequencer1_nco_freq(30e6)
pulsar.sequencer2_nco_freq(40e6)
[18]:
#Start the sequencers
for seq in range(0, 3):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 3):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

Now lets have a look at the FFT of the scope acquisition to verify the presence of three tones at 20MHz, 30Mhz and 40MHz.

[19]:
#Plot the FFT
fig, bx = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))
yf = abs(rfft(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len]))
xf = rfftfreq(1000, 1/1e3)
bx.plot(xf[0:100], yf[0:100] * norm_fact)
bx.set_xlabel('Frequency (MHz)')
bx.set_ylabel('Amplitude')
matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_39_0.png

Now let’s check if the hardware demodulated and integrated results match our expectations.

[20]:
for seq in range(0, num_seq):
    pulsar.store_scope_acquisition(seq, "scope")
    acq = pulsar.get_acquisitions(seq)
    bins = acq["scope"]["acquisition"]["bins"]
    I = bins["integration"]["path0"][0] / waveform_len
    Q = bins["integration"]["path1"][0] / waveform_len
    print("Sequencer {}".format(seq))
    print("Integeration results:")
    print("I = {}".format(I))
    print("Q = {}".format(Q))
    print("R = sqrt(I^2 + Q^2) = {}".format(math.sqrt(I**2 + Q**2)))
    print('---------------------------------------------------------------------------------')
Sequencer 0
Integeration results:
I = -0.12673375671714704
Q = -0.2132364435759648
R = sqrt(I^2 + Q^2) = 0.2480548849762218
---------------------------------------------------------------------------------
Sequencer 1
Integeration results:
I = -0.11703566194430874
Q = 0.0034416218856863703
R = sqrt(I^2 + Q^2) = 0.11708625422288713
---------------------------------------------------------------------------------
Sequencer 2
Integeration results:
I = -0.03645627747923791
Q = 0.048966780654616515
R = sqrt(I^2 + Q^2) = 0.06104756977407467
---------------------------------------------------------------------------------

Again, the acquired signals on the input are automatically demodulated at 20MHz, 30MHz and 40MHz and we see that the amplitude of the IQ vectors match the gain values we set divided by two, which matches our expectations.

Now, let’s try it one final time with six sequencers, each with 0.15 AWG gain. We will modulate the outputs of sequencer 0 to 5 with carrier frequencies at 20MHz, 30Mhz, 40MHz, 50MHz, 60MHz and 70MHz respectivey.

[21]:
num_seq = 6
for seq in range(0, num_seq):
    #Program sequencers
    pulsar.set("sequencer{}_waveforms_and_program".format(seq), "sequence.json")

    #Configure the channel map
    pulsar.set("sequencer{}_channel_map_path0_out0_en".format(seq), True)
    pulsar.set("sequencer{}_channel_map_path1_out1_en".format(seq), True)

    #Configure the sequencers
    pulsar.set("sequencer{}_sync_en".format(seq),                True)
    pulsar.set("sequencer{}_gain_awg_path0".format(seq),         0.15)
    pulsar.set("sequencer{}_gain_awg_path1".format(seq),         0.0)
    pulsar.set("sequencer{}_mod_en_awg".format(seq),             True)
    pulsar.set("sequencer{}_demod_en_acq".format(seq),           True)
    pulsar.set("sequencer{}_integration_length_acq".format(seq), waveform_len)

#Set the frequencies
pulsar.sequencer0_nco_freq(20e6)
pulsar.sequencer1_nco_freq(30e6)
pulsar.sequencer2_nco_freq(40e6)
pulsar.sequencer3_nco_freq(50e6)
pulsar.sequencer4_nco_freq(60e6)
pulsar.sequencer5_nco_freq(70e6)
[22]:
#Start the sequencers
for seq in range(0, 6):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop
for seq in range(0, 6):
    pulsar.get_sequencer_state(seq, 1)
    pulsar.get_acquisition_state(seq, 1)

#Get acquisition data
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

Now lets have a look at the FFT of the scope acquisition to verify the presence of six tones at 20MHz, 30Mhz, 40MHz, 50MHz, 60MHz and 70MHz

[23]:
#Plot the FFT
fig, bx = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))
yf = abs(rfft(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:waveform_len]))
xf = rfftfreq(1000, 1/1e3)
bx.plot(xf[0:100], yf[0:100] * norm_fact)
bx.set_xlabel('Frequency (MHz)')
bx.set_ylabel('Amplitude')
matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_46_0.png

Note that we lose a little bit of power over the frequency range, but that is to be expected due to frequency dependant components in the output and input path. Now let’s check if the hardware demodulated and integrated results match our expectations.

[24]:
for seq in range(0, num_seq):
    pulsar.store_scope_acquisition(seq, "scope")
    acq = pulsar.get_acquisitions(seq)
    bins = acq["scope"]["acquisition"]["bins"]
    I = bins["integration"]["path0"][0] / waveform_len
    Q = bins["integration"]["path1"][0] / waveform_len
    print("Sequencer {}".format(seq))
    print("Integeration results:")
    print("I = {}".format(I))
    print("Q = {}".format(Q))
    print("R = sqrt(I^2 + Q^2) = {}".format(math.sqrt(I**2 + Q**2)))
    print('---------------------------------------------------------------------------------')
Sequencer 0
Integeration results:
I = -0.03706595017098193
Q = -0.06302051783097215
R = sqrt(I^2 + Q^2) = 0.07311272344648087
---------------------------------------------------------------------------------
Sequencer 1
Integeration results:
I = -0.07295554469956034
Q = -0.0015828041035661944
R = sqrt(I^2 + Q^2) = 0.07297271251118333
---------------------------------------------------------------------------------
Sequencer 2
Integeration results:
I = -0.03570884220810943
Q = 0.062115779189057155
R = sqrt(I^2 + Q^2) = 0.07164838753319829
---------------------------------------------------------------------------------
Sequencer 3
Integeration results:
I = 0.03521397166585247
Q = 0.059133365901319006
R = sqrt(I^2 + Q^2) = 0.06882425999095622
---------------------------------------------------------------------------------
Sequencer 4
Integeration results:
I = 0.06709281875915975
Q = -0.002564240351734245
R = sqrt(I^2 + Q^2) = 0.06714180260933512
---------------------------------------------------------------------------------
Sequencer 5
Integeration results:
I = 0.035110405471421594
Q = -0.05270542256961407
R = sqrt(I^2 + Q^2) = 0.06332931501768525
---------------------------------------------------------------------------------

Taking the power loss over frequency into account, the amplitudes of the IQ vectors match our expectations again.

Real mode

Many applications require multiple outputs to be controlled independantly and only output real signals instead of a modulated IQ pair. To achieve this we will connect one sequencer to each output and only use path 0 to control an even numbered output and path 1 to control an odd numbered output. To demonstrate this, we will simply output an independantly timed sine on output \(\text{O}^{1}\) and a sawtooth on output \(\text{O}^{2}\), which we will then acquire on the inputs.

Lets create a Q1ASM program to sequence the waveforms for sequencer 0.

[25]:
#Reset
pulsar.reset()

#Program
program = """
wait_sync 4
play      1,1,4
wait      140
acquire   0,0,16380
stop
"""

#Write to file
with open("sequence0.json", 'w', encoding='utf-8') as file:
    json.dump({"waveforms": waveforms, "weights": waveforms, "acquisitions": acquisitions, "program": program}, file, indent=4)
    file.close()

Lets create a Q1ASM program to sequence the waveforms for sequencer 1.

[26]:
#Program
program = """
wait_sync 4
wait      500
play      2,2,1000
stop
"""

#Write to file
with open("sequence1.json", 'w', encoding='utf-8') as file:
    json.dump({"waveforms": waveforms, "weights": waveforms, "acquisitions": acquisitions, "program": program}, file, indent=4)
    file.close()

Let’s configure both sequencers and connect them to their respective outputs.

[27]:
#Configure scope mode
pulsar.scope_acq_sequencer_select(0)
pulsar.scope_acq_trigger_mode_path0("sequencer")
pulsar.scope_acq_trigger_mode_path1("sequencer")

#Program sequencer
num_seq = 2
for seq in range(0, num_seq):
    pulsar.set("sequencer{}_waveforms_and_program".format(seq), "sequence{}.json".format(seq))

#Configure the channel map
pulsar.sequencer0_channel_map_path0_out0_en(True)
pulsar.sequencer1_channel_map_path1_out1_en(True)

#Configure sequencer
for seq in range(0, num_seq):
    pulsar.set("sequencer{}_sync_en".format(seq),    True)
    pulsar.set("sequencer{}_mod_en_awg".format(seq), False)

pulsar.sequencer0_gain_awg_path1(0.0) #Disable sequencer 0 path 1, because we will not use it.
pulsar.sequencer1_gain_awg_path0(0.0) #Disable sequencer 1 path 0, because we will not use it.

Now, let start the sequencers and visualise the resulting sequence.

[28]:
#Start sequencers
for seq in range(0, num_seq):
    pulsar.arm_sequencer(seq)
pulsar.start_sequencer()

#Wait for sequencers to stop (only sequencer 0 will acquire)
for seq in range(0, num_seq):
    pulsar.get_sequencer_state(seq, 1)
pulsar.get_acquisition_state(0, 1)

#Get acquisition
pulsar.store_scope_acquisition(0, "scope")
acq = pulsar.get_acquisitions(0)

#Plot result
fig, ax = matplotlib.pyplot.subplots(1, 1, figsize=(15, 15/2/1.61))
ax.plot(acq["scope"]["acquisition"]["scope"]["path0"]["data"][0:2000])
ax.plot(acq["scope"]["acquisition"]["scope"]["path1"]["data"][0:2000])
ax.set_xlabel('Time (ns)')
ax.set_ylabel('Relative amplitude')
matplotlib.pyplot.show()
../_images/tutorials_multiplexed_sequencing_57_0.png

As expected, we see a sine and sawtooth that are independantly sequenced on the outputs.

Stop

[29]:
#Print an overview of the instrument parameters.
print("Snapshot:")
pulsar.print_readable_snapshot(update=True)

#Close the instrument connection.
pulsar.close()
Snapshot:
qrm:
        parameter                                  value
--------------------------------------------------------------------------------
IDN                                         :   {'manufacturer': 'Qblox', 'mode...
in0_gain                                    :   -6 (dB)
in1_gain                                    :   -6 (dB)
out0_offset                                 :   0 (V)
out1_offset                                 :   0 (V)
reference_source                            :   internal
scope_acq_avg_mode_en_path0                 :   False
scope_acq_avg_mode_en_path1                 :   False
scope_acq_sequencer_select                  :   0
scope_acq_trigger_level_path0               :   0
scope_acq_trigger_level_path1               :   0
scope_acq_trigger_mode_path0                :   sequencer
scope_acq_trigger_mode_path1                :   sequencer
sequencer0_channel_map_path0_out0_en        :   True
sequencer0_channel_map_path1_out1_en        :   True
sequencer0_cont_mode_en_awg_path0           :   False
sequencer0_cont_mode_en_awg_path1           :   False
sequencer0_cont_mode_waveform_idx_awg_path0 :   0
sequencer0_cont_mode_waveform_idx_awg_path1 :   0
sequencer0_demod_en_acq                     :   False
sequencer0_discretization_threshold_acq     :   0
sequencer0_gain_awg_path0                   :   1
sequencer0_gain_awg_path1                   :   0
sequencer0_integration_length_acq           :   1024
sequencer0_marker_ovr_en                    :   False
sequencer0_marker_ovr_value                 :   0
sequencer0_mixer_corr_gain_ratio            :   1
sequencer0_mixer_corr_phase_offset_degree   :   -0
sequencer0_mod_en_awg                       :   False
sequencer0_nco_freq                         :   0 (Hz)
sequencer0_nco_phase_offs                   :   0 (Degrees)
sequencer0_offset_awg_path0                 :   0
sequencer0_offset_awg_path1                 :   0
sequencer0_phase_rotation_acq               :   0 (Degrees)
sequencer0_sync_en                          :   True
sequencer0_upsample_rate_awg_path0          :   0
sequencer0_upsample_rate_awg_path1          :   0
sequencer0_waveforms_and_program            :   sequence0.json
sequencer1_channel_map_path0_out0_en        :   True
sequencer1_channel_map_path1_out1_en        :   True
sequencer1_cont_mode_en_awg_path0           :   False
sequencer1_cont_mode_en_awg_path1           :   False
sequencer1_cont_mode_waveform_idx_awg_path0 :   0
sequencer1_cont_mode_waveform_idx_awg_path1 :   0
sequencer1_demod_en_acq                     :   False
sequencer1_discretization_threshold_acq     :   0
sequencer1_gain_awg_path0                   :   0
sequencer1_gain_awg_path1                   :   1
sequencer1_integration_length_acq           :   1024
sequencer1_marker_ovr_en                    :   False
sequencer1_marker_ovr_value                 :   0
sequencer1_mixer_corr_gain_ratio            :   1
sequencer1_mixer_corr_phase_offset_degree   :   -0
sequencer1_mod_en_awg                       :   False
sequencer1_nco_freq                         :   0 (Hz)
sequencer1_nco_phase_offs                   :   0 (Degrees)
sequencer1_offset_awg_path0                 :   0
sequencer1_offset_awg_path1                 :   0
sequencer1_phase_rotation_acq               :   0 (Degrees)
sequencer1_sync_en                          :   True
sequencer1_upsample_rate_awg_path0          :   0
sequencer1_upsample_rate_awg_path1          :   0
sequencer1_waveforms_and_program            :   sequence1.json
sequencer2_channel_map_path0_out0_en        :   True
sequencer2_channel_map_path1_out1_en        :   True
sequencer2_cont_mode_en_awg_path0           :   False
sequencer2_cont_mode_en_awg_path1           :   False
sequencer2_cont_mode_waveform_idx_awg_path0 :   0
sequencer2_cont_mode_waveform_idx_awg_path1 :   0
sequencer2_demod_en_acq                     :   False
sequencer2_discretization_threshold_acq     :   0
sequencer2_gain_awg_path0                   :   1
sequencer2_gain_awg_path1                   :   1
sequencer2_integration_length_acq           :   1024
sequencer2_marker_ovr_en                    :   False
sequencer2_marker_ovr_value                 :   0
sequencer2_mixer_corr_gain_ratio            :   1
sequencer2_mixer_corr_phase_offset_degree   :   -0
sequencer2_mod_en_awg                       :   False
sequencer2_nco_freq                         :   0 (Hz)
sequencer2_nco_phase_offs                   :   0 (Degrees)
sequencer2_offset_awg_path0                 :   0
sequencer2_offset_awg_path1                 :   0
sequencer2_phase_rotation_acq               :   0 (Degrees)
sequencer2_sync_en                          :   False
sequencer2_upsample_rate_awg_path0          :   0
sequencer2_upsample_rate_awg_path1          :   0
sequencer2_waveforms_and_program            :   sequence.json
sequencer3_channel_map_path0_out0_en        :   True
sequencer3_channel_map_path1_out1_en        :   True
sequencer3_cont_mode_en_awg_path0           :   False
sequencer3_cont_mode_en_awg_path1           :   False
sequencer3_cont_mode_waveform_idx_awg_path0 :   0
sequencer3_cont_mode_waveform_idx_awg_path1 :   0
sequencer3_demod_en_acq                     :   False
sequencer3_discretization_threshold_acq     :   0
sequencer3_gain_awg_path0                   :   1
sequencer3_gain_awg_path1                   :   1
sequencer3_integration_length_acq           :   1024
sequencer3_marker_ovr_en                    :   False
sequencer3_marker_ovr_value                 :   0
sequencer3_mixer_corr_gain_ratio            :   1
sequencer3_mixer_corr_phase_offset_degree   :   -0
sequencer3_mod_en_awg                       :   False
sequencer3_nco_freq                         :   0 (Hz)
sequencer3_nco_phase_offs                   :   0 (Degrees)
sequencer3_offset_awg_path0                 :   0
sequencer3_offset_awg_path1                 :   0
sequencer3_phase_rotation_acq               :   0 (Degrees)
sequencer3_sync_en                          :   False
sequencer3_upsample_rate_awg_path0          :   0
sequencer3_upsample_rate_awg_path1          :   0
sequencer3_waveforms_and_program            :   sequence.json
sequencer4_channel_map_path0_out0_en        :   True
sequencer4_channel_map_path1_out1_en        :   True
sequencer4_cont_mode_en_awg_path0           :   False
sequencer4_cont_mode_en_awg_path1           :   False
sequencer4_cont_mode_waveform_idx_awg_path0 :   0
sequencer4_cont_mode_waveform_idx_awg_path1 :   0
sequencer4_demod_en_acq                     :   False
sequencer4_discretization_threshold_acq     :   0
sequencer4_gain_awg_path0                   :   1
sequencer4_gain_awg_path1                   :   1
sequencer4_integration_length_acq           :   1024
sequencer4_marker_ovr_en                    :   False
sequencer4_marker_ovr_value                 :   0
sequencer4_mixer_corr_gain_ratio            :   1
sequencer4_mixer_corr_phase_offset_degree   :   -0
sequencer4_mod_en_awg                       :   False
sequencer4_nco_freq                         :   0 (Hz)
sequencer4_nco_phase_offs                   :   0 (Degrees)
sequencer4_offset_awg_path0                 :   0
sequencer4_offset_awg_path1                 :   0
sequencer4_phase_rotation_acq               :   0 (Degrees)
sequencer4_sync_en                          :   False
sequencer4_upsample_rate_awg_path0          :   0
sequencer4_upsample_rate_awg_path1          :   0
sequencer4_waveforms_and_program            :   sequence.json
sequencer5_channel_map_path0_out0_en        :   True
sequencer5_channel_map_path1_out1_en        :   True
sequencer5_cont_mode_en_awg_path0           :   False
sequencer5_cont_mode_en_awg_path1           :   False
sequencer5_cont_mode_waveform_idx_awg_path0 :   0
sequencer5_cont_mode_waveform_idx_awg_path1 :   0
sequencer5_demod_en_acq                     :   False
sequencer5_discretization_threshold_acq     :   0
sequencer5_gain_awg_path0                   :   1
sequencer5_gain_awg_path1                   :   1
sequencer5_integration_length_acq           :   1024
sequencer5_marker_ovr_en                    :   False
sequencer5_marker_ovr_value                 :   0
sequencer5_mixer_corr_gain_ratio            :   1
sequencer5_mixer_corr_phase_offset_degree   :   -0
sequencer5_mod_en_awg                       :   False
sequencer5_nco_freq                         :   0 (Hz)
sequencer5_nco_phase_offs                   :   0 (Degrees)
sequencer5_offset_awg_path0                 :   0
sequencer5_offset_awg_path1                 :   0
sequencer5_phase_rotation_acq               :   0 (Degrees)
sequencer5_sync_en                          :   False
sequencer5_upsample_rate_awg_path0          :   0
sequencer5_upsample_rate_awg_path1          :   0
sequencer5_waveforms_and_program            :   sequence.json