num_ports
, num_ports))
self.add_function('display_single_window',
call_cmd='DISP:LAY GRID;:DISP:LAY:GRID 1,1')
+
self.add_function('display_dual_window',
+
call_cmd='DISP:LAY GRID;:DISP:LAY:GRID 2,1')
self.add_function('rf_off', call_cmd='OUTP1 OFF')
self.add_function('rf_on', call_cmd='OUTP1 ON')
+
self.reset()
self.clear_channels()
-
channels = ChannelList(self, "VNAChannels", ZNBChannel,
+
channels = ChannelList(self, "VNAChannels", self.CHANNEL_CLASS,
snapshotable=True)
self.add_submodule("channels", channels)
if init_s_params:
-
n = 1
for i in range(1, num_ports + 1):
for j in range(1, num_ports + 1):
ch_name = 'S' + str(i) + str(j)
self.add_channel(ch_name)
-
n += 1
self.channels.lock()
-
-
self.initialise()
-
self.connect_message()
-
-
if init_s_params:
self.display_sij_split()
self.channels.autoscale()
+
self.update_display_on()
+
self.rf_off()
+
self.connect_message()
+
[docs] def display_grid(self, rows: int, cols: int):
"""
Display a grid of channels rows by cols
"""
self.write('DISP:LAY GRID;:DISP:LAY:GRID {},{}'.format(rows, cols))
-
[docs] def add_channel(self, vna_parameter: str):
-
n_channels = len(self.channels)
-
channel = ZNBChannel(self, vna_parameter, n_channels + 1)
+
[docs] def add_channel(self, channel_name: str, **kwargs):
+
i_channel = len(self.channels) + 1
+
channel = self.CHANNEL_CLASS(self, channel_name, i_channel, **kwargs)
self.channels.append(channel)
-
if n_channels == 0:
+
if i_channel == 1:
self.display_single_window()
-
-
def _set_default_values(self):
-
for channel in self.channels:
-
channel.start(1e6)
-
channel.stop(2e6)
-
channel.npts(10)
-
channel.power(-50)
-
-
[docs] def initialise(self):
-
for n in range(1, len(self.channels)):
-
self.write('SENS{}:SWE:TYPE LIN'.format(n))
-
self.write('SENS{}:SWE:TIME:AUTO ON'.format(n))
-
self.write('TRIG{}:SEQ:SOUR IMM'.format(n))
-
self.write('SENS{}:AVER:STAT ON'.format(n))
-
self.update_display_on()
-
self._set_default_values()
-
self.rf_off()
+
if i_channel == 2:
+
self.display_dual_window()
+
# shortcut
+
setattr(self, channel_name, channel)
+
# initialising channel
+
self.write('SENS{}:SWE:TYPE LIN'.format(i_channel))
+
self.write('SENS{}:SWE:TIME:AUTO ON'.format(i_channel))
+
self.write('TRIG{}:SEQ:SOUR IMM'.format(i_channel))
+
self.write('SENS{}:AVER:STAT ON'.format(i_channel))
[docs] def clear_channels(self):
"""
diff --git a/api/generated/qcodes.instrument_drivers.rohde_schwarz.html b/api/generated/qcodes.instrument_drivers.rohde_schwarz.html
index 10ef0b739d1..21aaf253a0a 100644
--- a/api/generated/qcodes.instrument_drivers.rohde_schwarz.html
+++ b/api/generated/qcodes.instrument_drivers.rohde_schwarz.html
@@ -759,13 +759,13 @@
Submodules
executes a sweep and returns magnitude and phase arrays
--
-
get
()[source]
+-
+
get_raw
()[source]
@@ -779,52 +779,15 @@ Submodules[source]
Bases: qcodes.instrument.parameter.MultiParameter
-Hardware controlled parameter class for Rohde Schwarz ZNB trace.
-Instrument returns an list of transmission data in the form of a list of
-complex numbers taken from a frequency sweep.
-This is a multiparameter containing both amplitude and phase
-
-
-
-
-Parameters: |
-- name – parameter name
-- instrument – instrument the parameter belongs to
-- start – starting frequency of sweep
-- stop – ending frequency of sweep
-- npts – number of points in frequency sweep
-
- |
-
-
-
+Sweep that return magnitude and phase.
--
-
set_sweep
(start, stop, npts)[source]
-sets the shapes and
-setpoint arrays of the parameter to correspond with the sweep
-
-
-
--
-
get
()[source]
-executes a sweep and returns magnitude and phase arrays
-
-
-
-
Todo
-
-- ability to choose for linear or db in magnitude return
-
-
-
--
-
get
()[source]
+-
+
get_raw
()[source]
--
-
set_sweep
(start, stop, npts)[source]
+-
+
set_sweep
(start, stop, npts)[source]
@@ -854,9 +817,15 @@ Submodules
diff --git a/genindex.html b/genindex.html
index 72fc99bc46a..0f29e4e342c 100644
--- a/genindex.html
+++ b/genindex.html
@@ -391,6 +391,8 @@
C
ChannelBuffer (class in qcodes.instrument_drivers.stanford_research.SR830)
@@ -722,9 +724,7 @@ G
(qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray method)
-
(qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep method), [1]
-
-
(qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase method), [1]
+ (qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep method)
(qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter method)
@@ -839,6 +839,10 @@
G
(qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace method)
(qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace method)
+
+
(qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep method)
+
+
(qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase method)
(qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout method)
@@ -943,12 +947,10 @@
I
initialisation() (qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B method)
-
initialise() (qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB method)
+ Instrument (class in qcodes)
- - Instrument (class in qcodes)
-
- InstrumentChannel (class in qcodes)
- invalidate_trace() (qcodes.instrument_drivers.HP.HP8753D.HP8753D method)
@@ -1856,7 +1858,7 @@
S
- set_sweep() (qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep method), [1]
- set_to_fast() (qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200 method)
diff --git a/objects.inv b/objects.inv
index ad98f1d29c0..02832311480 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/searchindex.js b/searchindex.js
index d2fb6059084..e8ce3546c1a 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Creating Simulated PyVISA Instruments","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Parameters","_notebooks/The Location Formatter","_notebooks/The Snapshot","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get","_notebooks/benchmarking/Benchmark of waveform upload to AWG70002A","_notebooks/benchmarking/Benchmark of waveform upload to Tektronix AWG5014C","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","_notebooks/driver_examples/Qcodes_example_with_AMI430","_notebooks/driver_examples/Qcodes_example_with_HP8753D","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope","api/generated/qcodes.ArrayParameter","api/generated/qcodes.BreakIf","api/generated/qcodes.ChannelList","api/generated/qcodes.CombinedParameter","api/generated/qcodes.Config","api/generated/qcodes.DataArray","api/generated/qcodes.DataSet","api/generated/qcodes.DiskIO","api/generated/qcodes.FormatLocation","api/generated/qcodes.Formatter","api/generated/qcodes.Function","api/generated/qcodes.GNUPlotFormat","api/generated/qcodes.IPInstrument","api/generated/qcodes.Instrument","api/generated/qcodes.InstrumentChannel","api/generated/qcodes.Loop","api/generated/qcodes.ManualParameter","api/generated/qcodes.MultiParameter","api/generated/qcodes.Parameter","api/generated/qcodes.StandardParameter","api/generated/qcodes.SweepFixedValues","api/generated/qcodes.SweepValues","api/generated/qcodes.Task","api/generated/qcodes.VisaInstrument","api/generated/qcodes.Wait","api/generated/qcodes.combine","api/generated/qcodes.instrument_drivers","api/generated/qcodes.instrument_drivers.Advantech","api/generated/qcodes.instrument_drivers.AlazarTech","api/generated/qcodes.instrument_drivers.HP","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.Lakeshore","api/generated/qcodes.instrument_drivers.Minicircuits","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/0.1.9","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Creating Simulated PyVISA Instruments.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Parameters.rst","_notebooks/The Location Formatter.rst","_notebooks/The Snapshot.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.rst","_notebooks/benchmarking/Benchmark of waveform upload to AWG70002A.rst","_notebooks/benchmarking/Benchmark of waveform upload to Tektronix AWG5014C.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.rst","_notebooks/driver_examples/Qcodes_example_with_AMI430.rst","_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst","api/generated/qcodes.ArrayParameter.rst","api/generated/qcodes.BreakIf.rst","api/generated/qcodes.ChannelList.rst","api/generated/qcodes.CombinedParameter.rst","api/generated/qcodes.Config.rst","api/generated/qcodes.DataArray.rst","api/generated/qcodes.DataSet.rst","api/generated/qcodes.DiskIO.rst","api/generated/qcodes.FormatLocation.rst","api/generated/qcodes.Formatter.rst","api/generated/qcodes.Function.rst","api/generated/qcodes.GNUPlotFormat.rst","api/generated/qcodes.IPInstrument.rst","api/generated/qcodes.Instrument.rst","api/generated/qcodes.InstrumentChannel.rst","api/generated/qcodes.Loop.rst","api/generated/qcodes.ManualParameter.rst","api/generated/qcodes.MultiParameter.rst","api/generated/qcodes.Parameter.rst","api/generated/qcodes.StandardParameter.rst","api/generated/qcodes.SweepFixedValues.rst","api/generated/qcodes.SweepValues.rst","api/generated/qcodes.Task.rst","api/generated/qcodes.VisaInstrument.rst","api/generated/qcodes.Wait.rst","api/generated/qcodes.combine.rst","api/generated/qcodes.instrument_drivers.rst","api/generated/qcodes.instrument_drivers.Advantech.rst","api/generated/qcodes.instrument_drivers.AlazarTech.rst","api/generated/qcodes.instrument_drivers.HP.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.rst","api/generated/qcodes.instrument_drivers.Lakeshore.rst","api/generated/qcodes.instrument_drivers.Minicircuits.rst","api/generated/qcodes.instrument_drivers.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/0.1.9.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[40,1,1,""]},"qcodes.BreakIf":{__init__:[41,1,1,""]},"qcodes.ChannelList":{__init__:[42,1,1,""]},"qcodes.CombinedParameter":{__init__:[43,1,1,""]},"qcodes.Config":{__init__:[44,1,1,""],config_file_name:[44,2,1,""],current_config:[44,2,1,""],current_config_path:[44,2,1,""],current_schema:[44,2,1,""],cwd_file_name:[44,2,1,""],default_file_name:[44,2,1,""],env_file_name:[44,2,1,""],home_file_name:[44,2,1,""],schema_cwd_file_name:[44,2,1,""],schema_default_file_name:[44,2,1,""],schema_env_file_name:[44,2,1,""],schema_file_name:[44,2,1,""],schema_home_file_name:[44,2,1,""]},"qcodes.DataArray":{__init__:[45,1,1,""]},"qcodes.DataSet":{__init__:[46,1,1,""],background_functions:[46,2,1,""]},"qcodes.DiskIO":{__init__:[47,1,1,""]},"qcodes.FormatLocation":{__init__:[48,1,1,""]},"qcodes.Formatter":{__init__:[49,1,1,""]},"qcodes.Function":{__init__:[50,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[51,1,1,""]},"qcodes.IPInstrument":{__init__:[52,1,1,""]},"qcodes.Instrument":{__init__:[53,1,1,""],functions:[53,2,1,""],name:[53,2,1,""],parameters:[53,2,1,""],submodules:[53,2,1,""]},"qcodes.InstrumentChannel":{__init__:[54,1,1,""],functions:[54,2,1,""],name:[54,2,1,""],parameters:[54,2,1,""]},"qcodes.Loop":{__init__:[55,1,1,""]},"qcodes.ManualParameter":{__init__:[56,1,1,""]},"qcodes.MultiParameter":{__init__:[57,1,1,""]},"qcodes.Parameter":{__init__:[58,1,1,""]},"qcodes.StandardParameter":{__init__:[59,1,1,""]},"qcodes.SweepFixedValues":{__init__:[60,1,1,""]},"qcodes.SweepValues":{__init__:[61,1,1,""]},"qcodes.Task":{__init__:[62,1,1,""]},"qcodes.VisaInstrument":{__init__:[63,1,1,""],visa_handle:[63,2,1,""]},"qcodes.Wait":{__init__:[64,1,1,""]},"qcodes.instrument_drivers":{Advantech:[67,4,0,"-"],AlazarTech:[68,4,0,"-"],HP:[69,4,0,"-"],Harvard:[70,4,0,"-"],Keysight:[71,4,0,"-"],Lakeshore:[72,4,0,"-"],Minicircuits:[73,4,0,"-"],QDev:[74,4,0,"-"],QuTech:[75,4,0,"-"],Spectrum:[76,4,0,"-"],ZI:[78,4,0,"-"],agilent:[79,4,0,"-"],american_magnetics:[80,4,0,"-"],devices:[66,4,0,"-"],ithaco:[81,4,0,"-"],oxford:[82,4,0,"-"],rigol:[83,4,0,"-"],rohde_schwarz:[84,4,0,"-"],signal_hound:[85,4,0,"-"],stanford_research:[86,4,0,"-"],tektronix:[87,4,0,"-"],test:[66,4,0,"-"],weinschel:[88,4,0,"-"],yokogawa:[89,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[67,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[67,0,1,""],DAQNaviException:[67,5,1,""],DAQNaviWarning:[67,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[67,2,1,""],check:[67,1,1,""],close:[67,1,1,""],get_idn:[67,1,1,""],port_count:[67,1,1,""],read_pin:[67,1,1,""],read_port:[67,1,1,""],write_pin:[67,1,1,""],write_port:[67,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[68,4,0,"-"],ATS:[68,4,0,"-"],ATS_acquisition_controllers:[68,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[68,0,1,""],AlazarParameter:[68,0,1,""],AlazarTech_ATS:[68,0,1,""],Buffer:[68,0,1,""],TrivialDictionary:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[68,2,1,""],handle_buffer:[68,1,1,""],post_acquire:[68,1,1,""],pre_acquire:[68,1,1,""],pre_start_capture:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[68,1,1,""],channels:[68,2,1,""],clear_buffers:[68,1,1,""],config:[68,1,1,""],dll_path:[68,2,1,""],find_boards:[68,6,1,""],get_board_info:[68,6,1,""],get_idn:[68,1,1,""],get_sample_rate:[68,1,1,""],signal_to_volt:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[68,1,1,""],free_mem:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[68,1,1,""],fit:[68,1,1,""],handle_buffer:[68,1,1,""],post_acquire:[68,1,1,""],pre_acquire:[68,1,1,""],pre_start_capture:[68,1,1,""],update_acquisitionkwargs:[68,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[69,4,0,"-"],HP8753D:[69,4,0,"-"],HP_83650A:[69,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[69,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[69,0,1,""],HP8753DTrace:[69,0,1,""],HPIntParser:[69,3,1,""],TraceNotReady:[69,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[69,1,1,""],reset:[69,1,1,""],run_N_times:[69,1,1,""],run_continously:[69,1,1,""],startup:[69,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[69,1,1,""],prepare_trace:[69,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[69,0,1,""],parsestr:[69,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[69,1,1,""],print_modstatus:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[70,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[70,5,1,""],DacChannel:[70,0,1,""],DacReader:[70,0,1,""],DacSlot:[70,0,1,""],Decadac:[70,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[70,2,1,""],ask:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[70,2,1,""],DAC_SLOT_CLASS:[70,2,1,""],__repr__:[70,1,1,""],_ramp_state:[70,2,1,""],_ramp_time:[70,2,1,""],connect_message:[70,1,1,""],get_idn:[70,1,1,""],ramp_all:[70,1,1,""],set_all:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[71,4,0,"-"],KeysightAgilent_33XXX:[71,4,0,"-"],Keysight_33500B:[71,4,0,"-"],Keysight_33500B_channels:[71,4,0,"-"],Keysight_34465A:[71,4,0,"-"],Keysight_E8267D:[71,4,0,"-"],M3201A:[71,4,0,"-"],M3300A:[71,4,0,"-"],N51x1:[71,4,0,"-"],test_suite:[71,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[71,0,1,""],InfiniiumChannel:[71,0,1,""],RawTrace:[71,0,1,""],TraceNotReady:[71,5,1,""],TraceSetPointsChanged:[71,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[71,1,1,""],prepare_curvedata:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[71,0,1,""],SyncChannel:[71,0,1,""],WaveformGenerator_33XXX:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[71,0,1,""],Keysight_33500B_Channels:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[71,0,1,""],Keysight_34465A:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[71,1,1,""],prepare:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[71,2,1,""],flush_error_queue:[71,1,1,""],model:[71,2,1,""],ranges:[71,2,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[71,0,1,""],parse_on_off:[71,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[71,1,1,""],on:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[71,0,1,""],M3300A_DIG:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[71,0,1,""],TestKeysight_M3300A:[71,0,1,""],TestSD_Module:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_PXI_trigger:[71,1,1,""],test_channel_amplitude:[71,1,1,""],test_channel_frequency:[71,1,1,""],test_channel_offset:[71,1,1,""],test_channel_phase:[71,1,1,""],test_channel_wave_shape:[71,1,1,""],test_chassis_and_slot:[71,1,1,""],test_chassis_number:[71,1,1,""],test_clock_frequency:[71,1,1,""],test_open_close:[71,1,1,""],test_serial_number:[71,1,1,""],test_slot_number:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_PXI_trigger:[71,1,1,""],test_channel_amplitude:[71,1,1,""],test_channel_frequency:[71,1,1,""],test_channel_offset:[71,1,1,""],test_channel_phase:[71,1,1,""],test_channel_wave_shape:[71,1,1,""],test_chassis_and_slot:[71,1,1,""],test_chassis_number:[71,1,1,""],test_clock_frequency:[71,1,1,""],test_open_close:[71,1,1,""],test_serial_number:[71,1,1,""],test_slot_number:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_chassis_and_slot:[71,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[72,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[72,0,1,""],SensorChannel:[72,0,1,""]},"qcodes.instrument_drivers.Minicircuits":{Base_SPDT:[73,4,0,"-"],RC_SP4T:[73,4,0,"-"],RC_SPDT:[73,4,0,"-"],USB_SPDT:[73,4,0,"-"]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT":{SPDT_Base:[73,0,1,""],SwitchChannelBase:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT.SPDT_Base":{CHANNEL_CLASS:[73,2,1,""],add_channels:[73,1,1,""],all:[73,1,1,""],get_number_of_channels:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T":{MC_channel:[73,0,1,""],RC_SP4T:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T.RC_SP4T":{ask:[73,1,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT":{MC_channel:[73,0,1,""],RC_SPDT:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT.RC_SPDT":{ask:[73,1,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT":{SwitchChannelUSB:[73,0,1,""],USB_SPDT:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT.USB_SPDT":{CHANNEL_CLASS:[73,2,1,""],PATH_TO_DRIVER:[73,2,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[74,4,0,"-"],QDac_channels:[74,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[74,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[74,1,1,""],max_status_age:[74,2,1,""],print_overview:[74,1,1,""],printslopes:[74,1,1,""],read:[74,1,1,""],read_state:[74,1,1,""],snapshot_base:[74,1,1,""],voltage_range_status:[74,2,1,""],write:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[74,0,1,""],QDacChannel:[74,0,1,""],QDacMultiChannelParameter:[74,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[74,1,1,""],max_status_age:[74,2,1,""],print_overview:[74,1,1,""],printslopes:[74,1,1,""],read:[74,1,1,""],read_state:[74,1,1,""],snapshot_base:[74,1,1,""],voltage_range_status:[74,2,1,""],write:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[74,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[75,4,0,"-"],D5a:[75,4,0,"-"],F1d:[75,4,0,"-"],IVVI:[75,4,0,"-"],S5i:[75,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[75,1,1,""],get_filter_value:[75,1,1,""],get_mode:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[75,2,1,""],Halfrange:[75,2,1,""],adjust_parameter_validator:[75,1,1,""],ask:[75,1,1,""],get_all:[75,1,1,""],get_idn:[75,1,1,""],get_pol_dac:[75,1,1,""],read:[75,1,1,""],round_dac:[75,1,1,""],set_dacs_zero:[75,1,1,""],set_pol_dacrack:[75,1,1,""],write:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[75,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[77,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[77,4,0,"-"],spcerr:[77,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[77,3,1,""],GIGA_B:[77,3,1,""],KILO:[77,3,1,""],KILO_B:[77,3,1,""],MEGA:[77,3,1,""],MEGA_B:[77,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[78,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[78,0,1,""],Scope:[78,0,1,""],Sweep:[78,0,1,""],ZIUHFLI:[78,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[78,1,1,""],get:[78,1,1,""],names:[78,2,1,""],post_trigger_actions:[78,2,1,""],prepare_scope:[78,1,1,""],setpoint_names:[78,2,1,""],setpoints:[78,2,1,""],shapes:[78,2,1,""],units:[78,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[78,1,1,""],get:[78,1,1,""],names:[78,2,1,""],setpoint_names:[78,2,1,""],setpoints:[78,2,1,""],shapes:[78,2,1,""],units:[78,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[78,7,1,""],add_signal_to_sweeper:[78,1,1,""],close:[78,1,1,""],print_sweeper_settings:[78,1,1,""],remove_signal_from_sweeper:[78,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[79,4,0,"-"],E8267C:[79,4,0,"-"],E8527D:[79,4,0,"-"],HP33210A:[79,4,0,"-"],test_suite:[79,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[79,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[79,1,1,""],display_clear:[79,1,1,""],init_measurement:[79,1,1,""],reset:[79,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[79,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[79,7,1,""],rad_to_deg:[79,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[79,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[79,1,1,""],off:[79,1,1,""],on:[79,1,1,""],parse_on_off:[79,1,1,""],rad_to_deg:[79,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[79,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[79,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[79,2,1,""],setUpClass:[79,6,1,""],test_firmware_version:[79,1,1,""],test_frequency:[79,1,1,""],test_on_off:[79,1,1,""],test_phase:[79,1,1,""],test_power:[79,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[80,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[80,0,1,""],AMI430Exception:[80,5,1,""],AMI430SwitchHeater:[80,0,1,""],AMI430_3D:[80,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{ramp_to:[80,1,1,""],set_field:[80,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430SwitchHeater":{check_enabled:[80,1,1,""],check_state:[80,1,1,""],disable:[80,1,1,""],enable:[80,1,1,""],off:[80,1,1,""],on:[80,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[66,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[66,1,1,""],get_raw:[66,1,1,""],set_raw:[66,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[81,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[81,0,1,""],Ithaco_1211:[81,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[81,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[81,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[82,4,0,"-"],IPS120:[82,4,0,"-"],kelvinox:[82,4,0,"-"],mercuryiPS:[82,4,0,"-"],triton:[82,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[82,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[82,1,1,""],get_all:[82,1,1,""],get_idn:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],set_remote_status:[82,1,1,""],set_to_fast:[82,1,1,""],set_to_slow:[82,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[82,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[82,1,1,""],examine:[82,1,1,""],get_all:[82,1,1,""],get_changed:[82,1,1,""],get_idn:[82,1,1,""],heater_off:[82,1,1,""],heater_on:[82,1,1,""],hold:[82,1,1,""],identify:[82,1,1,""],leave_persistent_mode:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],run_to_field:[82,1,1,""],run_to_field_wait:[82,1,1,""],set_persistent:[82,1,1,""],to_setpoint:[82,1,1,""],to_zero:[82,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[82,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[82,1,1,""],get_all:[82,1,1,""],get_idn:[82,1,1,""],identify:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],rotate_Nvalve:[82,1,1,""],set_mix_chamber_heater_mode:[82,1,1,""],set_mix_chamber_heater_power_range:[82,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[82,0,1,""],MercuryiPSArray:[82,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[82,1,1,""],rtos:[82,1,1,""],to_zero:[82,1,1,""],write:[82,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[82,1,1,""],set:[82,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[82,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[82,1,1,""],set_B:[82,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[83,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[83,0,1,""],clean_string:[83,3,1,""],is_number:[83,3,1,""],parse_multiple_outputs:[83,3,1,""],parse_single_output:[83,3,1,""],parse_string_output:[83,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{RTO1000:[84,4,0,"-"],SGS100A:[84,4,0,"-"],SMR40:[84,4,0,"-"],ZNB20:[84,4,0,"-"],ZNB:[84,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[84,0,1,""],ScopeChannel:[84,0,1,""],ScopeTrace:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.RTO1000":{run_cont:[84,1,1,""],run_single:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get_raw:[84,1,1,""],prepare_trace:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[84,1,1,""],on:[84,1,1,""],parse_on_off:[84,1,1,""],set_IQ_state:[84,1,1,""],set_pulsemod_source:[84,1,1,""],set_pulsemod_state:[84,1,1,""],set_status:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[84,1,1,""],do_get_power:[84,1,1,""],do_get_pulse_delay:[84,1,1,""],do_get_status:[84,1,1,""],do_get_status_of_ALC:[84,1,1,""],do_get_status_of_modulation:[84,1,1,""],do_set_frequency:[84,1,1,""],do_set_power:[84,1,1,""],do_set_pulse_delay:[84,1,1,""],do_set_status:[84,1,1,""],do_set_status_of_ALC:[84,1,1,""],do_set_status_of_modulation:[84,1,1,""],get_all:[84,1,1,""],off:[84,1,1,""],off_modulation:[84,1,1,""],on:[84,1,1,""],on_modulation:[84,1,1,""],reset:[84,1,1,""],set_ext_trig:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[84,0,1,""],FrequencySweepMagPhase:[84,0,1,""],ZNB:[84,0,1,""],ZNBChannel:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[84,1,1,""],set_sweep:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[84,1,1,""],set_sweep:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[84,1,1,""],clear_channels:[84,1,1,""],display_grid:[84,1,1,""],initialise:[84,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[85,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[85,0,1,""],constants:[85,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[85,1,1,""],abort:[85,1,1,""],check_for_error:[85,1,1,""],closeDevice:[85,1,1,""],configure:[85,1,1,""],default_server_name:[85,6,1,""],dll_path:[85,2,1,""],get_power_at_freq:[85,1,1,""],get_spectrum:[85,1,1,""],initialisation:[85,1,1,""],openDevice:[85,1,1,""],prepare_for_measurement:[85,1,1,""],preset:[85,1,1,""],saStatus:[85,2,1,""],saStatus_inverted:[85,2,1,""],safe_reload:[85,1,1,""],sweep:[85,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[85,2,1,""],TG_THRU_0DB:[85,2,1,""],TG_THRU_20DB:[85,2,1,""],sa124_MAX_FREQ:[85,2,1,""],sa124_MIN_FREQ:[85,2,1,""],sa44_MAX_FREQ:[85,2,1,""],sa44_MIN_FREQ:[85,2,1,""],saDeviceTypeNone:[85,2,1,""],saDeviceTypeSA124A:[85,2,1,""],saDeviceTypeSA124B:[85,2,1,""],saDeviceTypeSA44:[85,2,1,""],saDeviceTypeSA44B:[85,2,1,""],sa_AUDIO:[85,2,1,""],sa_AUDIO_AM:[85,2,1,""],sa_AUDIO_CW:[85,2,1,""],sa_AUDIO_FM:[85,2,1,""],sa_AUDIO_LSB:[85,2,1,""],sa_AUDIO_USB:[85,2,1,""],sa_AUTO_ATTEN:[85,2,1,""],sa_AUTO_GAIN:[85,2,1,""],sa_AVERAGE:[85,2,1,""],sa_BYPASS:[85,2,1,""],sa_IDLE:[85,2,1,""],sa_IQ:[85,2,1,""],sa_IQ_SAMPLE_RATE:[85,2,1,""],sa_LIN_FULL_SCALE:[85,2,1,""],sa_LIN_SCALE:[85,2,1,""],sa_LOG_FULL_SCALE:[85,2,1,""],sa_LOG_SCALE:[85,2,1,""],sa_LOG_UNITS:[85,2,1,""],sa_MAX_ATTEN:[85,2,1,""],sa_MAX_GAIN:[85,2,1,""],sa_MAX_IQ_DECIMATION:[85,2,1,""],sa_MAX_RBW:[85,2,1,""],sa_MAX_REF:[85,2,1,""],sa_MAX_RT_RBW:[85,2,1,""],sa_MIN_IQ_BANDWIDTH:[85,2,1,""],sa_MIN_MAX:[85,2,1,""],sa_MIN_RBW:[85,2,1,""],sa_MIN_RT_RBW:[85,2,1,""],sa_MIN_SPAN:[85,2,1,""],sa_POWER_UNITS:[85,2,1,""],sa_REAL_TIME:[85,2,1,""],sa_SWEEPING:[85,2,1,""],sa_TG_SWEEP:[85,2,1,""],sa_VOLT_UNITS:[85,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[86,4,0,"-"],SIM928:[86,4,0,"-"],SR560:[86,4,0,"-"],SR830:[86,4,0,"-"],SR860:[86,4,0,"-"],SR865:[86,4,0,"-"],SR86x:[86,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[86,1,1,""],byte_to_bits:[86,7,1,""],check_module_errors:[86,1,1,""],find_modules:[86,1,1,""],get_module_idn:[86,1,1,""],get_module_status:[86,1,1,""],get_voltage:[86,1,1,""],reset_module:[86,1,1,""],set_smooth:[86,1,1,""],set_voltage:[86,1,1,""],write_module:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[86,0,1,""],VoltageParameter:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[86,0,1,""],SR830:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[86,1,1,""],prepare_buffer_readout:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[86,0,1,""],SR86xBuffer:[86,0,1,""],SR86xBufferReadout:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_samples:[86,1,1,""],get_capture_data:[86,1,1,""],start_capture:[86,1,1,""],stop_capture:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[86,1,1,""],prepare_readout:[86,1,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[87,4,0,"-"],AWG5200:[87,4,0,"-"],AWG520:[87,4,0,"-"],AWG70000A:[87,4,0,"-"],AWG70002A:[87,4,0,"-"],AWGFileParser:[87,4,0,"-"],Keithley_2000:[87,4,0,"-"],Keithley_2400:[87,4,0,"-"],Keithley_2600:[87,4,0,"-"],Keithley_2600_channels:[87,4,0,"-"],Keithley_2700:[87,4,0,"-"],TPS2012:[87,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[87,0,1,""],parsestr:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[87,2,1,""],AWG_FILE_FORMAT_HEAD:[87,2,1,""],all_channels_off:[87,1,1,""],all_channels_on:[87,1,1,""],change_folder:[87,1,1,""],clear_message_queue:[87,1,1,""],create_and_goto_dir:[87,1,1,""],delete_all_waveforms_from_list:[87,1,1,""],force_event:[87,1,1,""],force_trigger:[87,1,1,""],force_trigger_event:[87,1,1,""],generate_awg_file:[87,1,1,""],generate_channel_cfg:[87,1,1,""],generate_sequence_cfg:[87,1,1,""],get_all:[87,1,1,""],get_current_folder_name:[87,1,1,""],get_error:[87,1,1,""],get_filenames:[87,1,1,""],get_folder_contents:[87,1,1,""],get_sq_mode:[87,1,1,""],get_sqel_loopcnt:[87,1,1,""],get_sqel_trigger_wait:[87,1,1,""],get_sqel_waveform:[87,1,1,""],get_state:[87,1,1,""],goto_root:[87,1,1,""],is_awg_ready:[87,1,1,""],load_awg_file:[87,1,1,""],make_and_save_awg_file:[87,1,1,""],make_send_and_load_awg_file:[87,1,1,""],newlinestripper:[87,1,1,""],pack_waveform:[87,1,1,""],run:[87,1,1,""],send_DC_pulse:[87,1,1,""],send_awg_file:[87,1,1,""],send_waveform_to_list:[87,1,1,""],set_current_folder_name:[87,1,1,""],set_sqel_event_jump_target_index:[87,1,1,""],set_sqel_event_jump_type:[87,1,1,""],set_sqel_event_target_index:[87,1,1,""],set_sqel_goto_state:[87,1,1,""],set_sqel_goto_target_index:[87,1,1,""],set_sqel_loopcnt:[87,1,1,""],set_sqel_loopcnt_to_inf:[87,1,1,""],set_sqel_trigger_wait:[87,1,1,""],set_sqel_waveform:[87,1,1,""],start:[87,1,1,""],stop:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[87,1,1,""],clear_waveforms:[87,1,1,""],delete_all_waveforms_from_list:[87,1,1,""],force_logicjump:[87,1,1,""],force_trigger:[87,1,1,""],get_all:[87,1,1,""],get_current_folder_name:[87,1,1,""],get_filenames:[87,1,1,""],get_folder_contents:[87,1,1,""],get_jumpmode:[87,1,1,""],get_state:[87,1,1,""],goto_root:[87,1,1,""],load_and_set_sequence:[87,1,1,""],make_directory:[87,1,1,""],resend_waveform:[87,1,1,""],return_self:[87,1,1,""],send_pattern:[87,1,1,""],send_sequence2:[87,1,1,""],send_sequence:[87,1,1,""],send_waveform:[87,1,1,""],set_current_folder_name:[87,1,1,""],set_jumpmode:[87,1,1,""],set_sequence:[87,1,1,""],set_setup_filename:[87,1,1,""],start:[87,1,1,""],stop:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A":{AWG70000A:[87,0,1,""],AWGChannel:[87,0,1,""],SRValidator:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWG70000A":{clearSequenceList:[87,1,1,""],clearWaveformList:[87,1,1,""],force_triggerA:[87,1,1,""],force_triggerB:[87,1,1,""],loadSEQXFile:[87,1,1,""],loadWFMXFile:[87,1,1,""],makeSEQXFile:[87,7,1,""],makeWFMXFile:[87,7,1,""],play:[87,1,1,""],sendSEQXFile:[87,1,1,""],sendWFMXFile:[87,1,1,""],sequenceList:[87,2,1,""],stop:[87,1,1,""],waveformList:[87,2,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWGChannel":{setSequenceTrack:[87,1,1,""],setWaveform:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.SRValidator":{validate:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70002A":{AWG70002A:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[87,0,1,""],parse_output_bool:[87,3,1,""],parse_output_string:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[87,1,1,""],display_clear:[87,1,1,""],display_normal:[87,1,1,""],exit_key:[87,1,1,""],get_idn:[87,1,1,""],reset:[87,1,1,""],write:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[87,0,1,""],Keithley_2600:[87,0,1,""],LuaSweepParameter:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[87,1,1,""],reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[87,1,1,""],display_clear:[87,1,1,""],display_normal:[87,1,1,""],exit_key:[87,1,1,""],get_idn:[87,1,1,""],reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[87,1,1,""],prepareSweep:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[87,0,1,""],bool_to_str:[87,3,1,""],parsebool:[87,3,1,""],parseint:[87,3,1,""],parsestr:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[87,1,1,""],reset:[87,1,1,""],set_defaults:[87,1,1,""],set_mode:[87,1,1,""],set_mode_volt_dc:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[87,0,1,""],TPS2012:[87,0,1,""],TPS2012Channel:[87,0,1,""],TraceNotReady:[87,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[87,1,1,""],get:[87,1,1,""],prepare_curvedata:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[87,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[66,0,1,""],test_instrument:[66,3,1,""],test_instruments:[66,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[66,2,1,""],setUpClass:[66,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[88,4,0,"-"],test_suite:[88,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[88,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[88,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[88,2,1,""],test_attenuation:[88,1,1,""],test_firmware_version:[88,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[89,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[89,0,1,""],GS200Exception:[89,5,1,""],GS200_Monitor:[89,0,1,""],float_round:[89,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[89,1,1,""],on:[89,1,1,""],ramp_current:[89,1,1,""],ramp_voltage:[89,1,1,""],state:[89,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[89,1,1,""],on:[89,1,1,""],state:[89,1,1,""],update_measurement_enabled:[89,1,1,""]},"qcodes.measure":{Measure:[91,0,1,""]},"qcodes.measure.Measure":{__init__:[91,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[93,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[93,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[94,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[94,1,1,""]},"qcodes.station":{Station:[95,0,1,""]},"qcodes.station.Station":{"default":[95,2,1,""],__init__:[95,1,1,""],delegate_attr_dicts:[95,2,1,""]},"qcodes.utils":{command:[96,4,0,"-"],deferred_operations:[97,4,0,"-"],helpers:[98,4,0,"-"],metadata:[99,4,0,"-"],validators:[100,4,0,"-"]},qcodes:{ArrayParameter:[40,0,1,""],BreakIf:[41,0,1,""],ChannelList:[42,0,1,""],CombinedParameter:[43,0,1,""],Config:[44,0,1,""],DataArray:[45,0,1,""],DataSet:[46,0,1,""],DiskIO:[47,0,1,""],FormatLocation:[48,0,1,""],Formatter:[49,0,1,""],Function:[50,0,1,""],GNUPlotFormat:[51,0,1,""],IPInstrument:[52,0,1,""],Instrument:[53,0,1,""],InstrumentChannel:[54,0,1,""],Loop:[55,0,1,""],ManualParameter:[56,0,1,""],MultiParameter:[57,0,1,""],Parameter:[58,0,1,""],StandardParameter:[59,0,1,""],SweepFixedValues:[60,0,1,""],SweepValues:[61,0,1,""],Task:[62,0,1,""],VisaInstrument:[63,0,1,""],Wait:[64,0,1,""],combine:[65,3,1,""],instrument_drivers:[66,4,0,"-"],load_data:[90,3,1,""],new_data:[92,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","function","Python function"],"4":["py","module","Python module"],"5":["py","exception","Python exception"],"6":["py","classmethod","Python class method"],"7":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:exception","6":"py:classmethod","7":"py:staticmethod"},terms:{"00000e":23,"001_":[9,23],"001_13":48,"001_testsweep_11":10,"002_":18,"00370000e":22,"003_":39,"005_unicorn_2017":8,"006_":[8,31],"007_":[29,31],"008_":29,"009_testsweep_15":16,"01084000e":22,"011_":[29,36,38],"011_randomnumber_69_2017":8,"012_":[29,36],"012_hp8753d_tutorial_14":38,"013_":17,"013_n_1000_setget_11":13,"014_n_1000_setget_11":13,"015_n_1000_setget_11":13,"016_n_1000_setget_11":13,"01763000e":22,"017_n_1000_setget_11":13,"018_n_1000_setget_11":13,"018_testsweep_12":11,"019_n_1000_setget_11":13,"019_testsweep_12":11,"020_n_1000_setget_11":13,"020_testsweep_12":11,"021_testsweep_12":11,"025_":16,"026_":16,"027_":16,"028_":16,"029_":16,"02s":[18,30],"030_":16,"031_":16,"032_":16,"033_":16,"034_":16,"035_":16,"036_":16,"03d":[15,32],"04s":39,"06s":11,"073_":30,"076_":30,"076_n_100_setget_16":12,"077_":30,"077_n_100_setget_16":12,"078_":30,"078_n_100_setget_16":12,"079_":30,"079_n_100_setget_16":12,"07s":[4,16],"080_":30,"080_n_100_setget_16":12,"081_n_100_setget_16":12,"082_n_100_setget_16":12,"083_":30,"083_n_100_setget_16":12,"084_":[12,30],"085_":[12,30],"086_":[12,30],"087_":[12,30],"088_":[12,30],"089_":[12,30],"08s":35,"090_":[12,30],"091_":12,"092_n_1000_setget_16":12,"093_n_1000_setget_16":12,"094_n_1000_setget_16":12,"095_n_1000_setget_16":12,"096_n_1000_setget_16":12,"097_n_1000_setget_16":12,"098_n_1000_setget_16":12,"0994e":23,"099_n_1000_setget_16":12,"09s":23,"0x111defb70":15,"0x1c10ee73a58":16,"0x278d4c91780":36,"0x7ed0668":22,"0x7f920ec0eef0":121,"0x7fd834e99ea0":0,"0x818a908":19,"1000k44":29,"100_":12,"100e":12,"100e3":[29,30,38],"100e6":71,"100k":39,"100khz":39,"100x100":11,"101_":12,"102_":12,"103_":12,"104_":12,"105_":12,"106_":12,"107_":12,"108_n_100_setget_16":12,"109_n_100_setget_16":12,"10e":[31,35,36,39],"10e3":35,"10e6":[19,33,36],"10kohm":35,"10mhz":85,"10v":[35,58],"110_n_100_setget_16":12,"111_n_100_setget_16":12,"112_n_100_setget_16":12,"113_n_100_setget_16":12,"114_n_100_setget_16":12,"115_n_100_setget_16":12,"116_":12,"117_":12,"118_":12,"119_":12,"11s":24,"1206e":23,"120_":12,"121_":12,"122_":12,"123_":12,"124_":12,"125_":12,"126_":12,"127_":12,"128_":12,"129_":12,"12e9":3,"12f":3,"12s":18,"130_":12,"131_":12,"132_":12,"133_":12,"134_":12,"135_":12,"136_":12,"137_":12,"138_":12,"139_":12,"13_testsweep":0,"13_testsweep_002":0,"140_":12,"141_":12,"142_":12,"143_":12,"144_":12,"145_":12,"146_":12,"147_":12,"148_":12,"149_":12,"14s":13,"150_":12,"151_":12,"152_":12,"153_":12,"154_":12,"155_":12,"156_":12,"157_":12,"158_":12,"159_":12,"15_11":8,"15_hammer_tim":8,"15_rainbow_test":48,"15g":51,"15s":[12,30],"160_":12,"161_":12,"162_":12,"163_":12,"164_":12,"165_":12,"166_":12,"167_":12,"168_":12,"169_":12,"16bit":39,"16s":[17,30],"170_":12,"171_":12,"172_":12,"173_":12,"174_":12,"175_":12,"176_":12,"177_":12,"178_":12,"179_":12,"180_":12,"181_":12,"182_":12,"183_":12,"184_":12,"185_":12,"186_":12,"187_":12,"188_":12,"189_":12,"190_":12,"191_":12,"192_":12,"193_":12,"194_":12,"195_":12,"196_":12,"197_n_1000_setget_16":12,"198_n_1000_setget_16":12,"199_n_1000_setget_16":12,"19s":26,"1ct":31,"1e3":[15,24,36],"1e6":[30,36],"1e9":[15,29,33,38],"1ma":35,"1ms":117,"1sp4t":111,"1vpp":39,"20000000e":32,"200_n_1000_setget_16":12,"200e3":30,"200uw":82,"2012b":[31,87],"201_n_1000_setget_16":12,"202_n_1000_setget_16":12,"203_n_1000_setget_16":12,"204_n_1000_setget_16":12,"205_":12,"206_":12,"207_":12,"208_":12,"209_":12,"20e":36,"20ma":67,"20mw":82,"20uw":82,"210_":12,"211_":12,"212_":12,"23160746e":36,"23s":[29,38],"24196735e":36,"250khz":85,"25e":[28,31,33],"25gb":19,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"2614b":[3,12,23,87],"2635b":3,"2636b":3,"28539f77dfd3":2,"2d_test":10,"2e3":24,"2min":30,"2mw":82,"2uw":82,"30_alazartest":19,"32s":14,"33500b":[71,107,117],"33522b":24,"33xxx":71,"34400a":117,"34411a":117,"34460a":71,"34461a":71,"34465a":[16,71,107,109,117],"34470a":71,"352161306002045e":25,"36s":30,"39759855e":36,"3x2":7,"40s":15,"42637000e":22,"44s":31,"44xx":106,"4port":30,"4spdt":[26,111],"50e":[24,31],"52608e":27,"54972e":23,"54s":33,"56s":30,"57s":37,"5e9":30,"60s":37,"62s":37,"69014000e":22,"6955e":23,"6a5acd":32,"6e6":30,"8133a":[69,107],"83650a":107,"844e846b99a2":16,"8753d":[38,69],"91t928108":35,"93s":11,"94851000e":22,"95535000e":22,"96216000e":22,"98941000e":22,"99618000e":22,"9e3":30,"\u03bca":[27,28],"abstract":124,"boolean":[75,87,109,121],"break":[3,4,10,41,86,87,112,113],"byte":[68,75,86,87],"case":[2,3,7,19,32,36,50,55,58,66,68,87,94,113,124,125],"catch":3,"char":74,"class":[1,4,7,20,22,36,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,91,93,94,95,96,97,98,99,100,111,113,116,117,125],"default":[1,2,3,4,6,7,10,27,28,30,40,44,45,46,48,50,51,52,55,57,58,63,66,68,69,70,71,73,74,75,81,82,84,86,87,90,92,93,94,95,104,105,110,113,116,123],"enum":[2,3,4,20,22,36,58,87,116,121],"export":82,"final":[10,16,19,23,32,33,36,38,49,50,58,120,124],"float":[3,4,13,46,50,58,60,66,69,70,71,75,78,82,83,84,86,87,89,92,94,109],"function":[0,1,3,4,7,9,10,14,15,16,19,22,23,31,32,37,38,39,41,43,46,53,54,56,58,60,62,65,67,68,71,75,78,79,82,83,84,85,86,87,88,97,98,100,109,110,113,116,117,119,124,125],"goto":[32,87],"import":[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,87,109,113,117,121,124,125],"int":[1,3,7,13,14,15,16,32,33,36,40,45,50,52,57,58,60,66,69,70,71,73,74,75,78,82,84,86,87,116],"long":[3,4,29,30,40,57,58,87,113],"new":[1,2,3,4,7,10,19,23,36,45,48,49,50,51,73,82,87,90,92,94,112,119,120,121,124,125],"null":[67,121],"public":[86,101,113],"return":[0,1,3,6,7,10,13,14,15,16,20,23,27,28,30,32,36,37,38,40,41,42,48,50,57,58,60,66,67,68,69,70,71,73,74,75,78,81,82,83,84,85,86,87,89,90,91,92,116,124,125],"short":[45,124],"static":[52,53,63,78,79,86,87],"super":[3,4,7,71,73,82,87,125],"switch":[11,30,33,36,73,82,87,111,117,121,124],"true":[2,3,9,15,16,20,21,22,27,28,29,30,33,35,36,38,39,40,42,45,51,52,57,58,63,70,71,74,75,80,84,85,86,87,93,95,121,124],"try":[0,2,3,10,13,15,16,20,24,27,30,35,37,58,113,124],"var":51,"while":[1,10,15,20,22,31,33,35,67,87,117,124],AND:87,ATS:[19,66],Adding:113,And:[3,7,29,30,36,121,125],Are:[92,124],Axes:1,BUS:[13,24],BUT:113,But:[0,2,3,4,9,30,36,64,116],Doing:30,For:[1,2,3,4,6,7,9,10,24,29,30,31,32,36,37,40,48,51,57,58,63,67,68,70,75,78,84,86,87,93,113,118,120,121,124,125],Has:[3,71],IPS:[82,117],Its:[121,124],NOT:[3,33,36,48,66,78,113],Not:[2,3,29,38,40,57,67,95,113,117,121],ONE:[18,86,113],One:[1,2,36,78,119,124,125],POS:[16,24,29,75],PRs:113,SRS:107,THE:[29,36,117],THERE:117,TPS:[31,107,108],That:[3,8,60,61,87,117,125],The:[0,1,2,3,6,11,12,13,16,17,19,21,23,24,26,27,28,29,30,31,32,33,35,36,37,38,39,40,42,43,45,48,50,51,52,55,57,58,60,62,63,65,66,67,68,70,71,73,74,75,78,82,84,85,86,87,89,93,94,111,113,115,117,120,121,124,125],Then:[4,17,30,32,33,36,39,113,120,125],There:[1,3,4,10,21,23,31,32,71,111,113,116,120,121],These:[3,27,28,36,51,68,85,87,117,124],Tis:71,Use:[15,40,46,57,58,68,87,113,119,121],Used:83,Useful:[56,58],Uses:48,Using:[117,123],Will:[45,57,121],With:[30,37,120,124],_10:[29,30],_11:[30,36],_13:[17,39],_14:[23,38],_15:[16,18],_16:[12,31],_17:9,_2017:8,__call__:[16,48],__class__:[0,9,10,19],__del__:68,__doc__:[36,40,50,57,58],__enter__:[20,22],__exit__:[20,22],__file__:4,__getattr__:[42,74],__init__:[3,4,7,20,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,70,91,93,94,95,125],__iter__:[60,61],__main__:15,__name__:36,__next__:61,__repr__:70,_alazar:68,_assigned_fg:16,_ats_dll:3,_attenu:66,_bdaqctrl:67,_call:16,_check_for_error:20,_check_respons:20,_coil_const:37,_count:7,_current_r:37,_current_ramp_limit:37,_display_settext:3,_error_queu:20,_expect_error:20,_forwardref:[40,57,58],_get:125,_get_cmd:82,_get_temp_channel:34,_handl:3,_indic:7,_instrument:[3,16,20],_instrument_list:125,_irang:3,_measured_param:3,_mode:87,_parent:3,_poll:20,_ramp_stat:70,_ramp_tim:70,_randomnumber_:8,_raw:3,_read_cmd:82,_recv:82,_rem_file_path:15,_response_queu:20,_return_handl:16,_run_loop:16,_run_wrapp:16,_save_v:[3,40,57],_scale_param:7,_send:82,_set:125,_set_async:125,_set_both:125,_setget:[12,13],_step:86,_syncoutput:16,_t0:70,_trace:30,_val:7,_vrang:3,_win32:67,_write_cmd:82,_write_respons:74,a118e754f9e:20,a18:[26,111],a_sweep:9,abil:[84,105],abl:[37,71,120,124,125],abort:[13,85],abort_measur:13,about:[3,4,9,19,20,28,29,30,35,36,87,113,116,118,119,121,125],abov:[1,3,4,30,32,67,87,124],abridg:3,abs:[37,41],absolut:[36,47,87,113],accept:[3,46,47,49,50,51,62,67,71,73,81,82,86,87,124],acces:[10,32],access:[1,36,42,67,80,86],accommod:87,accompani:113,accord:[87,120],accordingli:16,account:[58,66,70,113],accur:[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,91,93,94,95],achiev:32,acknowledg:52,acquir:[4,12,16,17,18,19,23,29,30,36,39,68,78,86,117,124],acquire_point:39,acquire_sample_r:39,acquisiion:68,acquisit:[13,19,30,36,68,78,85,86,113,117,124],acquisition_conrol:68,acquisition_control:[19,68],acquisition_controller_acquisit:19,acquisition_mod:86,acquisition_sample_r:29,acquisitioncontrol:68,acquisiton:[19,68],acquist:68,acqusit:29,across:[27,28,35,124],act:[45,58,66],action:[1,6,7,9,16,20,34,41,45,55,78,87,91,95,101,116,117,119,124,125],action_indic:[9,16,45],activ:[1,29,82,84,116,120],activeloop:[9,55,116],actual:[1,3,11,35,37,66,68,75,84,87,113,124],acut:0,adapt:[60,61],adaptivesweep:[61,116],adawpt:61,adc:75,add:[1,2,3,4,5,10,13,16,17,18,23,30,31,36,38,46,48,52,53,63,71,74,75,78,79,84,85,86,87,92,93,94,95,105,106,109,113,116,120,121],add_arrai:[45,46,92],add_channel:[30,73,84],add_compon:[5,15,23,95],add_funct:[53,54,113],add_paramet:[3,4,10,53,54,113,124,125],add_post_trigger_act:78,add_signal_to_sweep:[36,78],add_submodul:[3,53],add_subplot:[15,32],added:[1,9,30,37,40,45,46,78,87,92,93,94,95,111,113,124],adding:[1,36,117],addit:[1,3,32,52,53,58,63,80,81,82,86,119,121,124],addition:[1,36,78],address:[3,4,25,28,34,37,39,42,52,63,69,70,71,72,73,74,75,79,80,82,83,84,86,87,88,89,113,124],adjust:[30,37,38,39,75,124],adjust_parameter_valid:75,adopt:119,adriaan:85,advanc:58,advantag:1,advantech:[66,107],advantech_pcie_1751:67,aeroflex:[3,4,88],affect:[36,47,78,113],after:[1,9,10,16,51,55,58,62,68,78,82,87,105,113,121,124],again:[19,35,87,120,124],against:116,aggeg:0,aggreag:0,aggreg:[43,65,117,125],agi:[11,20,22],agil:[22,24,66,71,107,113,117],agilent1:[20,22],agilent2:[20,22],agilent_34400a:[11,20,22,66],agilent_34401a:79,agilent_34410a:79,agilent_34411a:79,agilent_e8527d:[79,113],agilent_hp33210a:79,agilent_volt:11,agreement:23,agument:41,ahead:[36,60,61],aid:124,aim:1,airbnb:113,aka:113,akin:124,ala:119,alazar1:19,alazar:[3,19,68,107],alazar_driv:68,alazar_nam:[19,68],alazar_serv:19,alazargetboardbysystemid:3,alazarparamet:[3,19,68],alazarstartcaptur:68,alazartech:[3,19,66],alazartech_at:[3,19,68],alazartech_ats9870:[3,19,68],alazartest:19,alexcjohnson:113,alia:[56,70,73,79,88],all:[1,2,3,4,7,8,9,10,12,19,21,23,26,27,28,29,30,32,36,39,40,42,43,45,48,49,50,51,53,54,57,58,60,63,65,66,67,68,70,71,73,74,75,78,79,82,83,84,85,86,87,93,94,95,110,113,116,117,119,120,121,124,125],all_channels_off:87,all_channels_on:87,alloc:[19,68],alloc_buff:[19,68],allocated_buff:[19,68],allow:[1,3,4,9,27,28,33,37,38,39,42,52,58,60,61,63,75,78,82,84,86,87,92,113,124],almost:[86,124],alon:[37,45],along:[1,14,37,40,57,58,85,93,94,113,116,124],alongsid:[7,9],alpha:[15,32,75],alreadi:[40,45,49,57],also:[1,2,3,4,8,9,10,19,30,31,32,36,37,41,45,47,49,51,58,60,64,67,68,70,71,73,81,82,86,87,92,109,111,113,116,119,120,121,124],altern:32,although:[3,32,69,78,113,120],alwai:[1,2,3,4,6,10,17,31,33,36,51,57,70,74,78,86,87,113,124],always_nest:51,amen:113,american:[37,80],american_magnet:[37,66],ami430:[66,107,110,117],ami430_2d:80,ami430_3d:[37,80],ami430except:80,ami430switchheat:80,ammet:124,among:[48,125],amount:111,amp:[3,23,37,81,86],amper:89,amplifi:[3,10,81,86,111],amplitud:[7,17,27,28,29,33,36,68,84,87,125],anaconda3:[15,16,20,120],anaconda:[119,120],analog:74,analog_amplitude_n:87,analog_direct_output_n:87,analog_filter_n:87,analog_high_n:87,analog_low_n:87,analog_method_n:87,analog_offset_n:87,analys:84,analysi:[113,124],analyz:[38,69,111,119],angl:37,angle_deg:79,angle_rad:79,ani:[0,2,3,4,7,10,19,20,22,25,27,28,30,32,37,40,43,45,47,48,49,50,51,52,55,57,58,60,61,62,63,65,68,70,73,78,82,86,87,91,95,113,116,119,120,124,125],anoth:[7,10,11,32,48,60,89,119,124],answer:[70,75],anymor:4,anyth:[3,9,10,13,21,29,87,116],anywai:7,ap_tim:13,apertur:[11,13],api:[1,4,101,103,111,119,121,124],app:39,apparatu:116,appear:[33,71,87],append:[14,15,20,32,37,45,60,125],appli:[21,27,28,29,37,46,50,58,67,71,73,81,86,87],applic:[3,120],approach:117,appropri:[1,68,124],approv:113,aqcuisit:29,aquir:38,arang:[3,4,15],arbitrari:[50,51,57,79,83,87,116,119],architectur:[119,125],arctan:32,arg:[1,2,3,15,16,20,40,50,57,58,60,62,71,74,80,82,93,94,125],arg_count:16,arg_pars:50,argument:[0,1,3,6,10,16,41,45,46,49,50,57,62,78,80,116],arithmet:29,arm:78,around:[30,32,45,85,113,124],arrai:[0,1,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,29,30,31,32,33,36,38,39,40,45,46,49,57,68,78,83,84,86,87,91,92,94,105,116,117,124,125],array_count:7,array_id:[0,1,7,8,9,10,11,12,13,16,17,18,19,23,29,30,31,36,38,39,45,49,125],arraycount:7,arraygett:6,arraymeasur:71,arrayparamet:[3,12,69,71,84,86,87,101,117],arriv:124,asc:29,ask:[3,13,14,20,29,34,36,70,73,75,82,86,87,113,124],ask_modul:86,ask_raw:[73,87],asopc:68,asopc_typ:[19,68],asrl10:25,asrl1:31,asrl2:63,asrl4:[11,82],asrl6:[16,27,28],asrl7:13,asrl:75,asrln:70,assert:[4,35,37,86,87],assertalmostequ:71,assign:[16,27,28,33,74,87,113],associ:124,assum:[3,30,32,38,61,74,87,120,124],assumpt:[36,87],async:123,asynchron:10,atob:82,ats9870:[3,19,66],ats_acquisition_control:[19,66],ats_contr:19,ats_inst:19,ats_onwork:117,atsapi:[3,68],atsdriv:19,attach:[1,3,42,46,53,54,55,66,71,74,84,86,87],attempt:70,attent:[113,117],attenu:[3,4,27,28,88],attn:[3,4],attribut:[1,3,36,40,44,45,46,48,49,52,53,54,56,57,58,59,63,78,91,93,94,95,113,124],author:113,auto:[35,36,48,84],auto_rang:35,autom:[4,119],automat:[1,3,7,8,30,36,48,67,74,84,89,106,110,113,119,121],autorang:16,autoreload:2,autoscal:30,aux_in1:17,aux_in2:17,aux_in3:17,aux_in4:17,aux_out1:17,aux_out2:17,aux_out3:17,aux_out4:17,auxiliari:113,auxoutputchannel:78,avail:[1,3,4,24,29,32,33,36,38,66,67,71,74,75,79,82,84,87,101,103,119,124],avanc:123,averag:[30,36,38,68,85,87,117],averageandraw:6,avg:[30,85],avoid:[13,29,37,39,111],awar:113,awg1:[15,32],awg5014:[15,66,106,108,117],awg5014c:117,awg5200:[66,110],awg520:66,awg70000a:[66,111],awg70001a:87,awg70002a:[66,117],awg:[4,10,14,15,71,87,117],awg_amplitud:33,awg_ch1:33,awg_ch2:33,awg_fil:[15,87],awg_file_format_channel:87,awg_file_format_head:87,awgchannel:87,awgfil:32,awgfilenam:15,awgfilepars:[32,66],awgfilepath:87,awgseq:15,ax1:[15,32],ax2:[15,32],ax3:32,ax4:32,axes:[1,25,30,82],axes_api:1,axi:[1,30,36,37,40,45,51,57,58,78,124],axs:36,b020397:[14,33],b051039:15,b200:29,b20:29,b800:29,babi:125,back:[4,10,26,30,32,35,37,61,70,73,82,87,113,119,121,124,125],backend:[1,63,111],background:[20,22,124],background_color:93,background_funct:46,backslash:113,backward:[47,75],bad:2,bad_valu:4,bandwidth:[19,29,30,36,78,84],bar:[113,121],bare:[52,60],base0:125,base1:125,base2:125,base:[1,7,12,16,29,37,42,45,46,47,48,49,53,54,61,63,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,113,117,120,121,124,125],base_loc:[2,9,47],base_spdt:66,baseplot:93,baseserv:125,bash:120,basi:[33,57],basic:[3,4,9,15,31,51,68,75,119],basicconfig:[15,16,38],baud:[70,86],bdaqctrl:67,bear:113,becaus:[1,2,3,31,35,45,46,49,67,68,71,113,124,125],becom:[19,32,82,116,124],been:[3,7,31,32,37,39,58,71,78,85,86,87,124,125],befor:[2,3,4,9,10,11,14,16,17,29,30,31,36,37,38,39,48,52,55,58,62,66,67,68,69,71,78,79,82,86,87,111,113,120,121,124],beforehand:66,begin_tim:70,behav:113,behavior:[19,20,22,25,113,124],behaviour:[23,58,78],behind:36,being:[2,9,10,14,19,32,33,35,45,85,87],belong:[3,40,57,58,84],below:[1,2,3,4,10,12,32,113,116,117],ben:37,benchmark:[11,110],benchmark_seqx:14,benchmarkingqcod:14,best:113,beta:[31,68,71,79,82,84,85,86,87],better:[3,13,29,33,50,110,113,124],between:[1,3,24,35,46,49,52,58,60,78,87,89,92,93,94],beyond:87,bid:67,bidirect:58,binari:[12,14,33,67,87],binascii:31,bind:36,biodaq:67,bip:75,bit:[13,14,29,33,67,68,84,86,87],bits_per_sampl:[19,68],black:93,blame:[27,28,87],blank:[26,51,113],blind:10,block:[10,20,51,75,80,125],board:[3,19,27,28,68],board_id:[3,19,68],board_kind:[19,68],bodi:113,boil:3,boilerpl:[3,50],bold:116,bonu:117,bool:[3,40,42,45,52,57,58,70,71,74,75,80,81,84,86,87,89,92,95],bool_to_str:87,bootstrap:14,bore:39,born:113,bot:[108,109],both:[1,3,7,11,30,33,36,47,71,84,86,87,113,116,119,121,124,125],bottom:[75,93],bound:[3,10,124],box:117,bracket:113,branch:113,breakif:[10,101,124],briefli:33,brittl:124,broadbean:[14,33],broader:119,broadli:3,broken:[2,58],brows:[120,125],browser:120,buf:68,buffer:[18,19,67,68,86,108,117],buffer_acq_mod:17,buffer_list:3,buffer_npt:17,buffer_paus:17,buffer_reset:17,buffer_sr:17,buffer_start:17,buffer_timeout:[19,68],buffer_trig_mod:17,buffers_per_acquisit:[19,68],bug:[39,114],build:[32,33,36,78,87,106,107,113,117,124],build_sweep:[36,78],built:[1,7,36,86],builtin:50,bunch:36,bundl:87,burden:124,burst:117,busi:67,button:[87,113,120],bwlimit1:19,bwlimit2:19,bwlimit:[19,68],bwmode:36,byref:16,byte_to_bit:86,byte_to_value_dict:[3,68],bytecod:4,c_amp_in:[3,81],c_set:7,cabl:[87,124],calc_set_point:87,calcul:[37,78,84,116,124],calibr:[66,68],california:4,call:[2,3,7,16,20,23,29,30,31,32,37,38,40,43,45,46,48,49,50,52,57,58,62,63,65,67,68,70,73,74,75,78,82,85,86,87,89,92,113,120,124],call_by_str:16,call_by_str_parsed_out:16,call_cmd:50,callabl:[10,20,41,43,46,48,55,58,62,64,65,78,92,108,124],callsig:32,came:68,camp1:22,camp:22,can:[0,1,2,3,4,7,8,13,14,17,23,24,26,27,28,29,30,32,33,35,36,37,39,40,41,44,45,46,48,50,51,55,57,58,60,61,64,67,68,69,70,71,74,75,78,82,83,84,87,91,92,93,94,95,111,113,116,117,118,119,120,121,124,125],cancel:[27,87],cannot:[30,37,40,57,67,86,87,124],canva:1,capabl:[21,116,119,124],capit:113,captur:[10,30,68,86,117],capture_config:[18,86],capture_data:86,capture_sampl:[18,86],card:[3,19,67,68,71,107],care:[2,3,33,120],careful:75,cartesian:[37,124],cartesian_measur:37,cast:[13,32,33,50],caus:[27,28,86],caution:[87,117],caveat:124,cdirectori:15,cdll:3,cell:[29,32],center:[30,85],certain:[10,36,37,68,80,82],cesr:86,cffi:67,ch01:28,ch01_i:27,ch01_irang:27,ch01_slope:[16,27],ch01_sync:16,ch01_sync_delai:16,ch01_sync_dur:16,ch01_v:[13,16,27],ch01_vrang:27,ch02:[27,28],ch02_slope:27,ch02_sync:27,ch02_v:[16,27],ch0_offset:21,ch0_voltag:21,ch1:[9,10,14,15,29,33,87],ch1_amp:[33,87],ch1_amplitud:24,ch1_amplitude_unit:24,ch1_burst_mod:24,ch1_burst_ncycl:24,ch1_burst_phas:24,ch1_burst_polar:24,ch1_burst_stat:24,ch1_curvedata:31,ch1_databuff:17,ch1_displai:17,ch1_frequenc:24,ch1_function_typ:24,ch1_offset:24,ch1_output:24,ch1_posit:31,ch1_ramp_symmetri:24,ch1_ratio:17,ch1_scale:31,ch1_state:31,ch1_trigger_count:24,ch1_trigger_delai:24,ch1_trigger_slop:24,ch1_trigger_sourc:24,ch1_trigger_tim:24,ch1_voltag:21,ch2:[9,10,31,33,87],ch2_amp:[33,87],ch2_curvedata:31,ch2_databuff:17,ch2_displai:17,ch2_offset:[15,32],ch2_posit:31,ch2_ratio:17,ch2_scale:31,ch2_state:31,ch3_state:32,ch41_v:11,ch42_v:11,ch4:39,ch_name:3,cha0:66,chain:124,chan0:66,chan1:[36,41],chan1_list:15,chan2:36,chan:74,chan_alia:34,chan_go:16,chan_list:42,chan_reset_1:16,chan_reset_2:16,chan_reset_3:16,chan_typ:42,chanc:68,chandata:36,chang:[1,3,4,10,19,21,26,27,28,31,36,40,44,47,57,58,75,78,86,87,112,113,117,119,121,124],change_autozero:87,change_displai:87,change_fold:87,channel4:39,channel:[10,11,14,17,19,20,21,22,23,29,31,32,33,39,42,53,54,63,67,68,70,71,72,73,74,75,78,80,82,84,86,87,89,108,109,116,117,118,124],channel_a:68,channel_cfg:[15,87],channel_class:73,channel_lett:73,channel_rang:[19,68],channel_range1:19,channel_range2:19,channel_select:[19,68],channel_skew_n:87,channel_state_n:87,channelbuff:86,channelis:[23,74,87,111],channelist:42,channellist:[74,101],channum:[71,74,78,84],charact:[40,51,52,57,58,63,82,84,113],characterist:124,chassi:71,chatoor:113,check:[3,4,35,37,64,67,80,82,84,86,89,93,94,113,118,122,124,125],check_en:80,check_error:16,check_for_error:85,check_module_error:86,check_schema:2,check_stat:80,checklist:113,chime:113,chnum:32,choic:[30,68],choos:[32,75,78,84,87,120,124],chore:113,chosen:[35,78],chx:10,circuit:[26,38,73,111],clariti:3,classic:13,classmethod:[66,68,71,79,85],clean:[29,83,87,105,113],clean_str:83,cleanup:[49,110],clear:[15,16,17,30,31,32,33,63,71,86,87],clear_buff:68,clear_channel:[30,84],clear_error:79,clear_message_queu:[31,32,87],clear_waveform:87,clearli:113,clearqueu:15,clearsequencelist:[14,33,87],clearwaveformlist:[14,33,87],clever:114,cli:119,click:[1,26,120],clim:1,clip:124,clock:[3,19,68,87],clock_edg:[19,68],clock_edge_ris:19,clock_external_frequ:33,clock_freq:15,clock_frequ:71,clock_sourc:[3,19,33,68,87],clone:[113,120],close:[1,4,11,14,21,23,27,28,30,31,32,33,34,36,37,67,78,82,110,113],close_ev:1,close_fil:49,closedevic:85,cls:2,cmd:[16,69,70,73,74,82,86,87],cmd_str:16,coars:70,code:[1,3,4,50,58,69,70,79,86,95,114,119,124],codebas:[4,119],coil:37,coil_const:37,col:84,cold:82,collect:[7,9,60,68,116,119,124],colloqui:[3,87],colon:[67,71,73,81,82,86,87,113],color:[1,15,32,36,93],colorbar:[1,45],colormap:121,column:[1,51,124],com2:63,com4:18,com:[26,79,86,88,113,115,117,120],combin:[43,46,51,58,85,90,92,101,109,116,117,123,124],combined_set:0,combinedparamet:[0,101],come:[14,51,113,120,124],comma:[67,71,73,81,82,86,87],command:[1,3,4,12,13,16,19,31,32,36,50,58,67,70,71,73,74,75,79,82,84,86,87,101,113,116,119,120,121,124],comment:[3,51,67,113],commit:[68,118,119,120],common:[3,67,71,73,81,82,84,86,87,116,124],commonli:[71,79,84,87],commun:[3,37,52,63,68,70,73,75,82,86,87,116,118,124],communc:37,compani:3,compar:[11,29,30,113],compat:[55,62,74,75,86,87,119,124],compatibil:87,compens:87,compil:33,complain:[10,124],complet:[1,14,16,29,32,45,46,67,87,124,125],completed_acquisit:29,complex:[30,58,84,113,124],compliant:113,complic:[50,124],compon:[9,57,68,95,119,124],compos:[33,87],composit:[16,124],comprehens:[113,117],comput:[1,23,78,82,113,124],con:107,concaten:[14,33,74,113],concept:125,conclus:13,concret:4,concurr:124,conda:120,condit:[3,10,41,58,67,82,87,124],config:[3,19,68,87,101,109,113,117,123],config_file_nam:44,configur:[4,19,36,44,67,68,85,87,104,117,119,123,124],conflict:[67,124],confusingli:125,congratul:117,connect:[3,4,11,12,13,14,15,16,17,18,19,20,23,24,26,27,28,29,30,31,32,33,35,36,37,38,39,63,68,70,71,73,75,78,82,86,87,95,116,124],connect_messag:[3,4,70,71,74],consequ:124,consid:[3,10,23,29,87,113],consist:[10,27,28,30,75,85,87,91,113,124],consol:4,consolid:119,constant:[6,10,36,37,75,78,85],constitut:4,constraint:14,construct:[3,6,30,41,45,52,58,125],constructor:[3,40,45,57,75,93,94],consult:[86,124],cont:[84,86,117],cont_meas_off:30,cont_meas_on:30,conta:78,contact:110,contain:[3,4,6,9,10,23,30,32,33,42,45,46,48,51,67,68,70,71,73,74,78,79,81,82,84,86,87,95,113,116,120,121,124,125],content:[45,117],context:[73,82,87,124],contian:68,contin:[69,87],contini:30,continu:[4,32,36,55,87,95,113,117],contrast:113,contribut:[3,39,114,118],contributor:113,control:[2,3,8,9,19,20,21,22,23,25,27,28,30,32,36,68,70,72,75,80,82,84,87,107,117,119,121,124,125],controlthermometri:82,conveni:[86,87,95,124],convent:[3,4],convers:[87,113],convert:[3,4,37,45,47,68,74,82,86,87,124],coordin:37,copi:[2,4,20,45,60,75,78,124],core:[0,1,15,16,17,18,19,20,22,25,29,30,31,34,36,38,113,117,118,119,121],corner:[19,20,22,25],correct:[1,3,21,29,32,36,37,49,86,109],correctli:[4,35,37],correspond:[1,11,17,21,23,29,32,33,51,68,70,75,78,84,86,87],cosmet:[105,106],cost:75,could:[16,32,113,124],count:[7,16,50,67,74,87,125],counter:[8,10,48,67],coupl:[3,19,29,36,68,84,87],coupling1:19,coupling2:19,cours:[9,29,113,124],cov:113,cover:[33,113,125],coverag:[113,119],coveragerc:113,cpld:68,cpld_version:[19,68],cpu:30,crash:[68,119],creat:[1,5,7,8,10,19,20,22,23,38,42,45,49,55,57,58,60,66,68,70,71,75,78,79,82,87,88,91,92,116,117,120,121,124,125],create_and_goto_dir:87,creation:[3,10,125],critic:[2,121],cryo:107,cryogen:111,ctwrapper:16,ctype:3,cumbersom:74,curernt:125,curr:[3,12,22,23,35,81,86],current:[2,3,8,9,12,22,23,27,28,30,31,32,35,36,37,44,46,47,48,67,71,74,78,80,81,82,86,87,89,90,92,95,113,121,124,125],current_config:[2,44],current_config_path:44,current_directori:33,current_field:37,current_r:37,current_ramp_limit:[37,80],current_rang:35,current_schema:[2,44],current_target:37,current_to_field:37,current_valu:16,currentparamet:[3,22,81],curv:[12,71,87,117],custom:[7,8,44,47,69,117],customawgfil:87,customis:74,cutoff_hi:86,cutoff_lo:86,cwd:44,cwd_file_nam:[2,44],cycl:[3,19,20,22,23,24,71,124],cylindirc:37,cylindr:37,cylindrical_measur:37,d5a:66,d5a_modul:75,d5mux:75,d_bdaq_c_interfac:67,dac1:6,dac2:6,dac3:6,dac:[6,9,10,66,70,75,109],dac_ch1:[9,10],dac_ch1_set:[9,10],dac_ch2:[9,10],dac_channel_class:70,dac_commands_v_13:74,dac_delai:75,dac_idn:[9,10],dac_slot_class:70,dac_step:75,dac_verbose_channel:10,dacchannel:70,dacexcept:70,dacn:75,dacnam:75,dacread:70,dacslot:70,dacx:75,dai:113,daili:120,dancer:113,daqnavi:67,daqnaviexcept:67,daqnaviwarn:67,dark:93,dat:51,data1:30,data2:[5,8,31],data:[0,1,2,3,6,7,8,9,11,12,13,14,16,17,18,19,20,22,23,29,30,31,33,36,38,45,46,47,48,49,51,55,57,58,67,68,71,74,75,78,84,86,87,90,92,93,94,101,109,113,116,117,119,124,125],data_arrai:9,data_avgd:29,data_buff:16,data_hd:29,data_l:5,data_ld:29,data_set:[2,5,9,10,16,49,87,104],data_v:58,dataarrai:[0,1,7,9,22,40,46,49,57,92,101,116,124],dataflow:68,dataformat:[29,117],dataformatt:113,datamanag:[116,124],datamin:124,datamod:[0,7,11,19,22,36,125],datapoint:[39,87],datasav:117,dataserv:[46,116,124],dataset:[0,1,2,5,6,7,8,9,10,11,12,13,16,17,18,19,22,23,29,30,31,36,38,39,45,48,49,51,57,71,87,90,91,92,101,111,116,123,125],date:[8,10,48,68],datetim:48,daunt:113,dbm:[4,30,38,84],dc_channel_numb:87,dc_output_level_n:87,dcl:29,dclimit:29,ddl:67,deacadac:70,deadlin:20,dealt:124,debug:[2,5,15,31,36,38,39,121,124,125],debugmod:16,deca:21,decadac:[66,108,110,111,117],decadec:70,decid:[2,33,93,120,124,125],decim:[19,68],declar:67,decor:4,decoupl:113,decreas:11,deem:78,deeper:20,def:[0,1,2,3,4,7,10,13,14,15,16,18,20,22,37,82,125],default_figs:1,default_file_nam:44,default_fmt:121,default_formatt:[46,90,92],default_io:[46,90,92],default_measur:9,default_parameter_nam:110,default_server_nam:85,defaultcolormap:121,defaulttestload:5,defer:41,deferred_oper:101,defin:[0,2,3,30,32,36,40,50,57,71,73,75,81,82,86,87,113,116,117,121,124,125],definit:[4,29,36,50,84,124],defit:29,deg:[17,36],deg_to_rad:79,degre:[24,33,36,58],del:3,delai:[0,1,9,10,16,18,19,28,35,36,37,55,58,59,61,64,75,84,89,124,125],delay_in_points_n:87,delay_in_time_n:87,deleg:45,delegate_attr_dict:95,delet:[3,87,113],delete_all_waveforms_from_list:[15,32,87],deliber:35,demand:124,demo:117,demod1:[36,78],demod1_harmon:36,demod1_i:36,demod1_ord:36,demod1_phaseshift:36,demod1_phi:36,demod1_r:36,demod1_sampl:36,demod1_sampler:36,demod1_signalin:36,demod1_sinc:36,demod1_stream:36,demod1_timeconst:36,demod1_trigg:36,demod1_x:36,demod:36,demodul:[78,117],demodulation_acquisitioncontrol:[19,68],demodulation_frequ:[19,68],demonstr:7,denot:[40,51,57,92],depend:[1,3,19,27,28,36,51,84,87,103,110,113,117,120,124],dependend:120,deploi:[12,87],deprec:[15,18,45,87,106],deprecationwarn:[15,87],depth:39,deriv:116,descipt:44,describ:[2,3,7,10,33,40,55,57,78,87,113,121,124],descript:[2,45,87,113,121,124],descriptor:75,design:[79,87,88,124],desir:[8,10,29,37,86],desktop:[16,120],destruct:124,detail:[1,86,113,124],detect:[84,109],determin:[49,94],dev2235:36,dev:[2,12,13,26],develop:[4,71,78,114,118,119,120],deviat:14,devic:[4,26,63,67,71,73,75,78,82,84,87,107,124],device_clear:63,device_descript:67,device_id:78,dft:[19,68],dg4000:66,dg4062:83,dg4102:83,dg4162:83,dg4202:83,diagon:116,dialogu:4,dict:[8,40,44,45,48,49,52,53,54,57,58,63,67,70,71,73,74,81,82,86,87,89,92,108,124],dictionari:[3,32,68,86,87,95,121,124],did:[3,11],didact:10,diff:87,differ:[1,3,7,8,23,30,40,46,57,74,78,84,87,113,116,119,124,125],differenti:45,difficult:113,difficulti:113,dig:[36,71,109],digit:[3,10,67,71,74,87,107],digital_amplitude_n:87,digital_high_n:87,digital_low_n:87,digital_method_n:87,digital_offset_n:87,dilut:82,dim:38,dimens:[7,40,45,51,57,124],dimension:[1,45,46,82],dio:67,dir:[2,87],direct:[33,40,56,57,71,85,113],directli:[1,3,6,7,27,28,32,36,37,46,55,82,87,117,124],directori:[2,3,46,47,87,90,92,113,121],disabl:[19,33,42,46,80],disadvantag:124,disappear:124,disc:87,disconnect:124,discov:66,discret:124,discuss:[113,118],disk:[9,46,47,49,87,92,124],diskio:[9,46,48,90,92,101,116],displai:[0,1,2,3,11,13,15,16,17,18,19,20,22,25,29,30,31,34,36,38,39,84,87],display_clear:[11,13,16,79,87],display_format:38,display_grid:[30,84],display_norm:87,display_refer:38,display_scal:38,display_settext:[3,23],display_sij_split:30,display_single_window:30,display_text:[11,13],dissip:124,distinguish:15,distribut:119,div:[29,31],dived:66,divid:[58,66,107,108],divider_r:87,divis:[31,66],division_valu:66,divsion:66,dll:[26,67,68,85,117,124],dll_path:[3,68,85],dma:67,dmm:[9,10,11,13,16,79,109,110],dmm_data_buff:16,dmm_idn:9,dmm_v1:9,dmm_v2:9,dmm_volt:13,dmm_voltag:10,do_acquisit:68,do_get_frequ:84,do_get_pow:84,do_get_pulse_delai:84,do_get_statu:84,do_get_status_of_alc:84,do_get_status_of_modul:84,do_set_frequ:84,do_set_pow:84,do_set_pulse_delai:84,do_set_statu:84,do_set_status_of_alc:84,do_set_status_of_modul:84,doc:[2,9,75,113,117,120],docstr:[3,7,40,50,57,58,87,113],document:[1,15,37,40,50,57,58,68,87,104,105,107,111,113,119,124],doe:[1,4,9,10,25,30,33,35,36,37,45,48,51,55,56,63,66,67,71,73,75,79,81,82,84,86,87,88,113,124],doesn:[3,4,7,32,45,67,71,87,113],dofastsweep:[12,23,87],doing:[19,30,113,124],domain:[36,82],domin:119,dominik:113,don:[1,3,31,49,60,61,70,71,74,87,113,124,125],done:[1,10,14,32,33,36,82,105,124,125],dot:[2,113,121],doubl:[48,87],doubt:[36,113],dovog:[26,113],down:[3,9,23,32,33,37,113],download:[26,36,86,117,120],dramat:124,drive:87,driver:[4,6,7,10,17,23,27,28,29,30,31,32,36,37,38,39,66,67,68,69,70,71,72,74,75,78,79,80,81,82,83,84,85,86,87,88,89,105,106,107,108,109,110,111,113,119,123,124],driver_path:[26,73],driver_vers:[19,68],drivertestcas:[66,71,79,88],drop:35,dtype:15,due:[3,14,27,28,29,36,70,124,125],dummi:[6,10,15,19,91,117,125],dummy_set:19,dummyinstru:[6,8,9,10],dump:68,duplic:[3,87],dur:36,durat:[28,36],dure:[1,16,58,60,64,68,71,87,103,124,125],dut:[30,38],dynam:[27,28,67,117],e1cb66:32,e8267:79,e8267c:[66,107],e8267d:111,e8527d:[66,71,113],each:[0,1,3,4,5,7,8,9,10,11,12,13,14,16,17,19,20,21,22,23,24,27,28,29,30,31,32,33,36,38,40,45,46,49,50,51,52,55,57,58,60,67,68,70,74,75,78,79,86,87,88,93,94,95,113,116,119,124,125],eachot:125,earli:31,easi:[4,6,19,113,116,119],easier:[78,110,111,113,124],easiest:2,easili:[1,10,87,119],echo:70,edg:[19,29,31],edit:[85,120],editor:113,ee82e:32,effect:[29,68,87,121],effort:3,eight:[27,28],either:[1,3,23,27,28,29,36,49,67,71,80,83,87,94,120,124],elaps:[16,20,22],electron:[3,119],elem1m1ch1:87,elem1m1ch2:87,elem1m2ch1:87,elem1m2ch2:87,elem2m1ch1:87,elem2m1ch2:87,elem2m2ch1:87,elem2m2ch2:87,element:[1,32,87,94,121,124],element_no:87,elemnum:32,elif:20,elnum:32,elpi:113,els:[2,16,21,30,33,67,87,113],elsewher:95,emac:113,email:[113,118],embed:1,emoji:113,empti:[2,7,10,20,32,70],enabl:[19,36,38,39,58,80,89],enable_record_head:[19,68],encapsul:124,enco:16,encod:[16,50,58,67],encount:67,encourag:[3,36,113],end:[3,8,48,60,63,67,68,84,87,113,119,124],endpoint:[11,87],engin:19,enough:[4,10,67,82,113,116],ensur:[29,31,38,85,86,113,124],enter:[40,57,120,124],entir:[17,19,24,35,84,86,95,124],entri:[2,49,55,57,87,101],entrypoint:103,enumer:36,env:[2,15,16,44,120,121],env_file_nam:[2,44],envelop:29,environ:[2,119,120,121],eom:4,equal:[86,121],equitim:86,equival:[7,87,119],err:85,error:[0,2,3,4,16,20,27,35,37,45,55,58,67,68,71,75,86,87,109,117,121,125],error_cod:75,errorcod:67,errormsg:67,esr:86,essenti:[10,79,86],establish:37,etc:[1,3,7,9,21,23,30,40,45,50,57,113,124],ethernet:[3,4,52,87],etr_5v:19,eumer:61,evalu:62,even:[4,7,13,27,28,37,47,49,58,60,61,63,67,71,73,74,81,86,87,113,124],event:[32,33,36,67,70,86,87,117],event_input_imped:87,event_input_polar:87,event_input_threshold:87,event_jump:[14,33,87],event_jump_to:[14,33,87],eventu:33,everi:[1,3,9,43,46,55,65,68,78,118,120,124,125],everybodi:[113,118],everyon:113,everyth:[32,36,48,101,113],exactli:[6,16,29,113],examin:[38,82],exampl:[0,1,2,7,8,9,40,41,45,48,57,58,61,63,68,71,86,87,107,111,113,116,119,120,122,125],examplewaveform1:33,exce:113,exceed:[32,67],excel:4,except:[2,3,15,16,35,37,67,69,70,71,73,80,82,86,87,89,96],exec_funct:16,exec_str:16,execut:[10,16,29,36,50,62,66,67,71,75,78,79,84,87,88,116,119,120,124],executor:125,exemplifi:36,exept:36,exercis:113,exis:30,exist:[3,10,30,32,48,49,61,67,87,90,92,111,113,119,124],exit:87,exit_kei:87,exp:35,expand:114,expect:[2,3,16,20,36,39,40,49,55,57,67,74,86,87,113,125],experi:[8,10,44,117,119,124],experiment:[119,124],expir:16,explain:[113,121],explan:86,explanatori:38,explicit:[32,58,60],explicitli:[40,45,57,113,124],explor:[10,87],exponenti:69,exponentialdecai:33,expos:[74,84,121],express:[58,124],ext:[16,24,33],ext_trigg:17,extend:[32,51,60,84],extens:[33,51,87],extern:[19,24,84,85,87],external_add_n:87,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:87,external_startcaptur:[19,68],external_trigger_coupl:[19,68],external_trigger_rang:[19,68],extra:[7,13,40,57,58,73,82,87,89,113,124],extra_schema_path:2,extract:82,extrem:124,f008:82,f1d:66,facilit:120,fact:113,factor:[3,27,28,36],factori:[69,87],fail:[2,110,113,124],failur:3,falcon:113,fall:87,fals:[2,7,9,15,16,20,21,22,27,28,30,35,36,39,40,45,46,57,58,59,69,70,71,74,75,79,80,83,84,86,87,92,121,124],familiaris:9,faq:123,fast:[74,82,87,111,117,124],faster:[30,32,110,113],fastest:[32,36],fastsweep:23,favourit:[9,120],feasibl:[4,119],feat:113,featur:[1,3,4,21,39,85,107,108,109,110,111,114,119],feed:[3,81,86],feedback:[61,124],feel:[39,113],fetch:[13,82],few:[8,24,30,50,71,78,113,118],fewer:[27,28],ff4500:32,ff8c00:32,fft:78,fgen:33,fgen_amplitud:33,fgen_dclevel:33,fgen_frequ:33,fgen_offset:33,fgen_period:33,fgen_phas:33,fgen_signalpath:33,fgen_symmetri:33,fgen_typ:33,field:[8,37,40,50,51,57,58,80,82,119,125],field_limit:[37,80],field_measur:37,field_target:37,field_target_cartesian:37,field_target_cylindr:37,field_target_spher:37,field_valu:82,field_vector:37,fieldvector:37,fifo:19,fifo_only_stream:[19,68],fig1:15,fig:[1,30,32,36,37],fig_x_po:93,fig_x_posit:93,fig_y_po:93,fig_y_posit:93,figsiz:[1,10,93,94],figur:[1,15,16,32,36,93,94,113,124],figure_api:1,file:[2,10,33,44,46,48,49,51,67,75,82,87,90,92,113,117,120,123,124],file_path:87,filen:44,filenam:[15,32,33,87],filepath:32,filestructur:87,fill:[7,8,10,17,55,87,124],filter:[36,38,78],filter_slop:17,filw:87,find:[20,26,39,48,68,113,118,120,121],find_board:[19,68],find_modul:86,findal:82,finder:10,fine:[75,124],finish:[1,8,9,10,12,13,30,36,38,68,80,89,105,124],finit:[27,28,74,75],fire:[27,28],firmwar:[3,4,9,10,11,12,13,14,15,16,17,18,19,23,24,26,29,30,31,33,35,37,38,39,67,68,70,71,73,81,82,84,86,87,108],first:[1,2,4,7,8,9,10,13,14,16,24,30,32,37,39,40,45,51,57,58,62,69,80,87,93,94,113,120,124,125],first_delai:16,fit:[32,38,68,113],five:85,fix:[29,36,37,45,50,60,82,108,109,110,111,112,113,124,125],fixabl:113,fixtur:[4,66,71,79],flag:[27,28,75,85],flake8:113,flavor:124,flexibl:[36,116,119],float_round:89,flow:[27,28,35],flush:[24,86,87],flush_error_queu:[24,71],fmt:[2,8,10,48],fmt_counter:48,fmt_date:48,fmt_time:48,fname:87,focus:113,folder:[3,4,47,51,87],follow:[1,3,4,6,10,11,24,32,37,38,58,70,87,113,120,121,124,125],foo:[113,121,125],footer:113,forc:[19,20,22,25,30,32,87],force_ev:87,force_logicjump:87,force_reload:87,force_trigg:[31,87],force_trigger_ev:87,force_triggera:87,force_triggerb:87,foreground:[110,124],foreground_color:93,foreign:67,fork:113,form:[3,4,12,50,68,82,84],format:[3,8,10,11,12,13,14,15,16,23,27,28,30,32,33,35,36,37,46,48,50,51,67,84,87,90,92,119,124],formatloc:[2,8,10,92,101,116],formatt:[5,9,46,90,92,101,107,116,117,121,124],former:[12,13],formerli:[3,4,88],forward:[19,47,68],foul:32,found:[3,4,30,32,49,62,67,75,87,113,117],four:[3,21,39,67,70,83],fourier:68,fraction:93,framework:[113,119,124],free:[39,67],free_mem:68,freedom:58,freeli:124,freq:[30,85],frequenc:[3,10,17,30,36,38,68,69,71,84,85,86,87,125],frequency_set:30,frequencysweep:84,frequencysweepmagphas:84,frequent:113,freshli:120,fridg:[82,119],friendli:78,from:[0,1,2,3,4,6,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,35,36,37,38,39,40,45,46,48,49,50,51,55,57,58,67,68,69,71,74,75,78,79,81,82,84,86,87,89,90,91,94,95,109,113,115,116,117,119,124,125],front:[36,87],frontend:121,full:[0,2,24,27,29,35,36,46,51,87,90,92,119],full_nam:[0,9,10,45],full_trac:30,fulli:[29,30,36,113],fullrang:75,fun:74,func:[3,16,62,87],func_nam:20,functool:38,fundament:124,further:[83,116,119],furthermor:[1,37,78],futur:[87,113,125],gain:[81,86],garbag:68,gate:[8,9,10,24,41,70,116,124,125],gate_frequ:125,gate_frequency_set:125,gave:32,gcc:67,gee:36,gen:87,gener:[3,4,10,14,24,29,31,32,37,39,46,48,60,67,69,71,75,78,79,83,84,85,86,87,88,107,111,113,116,117,119,124],generate_awg_fil:[15,87],generate_channel_cfg:87,generate_sequence_cfg:87,get:[0,2,3,4,6,7,8,9,10,11,15,16,19,20,21,22,23,25,27,28,29,31,34,35,36,37,38,40,45,49,56,57,58,66,68,71,74,75,78,81,82,84,86,87,95,113,117,121,124,125],get_al:[75,82,84,87],get_board_info:68,get_buffers_en:75,get_capture_data:[18,86],get_chang:82,get_cmd:[3,4,10,58,59,68,82,125],get_compon:37,get_current_folder_nam:87,get_data_set:[0,1,10,11,12,13,16,38],get_error:87,get_filenam:87,get_filter_valu:75,get_folder_cont:87,get_funct:68,get_idn:[3,19,67,68,70,71,73,75,81,82,86,87],get_instrument_valu:66,get_jumpmod:87,get_latest:[31,36,40,41,57,58],get_mod:75,get_module_idn:86,get_module_statu:86,get_number_of_channel:73,get_pars:[3,4,58,59],get_pol_dac:75,get_power_at_freq:85,get_processed_data:[19,68],get_raw:[36,66,69,84,86,87],get_remote_set:75,get_sample_r:68,get_spectrum:85,get_sq_mod:87,get_sqel_loopcnt:87,get_sqel_trigger_wait:87,get_sqel_waveform:87,get_stat:87,get_voltag:86,getattr:3,getcwd:32,getlogg:[5,31,32,36,39],gettabl:[3,7,40,57,58,81,86,91,116,124],getter:[4,16,116],getx:125,ghz:38,giga:77,giga_b:77,gimm:24,git:[20,117,119,120],github:[113,115,116,117,119],giulioungaretti:113,give:[1,4,7,10,37,38,39,55,70,87,113,124],given:[0,1,27,28,33,37,42,52,67,68,70,83,113,124,125],global:[3,21,29,30,117],glori:4,gnuplot:[51,119],gnuplot_format:[5,9],gnuplotformat:[5,9,46,90,92,101,116,124],go_to:[14,33,87],goal:113,goe:[4,35],going:[3,6,39,75],golden:3,gone:35,good:[2,3,10,31,33,36,84,113],googl:113,got:[13,113],gotexcept:15,goto_l:15,goto_root:87,goto_st:[32,87],goto_to_index_no:87,gotten:[24,27,28,32,124],gpib0:[17,18,20,22,35,38],gpib:[3,4,87,89],gradual:21,grai:93,graph:[10,38,40,57,58],graphicswindow:93,great:[29,113],greatest:124,grid:[30,84],ground:[29,84],group:[1,3,53,67,84,113,119,124],grow:118,gs200:[66,106,111,117],gs200_monitor:89,gs200except:89,gs210:117,guarante:2,gui:[1,2,16,22,36,113,119,121],guid:[1,68,111,113,118,120],guidelin:113,h5fmt:5,hack:[113,121],hackish:15,had:[32,67],half:36,halfrang:75,halt:64,halt_bg:19,hammer_tim:8,han:32,hand:[32,33],handl:[3,4,7,40,45,46,50,57,67,68,74,75,93,110,116,117],handle_buff:68,handle_clos:1,handler:5,hang:113,happen:[3,27,28,32,45,62,124],happi:113,hard:[87,113],harder:[113,124],hardwar:[27,28,32,37,70,73,75,82,84,87,113,116,124],harmon:17,harvard:[21,66],has:[1,3,7,9,10,17,21,23,24,27,28,29,31,32,35,36,37,39,40,45,51,57,58,67,68,71,78,80,86,87,113,121,124,125],hasattr:[16,20],hasn:[3,67],have:[1,2,3,4,6,7,8,9,10,23,27,28,30,31,32,33,36,37,38,39,40,45,49,51,56,57,58,61,66,67,68,69,70,71,74,75,78,79,81,84,85,86,87,88,94,113,116,118,119,120,124,125],haz:105,hdf5:[107,124],hdf5_format:5,hdf5format:5,head:87,header:[19,24,67,113],heater:82,heater_off:82,heater_on:82,heatmap:[93,94,121],height:[93,94],helium:[82,110],help:[2,3,32,36,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,87,91,93,94,95,113,119,124],helper:[2,5,32,78,101,121],henc:70,here:[1,3,4,7,17,19,23,26,27,28,29,30,36,45,67,71,73,74,78,81,82,86,87,91,113,120,124],hesit:113,hewlett:[38,69],hidden:39,hierarchi:114,high:[3,10,29,33,84,87,113,124],high_definition_bandwidth:29,high_definition_st:29,higher:[37,121,124],highest:[48,124],highlevel:16,highli:120,hislip0:13,histori:[87,113],hiswaveform:15,hkey_current_usersoftwareoxford:82,hold:[3,13,17,23,25,36,69,71,82,84,86,87,116,124,125],hold_repetition_r:87,holdoff:36,home:[2,44,113,121],home_file_nam:[2,44],hook:[66,71,79],hopefulli:39,horisont:[31,36],horizont:[31,117],horizontal_scal:31,host:[27,28],hotfix:113,hound:85,how:[2,3,6,7,10,30,32,36,37,38,40,49,51,55,57,58,60,61,86,93,113,115,116,117,118,124,125],howev:[4,29,30,37,71,113],hp33210a:66,hp8133a:66,hp8753d:[66,111,117],hp8753d_tutori:38,hp8753dtrace:69,hp_83650a:66,hpintpars:69,htm:75,html:[1,4,26,63],http:[1,4,26,63,75,86,113,115,117,120],huge:[40,57],human:[3,10,68,106],i3d:37,iPS:107,id1:51,id2:51,id3:51,idea:[3,10,33,84,113,118],ideal:113,ident:[3,7,23,78,87,125],identifi:[40,46,49,51,53,57,58,70,82,86],idl:[34,87],idn:[3,4,9,10,15,17,19,23,29,33,34,38,67,70,71,73,74,75,81,82,86,87],idn_dict:4,idn_param:70,idr:82,iff:87,igh:82,ignor:[30,33,40,57,62,68,87],ignore_kwarg:16,igor:119,illustr:[1,38],ilm200:66,ilm:[82,110],imaginari:30,imm:[13,24,86],immedi:[10,11,24,27,28,42,47,68,78,95,113,124],imp:15,impact:124,imped:[3,4,10,19,29,36,68,84],impedance1:19,impedance2:19,imper:113,implememnt:95,implement:[19,37,39,49,52,60,61,67,68,78,82,84,85,87],implicit:113,implicitli:124,importlib:5,impos:124,improv:[112,113],imprrov:108,inc:[12,23,37],inch:94,includ:[3,7,11,40,48,57,58,60,63,67,71,73,79,81,82,86,87,91,93,94,113,116,117,118,119,124,125],inclus:87,inconsist:124,inconsistensi:87,inconsit:31,incorrect:[4,113],incorrectli:68,increas:[7,29,37,113],increment:[51,58,109,124],ind:36,inde:[35,37,38,113],indend:36,indendet:39,indent:113,independ:[49,124],index0:7,index1:7,index:[1,7,74,75,87,94,124],indic:[0,1,37,45,87,124,125],individu:[1,30,37,42,46,60,75,80,117],inf:[16,24,27,28],infer:45,infin:87,infiniium:[66,111,117],infiniiumchannel:71,infinit:[32,33,87],infinium:39,info:[2,3,16,22,25,36,48,68,87,118,121],inform:[3,9,10,14,19,33,40,48,52,57,58,63,68,85,87,93,110,113,119,121,124],inherit:[16,68,84,87],inifit:[27,28],init:70,init_measur:[13,16,79],init_s_param:[30,84],initi:[1,3,10,18,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,82,87,90,91,92,93,94,95,119,124],initial_valu:[1,3,7,56,58],initialis:[4,9,16,71,84,85,87,117],initialz:75,inlin:39,inner:[0,1,7,45,51,124],input:[2,3,16,20,32,37,39,50,58,66,67,75,82,84,86,87,113,116,117,124],input_config:17,input_coupl:17,input_imped:3,input_shield:17,insert:[3,39,48,121],insid:[3,7,11,40,42,46,55,57,87,90,92,113,119,124],inspect:[2,37],inst0:[3,11,12,14,15,16,23,24,29,30,32,33,39,84],inst:15,instal:[36,63,67,71,75,78,86,89,103,110,111,113,115,119],instanc:[1,2,3,10,15,40,46,50,57,58,66,68,70,71,75,78,79,81,86,87,88,124],instant:67,instantan:[27,28],instanti:[3,4,19,23,36,38,46,74,80,113,117,124],instdict:32,instead:[0,1,10,15,36,45,73,82,87,125],institut:3,instr:[3,4,11,12,13,14,15,16,17,18,20,22,23,24,25,27,28,29,30,31,32,33,35,38,39,70,82,84],instruct:[4,37,111,119,120],instrument:[0,7,11,12,15,16,17,19,20,22,23,24,26,27,28,29,30,32,33,34,35,36,37,38,40,42,45,50,52,54,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,101,108,110,111,113,114,117,119,123],instrument_cod:58,instrument_driv:[3,4,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,113],instrument_i:80,instrument_mock:[5,6,8,9,10],instrument_nam:[9,10,19,45],instrument_testcas:66,instrument_x:80,instrument_z:80,instrumentchannel:[3,42,70,71,72,73,74,78,80,84,86,87,89,101],instrumentrefparamet:108,instrumentserv:[124,125],instrumentstriton:82,insuffici:124,integ:[3,7,40,45,48,57,67,86,87,89,94,121,124],integr:[1,4,20,22,23,85,113,120,124],intellig:[82,124],intend:[37,40,57,61,124],inter:75,inter_delai:[9,10,18,58,75],interact:[1,3,86,113,117,124],interdepend:124,interest:[36,113,124],interfac:[3,4,36,67,87,117,124],interleav:[19,87],interleave_adj_amplitud:87,interleave_adj_phas:87,interleave_sampl:[19,68],intermedi:113,intern:[3,17,24,33,36,37,45,58,68,71,78,86,87],internal_clock:[3,19],internal_trigger_r:87,interpret:[10,23,124],interrupt:[67,122],interv:[93,94],introduc:111,introduct:123,intrument:33,inv:24,invalid:3,invalidate_trac:69,invert:[3,22,29,81,84,86],investig:14,invit:113,invok:[3,36],involv:[9,117,119,124],io_manag:[46,90,92,124],iomanag:116,ion:36,ipinstru:[3,67,71,73,80,81,82,86,87,101,116],ips120:[66,110],ipykernel:15,ipython:[0,1,2,15,16,17,18,19,20,22,25,29,30,31,34,36,38,119,120,121],iq_arrai:7,iqarrai:7,irang:[3,28,74],irrelev:33,irrespect:[27,28,29,87],irrevers:[33,67,124],is_awg_readi:87,is_numb:83,is_setpoint:[9,45],is_typ:2,isobu:82,issu:[37,87,105,106,109,113,116],issue_warning_on:16,ital:116,item:[7,34,40,48,57,60,74],iter:[42,60,61,116],iter_error:2,ithaco:[3,66,117],ithaco_1211:[3,22,66],its:[1,3,4,7,9,10,11,21,27,28,29,32,36,45,50,58,67,68,86,87,91,94,113,116,124,125],itself:[39,42,48,58,68,87,113,124],iv_sweep:[12,23],ivvi:[66,107,109,110,111,117],javascript:[0,1,2,15,16,17,18,19,20,22,25,29,30,31,34,36,38,113],jen:113,jhn:30,jhnsrcqcodesqcodesinstrumentparamet:36,job:[124,125],join:[2,32,113,118],jorgenschaef:113,json:[2,9,30,40,52,53,57,58,63,74,86,87,107,119,121,124],json_config:2,jsonschema:2,jtar_index_no:87,jtar_stat:87,jump:[10,21,32,33,75,87],jump_log:87,jump_tim:87,jump_to:[32,87],jumplog:87,jupyt:[1,10,119,120,122],just:[0,3,6,10,11,13,23,31,32,36,39,50,51,64,70,74,75,113,116,120,123,124,125],keep:[37,49,68,70,108,113,119,121,124],kei:[1,3,32,46,60,68,86,87,92,95,121,124],keightlei:108,keith:[12,20,22,23,106],keith_smua_curr:12,keith_smua_iv_sweep:12,keith_smua_volt_set:12,keithlei:[3,12,87,107,111,117],keithley1:[20,22],keithley2:[20,22],keithley_2000:66,keithley_2400:66,keithley_2600:[3,12,20,22,23,66],keithley_2600_channel:[3,12,23,66],keithley_2614b:[3,87],keithley_2700:66,keithley_smua:23,keithley_smua_iv_sweep:23,keithley_smub:23,keithleychannel:[3,87],kelvinox:[66,110],kept:121,kernel:[121,122],keysight:[10,66,107,108,109,110,111,117],keysight_33500b:[10,24,66],keysight_33500b_channel:66,keysight_34465a:[11,13,16,66],keysight_e8267d:66,keysight_m3201a:71,keysight_volt:11,keysightagilent_33xxx:66,keysightchannel:71,keyword:[48,50,62],khz:[3,29,30,31,38],kilo:77,kilo_b:77,kind:[0,36,87,125],kmstring:3,knob:[3,124],know:[10,33,60,61,113,118,125],known:[3,4,45,88],knownmodel:3,kwarg:[1,2,3,4,7,16,18,19,20,50,52,53,54,56,58,59,61,62,63,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,92,93,94,95,125],lab:[36,78,119],label1:51,label2:51,label3:51,label:[0,1,3,7,9,10,15,19,32,36,40,43,45,48,51,57,58,65,66,68,69,87,113,124,125],lack:70,lakeshor:66,lambda:[6,10,37,68],languag:51,larg:[4,32,58,87,113],larger:58,last:[1,2,9,16,20,29,36,58,68,74,78,87,111,113,124],last_saved_index:49,latenc:[10,11],later:[3,36,38,40,46,47,48,57,92,95,113,124,125],latest:[4,29,68,74,124],latest_cal_d:[19,68],latter:[12,13,94],launch:[78,120],lazi:117,lead:[82,113],leak:68,learn:[4,36,119],least:[36,113,116,124],leav:[26,40,52,57,87],leave_persistent_mod:82,left:[1,8,93,120],legacy_mp:[2,121],legend:[15,30],len:[3,13,16,18,36,67,87,125],length:[7,11,24,32,33,36,57,67,78,87,91,124,125],less:[4,38,58,113,124],lest:32,let:[1,4,8,9,23,29,30,33,35,37,38,45,93,113,117,121,125],letter:[73,113],leve:3,level:[2,3,10,15,16,19,29,38,39,45,51,82,86,87,89,110,113,121,124,125],levelnam:5,levelv:3,lib:[2,15,16,20,109],librari:[16,32,67,71,113,120,121],life:[71,113],light:9,like:[3,4,10,29,30,32,36,37,40,45,49,50,57,60,61,68,71,79,82,84,87,113,116,119,121,124],limit:[1,4,19,27,28,29,31,35,37,67,80,113,124,125],limiti:23,limitv:23,lin:[36,38,85],linalg:37,line2d:[16,36],line:[3,4,6,9,10,14,16,20,22,23,26,36,51,71,93,94,113,118,119,120],linear:[0,9,30,38,84,125],linearli:[36,116],liner:113,link:[45,61,67,68,116,120],linkag:114,linspac:[0,13,14,15,32,33,125],linux:120,list:[1,7,10,12,13,14,15,19,28,42,43,46,48,50,53,60,65,67,68,71,73,74,75,78,81,82,84,86,87,92,95,101,103,105,107,113,116,117,121,124,125],listcomp:16,liter:113,littl:[33,113,124],live:[1,90,115,117,124,125],load:[2,3,7,15,32,33,44,49,67,85,87,90,105,117,119,121,125],load_and_set_sequ:87,load_awg_fil:[15,87],load_data:[10,46,101],load_ext:2,loaded_data:10,loadfrom:15,loadlibrari:3,loadseqxfil:[14,33,87],loadtestsfromtestcas:5,loadwfmxfil:[14,33,87],loc:48,loc_fmt:8,loc_provid:[2,8,10,48],loc_record:92,local:[0,7,11,12,13,32,36,39,40,46,50,52,57,58,63,70,71,82,87,89,113,119,124,125],localnod:3,locat:[0,1,2,5,7,9,11,12,13,16,17,18,19,20,22,23,27,28,29,30,31,36,38,39,46,47,48,49,71,87,90,92,117,120,121,124,125],location_provid:[2,10,48,92,116],lock:[10,36,42,75,82,86,111],lockin:[3,17,81,86],lockin_ch1_databuff:17,log:[2,5,6,15,16,31,32,36,38,39,78,85,119,121,125],logger:[5,31,32,39],logic:[53,87,113],logic_jump:[15,87],loglevel:[2,121],logo:105,lograng:60,logview:113,longer:[30,48,51,55,111],look:[3,6,10,27,28,29,31,33,36,39,48,63,68,113,120,121,124,125],loop:[0,1,7,8,12,13,16,19,20,22,30,31,36,38,40,41,45,46,49,51,57,58,62,64,68,87,91,95,101,105,116,117,123,125],loop_indic:16,loop_result:7,loopcount:87,loos:9,lose:13,lost:67,lot:[3,37,45,87,113],loudli:10,love:[113,118],low:[3,10,16,30,33,36,38,87,124,125],lower:[45,124],lowest:[48,86],lua:[12,23,87],luasweepparamet:87,m1s:[14,32,87],m2s:[14,32,87],m3201a:66,m3300a:[66,107],m3300a_awg:71,m3300a_dig:71,m4i:[106,107,109],mac:[19,20,22,25],machin:[12,87,113],maco:120,made:[2,4,36,71,78,121],mag:38,magic:[8,32,121],magnet:[37,80,82,107,110,117,119,125],magnitud:[30,37,84,124],magnitur:30,mai:[3,4,9,10,14,21,23,27,28,29,30,31,32,36,41,46,49,50,60,61,87,93,94,103,113,116,121,124],mail:118,main:[1,9,87,124],mainfram:86,mainli:10,maintain:[3,81,86,113,114,118,124],major:4,majorana:121,make:[3,4,6,7,10,11,12,14,15,17,19,20,22,23,25,27,28,29,36,37,38,45,50,51,55,68,69,74,75,82,86,87,113,116,117,119,120,124],make_and_save_awg_fil:[32,87],make_directori:87,make_send_and_load_awg_fil:[32,87],makeseqxfil:[14,33,87],makesinewf:15,makewfmxfil:[14,33,87],manag:[3,20,46,48,49,75,82,86,92,120,124],mandatori:[17,87,113],mani:[1,3,4,7,36,45,46,51,60,61,68,71,87,109,113,124],manner:32,manual:[23,30,36,37,71,75,79,81,82,84,86,87,117,119,124,125],manualparamet:[0,1,3,7,19,101,111,125],manysinesincreasingfreq:15,map:[3,13,50,56,58,68,86,94,124],mark:[86,124],marker1:87,marker1_amplitude_n:87,marker1_high:33,marker1_high_n:87,marker1_low:33,marker1_low_n:87,marker1_method_n:87,marker1_offset_n:87,marker1_skew_n:87,marker1_waitvalu:33,marker2:87,marker2_amplitude_n:87,marker2_high:33,marker2_high_n:87,marker2_low:33,marker2_low_n:87,marker2_method_n:87,marker2_offset_n:87,marker2_skew_n:87,marker2_waitvalu:33,marker:[14,15,32,33,87],mashup:105,mass:87,master:[113,117,120],match:[4,29,32,36,48,50,51,57,58,67,82,84,86,87,124],math:37,matlab:1,matplot:[0,2,10,17,18,19,23,29,30,31,38,39,101,108,111,117],matplotlib:[0,2,5,6,8,11,12,15,16,17,18,19,20,21,22,25,29,30,31,32,33,34,36,37,38,39,94,117,121],matter:[4,32,113],maunual:2,max:[24,39,51,58,75,85,86,87],max_delai:59,max_frequ:86,max_sampl:[19,68],max_status_ag:74,max_subplot_column:1,max_val:70,max_val_ag:[58,59],max_work:125,maxim:[27,28,87],maximum:[37,58,70,85,121,124],mayb:[45,55,113],mc_channel:73,mcl_rf_switch_controller64:[26,73],mea:[17,18],mean:[2,3,7,9,12,13,14,29,30,33,36,37,55,58,87,113,121,124,125],meaning:3,meaningless:113,meant:[50,78],meassur:30,measur:[0,1,3,7,8,11,12,13,16,17,18,19,20,22,23,29,30,31,37,39,40,45,46,51,55,57,58,61,62,66,71,78,80,81,84,86,89,95,101,109,117,123],measured_param:[3,81,86],measured_v:1,measured_val_2:1,measured_valu:61,measurerange_i:[12,23],measurerange_v:23,meat:87,mechan:75,media:87,mega:77,mega_b:77,member:119,memori:[33,46,67,68,74,87,92,121,124],memory_s:[19,68],memrori:32,mention:[3,113],menu:120,mercuri:[107,117],mercuryip:[25,66],mercuryipsarrai:82,merg:113,merger:3,messag:[5,15,16,24,31,32,70,71,74,75,82,86,87],message_len:75,messagebas:16,messur:30,met:[58,103],meta:[6,36,119,123,124],meta_serv:125,meta_server_nam:125,metadat:[53,61],metadata:[3,10,22,40,45,49,52,53,57,58,63,66,73,86,101,107,119,124],metadata_fil:51,meter:[3,8,10,23,82,87,110],meter_voltag:8,method:[1,2,3,7,10,12,13,27,28,32,36,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,68,71,73,74,78,79,80,82,86,87,88,91,93,94,95,113,120,124,125],methodnam:[66,71,79,88],mhz:[29,30,36],microsoft:113,might:[21,23,68,80,113,124],millisecond:86,mimic:116,mimick:124,min:[24,75,87],min_val:70,min_valu:7,mind:68,mini:[26,38,51,73,111],minicircuit:[66,117],minim:[33,36],minimum:[58,70,75],minu:121,minut:3,mirror:124,misc:101,misinterpret:32,mismatch:67,miss:[113,125],mistak:113,mix:[3,113],mixer:75,mmem:15,mmemori:15,mock:[6,8,9,37,113],mockinstru:116,mockparabola:5,mockparabola_run:5,mode:[0,3,7,11,12,13,19,21,23,29,33,35,36,37,46,67,68,69,74,78,82,84,85,87,117,124,125],model:[3,9,10,12,19,22,23,33,38,67,68,71,72,73,80,81,82,83,84,86,87,113,116,121,124],model_336:66,modest:9,modif:121,modifi:[1,28,58,60,78,113],modified_rang:49,modul:[2,3,4,10,16,20,33,103,111,113,121],modular:[119,124],mohm:[12,29],moment:[71,87],monitor:[55,64,89,95,116,119,124],month:120,more:[1,4,9,10,27,28,30,32,36,38,39,46,50,51,58,68,71,78,87,104,109,113,116,117,119,124],most:[1,2,3,4,7,16,20,21,29,30,36,57,58,68,71,79,84,87,113,116,120,124],mostli:[36,116],motiv:113,move:[3,33,37,38,82,87],mpl_connect:1,msec:3,msg:82,mso:39,mso_chan4_trac:39,msos104a:[39,71,111],mua:27,much:[3,4,30,33,49,84,113,124],multi:[10,74,104,124],multichan_paramclass:42,multichannelinstrumentparamet:[42,74],multilin:113,multimet:[3,35,87,107],multiparamet:[3,30,78,81,82,84,86,101,107,117],multipl:[0,1,7,28,36,42,50,57,58,71,75,79,84,87,117,124,125],multipli:[58,124],multiprocess:[20,104,107,119,125],multityp:116,multmet:35,must:[3,7,8,10,14,29,31,32,33,36,38,40,45,48,51,52,57,60,61,68,70,71,78,84,86,87,92,113,116,121,124,125],mvpp:31,my48002016:11,my54505281:13,my54505388:[11,16],my55510104:39,my57800256:24,my_custom_fold:8,mycount:7,myget:10,myinstrument:125,mylist:15,myset:10,mysin:33,myvector:125,myvector_set:125,n48280:17,n5171b:71,n5181a:71,n51x1:[66,111],n_avg:38,n_sampl:18,naiv:12,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,22,23,25,27,28,29,30,31,32,33,34,36,37,38,39,40,42,43,44,45,46,48,50,51,52,53,54,56,57,58,59,63,65,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,92,95,113,116,121,124,125],name_to_delet:3,nameofyourdriv:4,namespac:[101,121],nan:10,nativ:[10,86],navg:85,navig:[4,120],nbagg:[5,6,8,15,19,20,21,22,25,30,31,32,34],nbi:[113,118],ndarrai:[40,45,57,86,87,124],nearli:3,necessari:[19,36,45,61,67,68,78,119,124],necessarili:[40,57,113,116],need:[1,2,3,4,7,10,15,18,32,33,37,38,39,45,68,82,86,87,113,116,117,120,124,125],neg:[29,39,64,75],neither:113,nep:[36,78],nepbw:78,nepbw_to_timeconst:78,nest:[7,10,11,45,55,124],net:26,network:[38,39,69,84,124],never:[58,113],new_cmd:[73,82,87],new_data:[46,101],new_indic:16,new_nam:3,new_valu:16,newer:84,newlin:51,newlinestripp:87,next:[1,4,14,29,32,33,35,38,40,48,51,57,87,120,124,125],nice:[1,3,9,36,38,113],nick:113,nielsen:[113,118],nifti:3,no_instru:125,no_of_rep:14,nobodi:113,nois:[3,23,29,38],noisi:37,non:[29,32,37,91,113,125],none:[2,3,5,9,10,15,16,17,19,20,22,23,25,36,37,40,42,43,45,46,48,50,51,52,53,55,56,57,58,59,60,63,65,66,68,69,70,71,73,74,75,78,80,82,84,85,86,87,89,90,92,93,94,95,105,113],nonetyp:[40,42,53,57,58,66,73],nonstandard:[67,71,73,81,86,87],noofpoint:32,noofseq:15,noofseqelem:32,noofwf:15,nor:113,norm:[24,37],normal:[12,29,40,46,47,50,57,58,60,71,73,87,116,124],notabl:36,notat:[2,60,69],notch_filt:17,note:[1,2,3,4,7,10,23,27,28,29,32,35,36,37,39,40,42,46,57,58,60,61,63,70,74,78,81,82,85,86,87,90,92,103,111,119,121,124,125],notebook:[1,2,3,8,9,11,12,14,16,17,18,19,23,29,31,32,33,36,37,38,107,109,117,119,120,121,122],noth:[3,23,68,70],notic:[1,23,30],now:[0,4,7,8,10,14,17,27,28,29,30,32,33,35,36,37,38,40,57,84,87,95,107,113,121,125],nplc:[3,11,13,16,20,22,23,87,117],nplc_list:71,npoint:39,npt:[19,30,84],nr_bytes_written:16,nrep:[14,32,33,87],nrep_l:15,num:[8,9,12,13,16,38,60,94],num_acquisit:29,num_chan:74,num_channel:87,num_port:30,number:[0,1,3,7,9,10,11,13,16,20,22,26,27,28,29,30,32,33,36,48,51,52,55,57,58,60,63,66,67,68,70,71,73,74,75,78,82,83,84,86,87,89,113,116,121,124,125],number_dac:75,number_format:51,number_of_averag:38,number_of_channel:68,number_of_paramet:125,numdac:75,numer:[51,124],numpi:[0,3,4,5,7,8,11,12,13,14,15,16,20,22,25,27,28,31,32,33,34,35,36,37,40,45,57,78,86,87,109,124,125],numpoint:87,numval:[13,16],nxsingl:29,obj:15,object:[0,1,2,3,10,15,16,17,18,19,20,22,25,29,30,31,34,36,38,40,42,45,47,49,50,55,57,58,60,61,68,70,74,75,85,90,92,95,113,114,121,124,125],obsolet:[32,111],obtain:[1,58,68],obviou:55,occasion:49,occupi:[29,48,87],occur:[1,15,37,67,70,75,86,121,124],oct:17,oem:[15,87],off:[3,9,11,13,16,21,23,24,27,28,29,30,31,33,35,36,38,50,71,74,79,80,82,84,87,89],off_modul:84,offer:[0,1,125],offload:124,offset:[19,21,29,31,36,37,84,87],often:[1,4,6,46,113,116],oftentim:29,ohm:[19,29,36],old:[17,23,30,31,108,120],older:33,oldest:24,oldn:36,omit:[40,57,58,82,87],on_modul:84,onboard:23,onc:[0,6,7,10,45,49,87,113,116,120,124,125],one:[1,2,3,7,10,12,14,17,21,23,26,27,28,29,30,31,32,33,36,37,39,40,43,45,46,49,50,51,55,57,58,60,65,66,67,68,70,74,75,84,86,87,89,92,113,116,117,121,124,125],ones:[14,33,71,79,84,87,113],onli:[3,4,5,7,8,10,19,20,26,27,28,29,30,31,32,36,37,40,45,46,48,50,51,57,58,60,61,67,68,69,71,74,78,79,81,82,84,86,87,89,92,113,117,124],onlin:1,onto:[87,124],opc:[14,87],open:[4,49,52,63,67,82,94,108,113,119,124],open_resourc:15,opendevic:85,oper:[1,3,16,19,40,41,47,57,60,67,70,87,117,121,124,125],oppos:[3,32],opposit:93,optim:119,option:[2,3,24,29,32,40,42,43,45,46,48,49,50,52,57,58,60,61,63,65,66,71,73,75,82,84,86,87,89,90,92,105,109,113,120],order:[2,3,10,32,36,37,43,46,50,65,78,80,113,121,124],ordereddict:[0,46],org:[1,63],organ:[113,117],orient:124,origin:[11,36,66,124],osc:36,oscil:[36,71],oscillator2_freq:36,oscilloscop:[3,4,71,84,87,111,117],other:[1,2,3,7,8,27,28,29,30,32,33,36,39,48,49,55,62,64,67,68,70,71,73,81,86,87,91,93,94,113,119,120,124],otherclass:3,otherwis:[3,32,45,67,68,70,113,124],our:[4,9,29,30,51,113],out:[0,3,6,7,8,10,16,20,24,27,28,30,31,36,37,40,41,57,67,68,74,82,84,86,113,117,118,119,120,122,124,125],outer:[1,7,10,45,51,124],outp1:15,output:[3,4,12,19,20,21,22,23,25,27,28,29,30,32,33,35,38,50,55,58,67,70,71,74,75,78,81,83,84,86,87,89,91,113,117,124],output_interfac:17,output_pow:38,output_rang:89,output_waveform_name_n:87,outputchannel:71,outsid:[35,64,68,75,78,87],over:[0,3,4,10,30,35,36,39,42,49,55,60,61,68,85,113,116,124,125],overhead:[13,124],overid:82,overlap:4,overload:[29,70,84,86],overrid:[3,46,48,49,67,71,73,74,78,81,82,86,87,92],overridden:1,overview:[10,23,29,38,39,87,117,121,123],overwrit:[2,8,20,22,75,87,92,121],overwritten:48,ovsr:86,own:[2,3,10,29,30,50,67,68,94,113,124],oxford:[25,34,66,107,110],oxfordinstruments_ilm200:82,oxfordinstruments_ips120:82,oxfordinstruments_kelvinox_igh:82,p1_set:0,p_label:3,p_measur:1,p_measure2:1,p_name:3,p_sweep2:1,p_sweep:1,p_unit:3,pack:87,pack_waveform:[15,87],packag:[1,2,15,16,36,103,113,119,120,121],packard:[38,69],packed_waveform:87,packed_wf:15,pad:3,page:[86,101,103,113,124],pai:113,pair:[9,11],panel:[36,70,87,119],panic:124,par:32,paraemt:66,parallel:82,param:[7,32,34,36,58,68,74,75],param_id:16,param_nam:[45,74],param_out:16,paramet:[1,6,10,12,19,21,22,23,27,28,29,30,32,33,34,36,37,38,39,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,70,71,73,74,75,78,79,80,81,82,84,85,86,87,89,90,91,92,93,94,95,101,104,106,109,111,113,114,117,119,123],parameter_class:3,parameter_nam:105,params_to_skip_upd:74,paramt:[0,65,125],parent:[3,40,42,50,54,57,58,61,70,71,72,73,74,78,80,84,86,87,89],parenthes:113,pars:[32,50,67,71,73,81,83,86,87],parse_awg_fil:[32,87],parse_multiple_output:83,parse_on_off:[71,79,84],parse_output_bool:87,parse_output_str:87,parse_single_output:83,parse_string_output:83,parsebool:87,parseint:87,parser:[3,50,69,86,87],parsestr:[69,87],part:[2,3,4,14,30,33,40,48,57,58,73,85,86,89,107,113,116,117,121,124],parti:39,partial:[38,83,125],particular:[7,9,32,36,37,116,124],particularli:[50,53,86,124],pass:[1,3,4,38,48,50,61,62,66,68,71,73,75,80,84,89,92,93,94,113,121,124,125],pat:87,patch:113,path:[2,4,10,26,32,44,46,47,49,68,82,87,90,92,120,124],path_to_driv:73,pattern:87,paus:37,pci:[3,67],pcie:[67,68,107],pcie_1751:66,pcie_link_spe:[19,68],pcie_link_width:[19,68],pckd_wf:15,pcserno:39,pdf:[74,86],peak:[29,33,87],pend:87,pep8:113,per:[3,12,13,16,19,23,33,40,45,57,68,69,70,74,75,87,119,125],percent:[36,78],percentag:82,perf:113,perf_count:14,perfom:11,perform:[1,4,9,10,11,17,19,23,27,28,29,36,37,49,58,63,68,75,78,80,85,87,91,108,110,113,124],perform_safety_check:80,perhap:[16,124,125],period:[29,39,46,93,94],persist:[52,82],person:113,phase:[7,17,24,30,36,68,78,84,124],phase_delay_input_method_n:87,phase_n:87,phi:[36,37],phi_measur:37,physic:[3,4,27,28,46,66,70,90,92,95,124],pick:113,pictur:124,piec:[116,124],pillar:124,pin:67,ping:113,pinki:113,pip:[75,113,119,120],pixel:93,place:[1,2,27,28,29,71,93,113,124],plai:[10,14,33,87,120],plain:120,pleas:[3,23,32,36,39,74,86,87,113,118],plenti:39,plese:118,plot:[0,2,3,15,16,17,18,19,22,23,24,27,29,30,31,32,35,36,37,38,39,45,101,105,108,109,117,121,124],plot_1d:10,plotlib:[2,121],plotq:22,plotter:36,plt:[1,8,11,12,15,16,18,20,22,25,29,30,31,32,33,34,36,37,39,94],plu:[33,87,121],plubic:103,plug:[12,71,119],plugin:113,plunger:8,plural:7,point:[9,10,11,12,13,14,15,16,17,30,33,36,37,43,47,51,55,65,78,82,84,85,87,101,119,124],poitn:87,polar:75,polish:119,poll:[12,17],polyfit:37,poor:21,popul:[45,53,54],popular:3,port:[21,30,34,37,52,67,70,73,80,82,85,119],port_count:67,pos:33,posit:[29,50,84,124],possibl:[3,4,7,21,30,32,36,81,82,86,87,121,124],post:113,post_acquir:68,post_delai:[9,10,18,58],post_trigger_act:78,potenti:[23,40,46,55,57,119,124],power:[3,23,30,37,38,71,80,82,84,85,107,113,124],power_limit:41,ppi:67,pprint:9,practic:113,pre:[90,117],pre_acquir:68,pre_start_captur:68,preamp:[3,81,86],preamplifi:[3,81,86],prece:78,preced:51,precis:[21,75,78,106],preconfigur:2,predefin:[32,62,86,87,117],prefer:[87,119,124],prefix:113,preinstal:120,preliminari:11,prepar:[12,13,16,29,33,36,38,68,71,78,84,86,87,117,124],prepare_buffer_readout:[17,86],prepare_curvedata:[31,39,71,87],prepare_for_measur:85,prepare_readout:86,prepare_scop:[36,78],prepare_trac:[29,38,69,84],preparesweep:87,prepend:[45,87],preprocessor:67,prerequisit:117,present:[3,4,17,80,81,86,89,113,124],preservechannelset:87,preset:85,preset_data:45,press:[1,87,122],presum:87,pretend:4,pretti:[27,28,38,74,78],prevent:[3,40,57,58,68,75,87],previou:[1,58,70,113],previous:[78,87,124],primari:119,princip:50,principl:120,print:[0,1,2,7,10,11,13,14,15,16,19,20,22,23,25,27,28,32,34,35,36,37,70,71,73,74,78,87,125],print_al:69,print_cont:87,print_modstatu:69,print_overview:[27,28,74],print_readable_sanpshot:29,print_readable_snapshot:[10,17,23,29,30,33,38],print_sweeper_set:[36,78],printslop:[27,28,74],prior:[38,66,70],prioriti:[48,124],privat:[68,101],privileg:67,probabl:[50,68,84,113,124],problem:[15,32,35,113],procedur:[74,124],proceed:14,process:[19,68,113,124],produc:[30,124],program:[1,68],programm:[68,80,87],programmat:[2,87,119],progress:55,progress_interv:[16,55],project:[3,113],prompt:120,proper:[36,75],properli:[4,37,87],properti:[2,3,4,15,26,67,121,124],protect:75,protocol:[19,75,124],provid:[1,2,3,7,8,14,19,27,28,33,45,48,50,52,58,61,68,71,79,86,88,92,93,94,113,116,117,124],proxi:124,psu:82,pts:[17,36],pull:[16,36,120],pull_from_serv:[19,22,124],puls:[27,28,32,69,107],purchas:36,purpos:[3,7,124],push:124,push_to_serv:[22,124],put:[4,14,32,35,37,51,74,82,87,124,125],pxie:71,py_head:[66,76],pyenv:[2,15],pyplot:[1,8,11,12,15,16,18,20,22,25,29,30,31,32,33,34,36,37,39],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,22,24,27,35,101,108,110,121],pyqtmaxplot:121,pyqtplot:121,pytest:[4,113],python3:[2,15],python:[3,8,10,39,46,67,68,75,82,87,90,92,105,111,113,119,120,124],pyvisa:[3,16,63,111,117,124],pywin32:110,qcmatplotlib:[0,2,19,101],qcode:[0,1,4,5,6,8,9,12,13,14,15,16,18,26,39,101,103,113,114,115,118,123,124,125],qcodes_colorbar:1,qcodes_config:121,qcodesmast:15,qcodesrc:2,qcodesrc_schema:30,qdac:[11,13,66,107,108,109,110,117],qdac_ch01_v_set:13,qdac_ch02_v_set:16,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[66,117],qdac_setpoint:13,qdacchannel:74,qdacmultichannelparamet:74,qdev:[11,13,16,20,27,28,66,119,121],qtlab:85,qtplot:[0,2,10,16,22,24,27,35,38,101,117],qtwork:75,quadratur:7,quantiti:51,queri:[15,20,27,28,36,74,84,85,86,87,124],queriabl:4,querysweep:85,question:[71,74,84,113],queue:[15,20,24,32,70,71,87],quickli:32,quiet:16,quirk:104,quit:[1,3,9,15,41,113,124],quot:51,qutech:[18,66],qutech_controlbox:79,r_offset:17,rack:[18,75],rad_to_deg:79,rainbow:48,rais:[2,3,4,16,20,35,37,39,41,42,58,61,64,66,67,68,71,73,75,78,79,82,86,87,88],raiseexc:86,ramiro:85,ramp:[3,10,16,21,24,27,28,33,35,37,58,70,80,82,87,89],ramp_al:70,ramp_curr:[35,89],ramp_rat:[37,70],ramp_target:33,ramp_to:[80,89],ramp_voltag:[35,89],rampsign:33,ramptim:27,randint:[6,8,10],random:[2,3,6,8,10,32,37,71],rang:[4,7,11,13,14,15,16,18,19,24,27,28,29,30,32,35,36,38,39,67,68,71,75,78,84,85,87,124,125],rate:[17,19,33,36,37,39,68,70,75,86,87],rather:[21,36,71,113,125],ravel:124,raw:[3,13,75,116,117,119],raw_trac:71,raw_val:13,raw_valu:[9,10,58],rawtrac:71,rc_sp4t:66,rc_spdt:66,rcd:8,reach:[37,86,113],read:[3,4,5,7,9,10,15,20,22,26,27,28,31,35,37,46,49,50,51,52,63,67,70,74,75,81,82,84,86,87,89,90,92,113,116,117,121,124],read_metadata:49,read_one_fil:49,read_pin:67,read_port:67,read_stat:74,readabl:[3,10,58,68,106,113],reader:10,readi:[7,10,36,69,87,92,113],readili:1,readm:113,readout:[74,86,108],readthedoc:[4,63],real:[3,10,30,71,81,86,113,116,119,124,125],realli:[4,27,28,45,71,124],realtim:[113,119],reappear:113,rear:87,reason:[10,37,113,125],recal:[9,10],receiv:[1,3,24,70,86],recent:[2,16,20,58],recommend:[36,113,120],reconnect:124,reconsid:23,reconstruct:49,record:[8,10,19,48,78,87,92,117,119,124],records_per_buff:[19,68],recycl:68,redirect:[45,106],reduc:[33,38,50,111],redund:4,ref:[31,124],refactor:113,refer:[10,36,45,68,86,101,113,115,124,125],referenc:[40,57,58,124],reference_clock_frequency_select:87,reference_multiplier_r:87,reference_sourc:[17,87],refernc:85,reflect:84,refriger:82,reg:[34,66,76],regard:[29,68,124],regardless:113,regist:[86,113,121],register_mag:121,registri:82,regular:[3,6,124],reimport:121,reinvent:113,reject:[3,4,85],rel:[10,30,46,47,90,92,124],relat:[1,124],relationship:124,releas:[49,111,119],relev:[4,16,29,58,68,86,87],reli:[1,3,68],reliabl:[68,124],reload:[5,49,66,124],remain:68,rememb:[13,30,31,37,39,78],remot:[20,25,29,82,93,124],remoteinstru:[124,125],remoteparamet:124,remov:[24,30,36,45,46,75,78,82,84,87,107,109,111,113,117],remove_signal_from_sweep:78,rep:87,repeat:[42,113,124],repet:87,repetit:[32,87],repetition_r:87,replac:[1,4,15,18,33,70,109],repo:[2,113],report:[39,114,119],repositori:[113,117,119,120],repr:[16,70],reprec:30,repres:[3,7,51,58,68,71,86,124],represent:[3,10,67,95,116],reproduc:[113,124],request:[13,37,39,114,124],requir:[4,7,10,36,40,50,57,60,61,63,67,75,78,84,89,92,110,113,121,124,125],res:20,rescal:87,research:[86,108,111],resend:87,resend_waveform:87,reserv:17,reset:[7,10,12,16,17,29,30,32,38,50,51,69,75,79,80,83,84,86,87],reset_modul:86,reset_voltag:75,resist:3,resistor:[12,35],resit:66,resolut:[10,29,33,75,84,109],resolv:71,resourc:[4,16,49,63,67,71,74,84,86,87,124],resourcemanag:15,respect:[1,40,57,67,87],respond:3,respons:[3,4,20,50,52,58,63,67,69,70,71,73,74,81,82,86,87],ressourc:[3,87],restart:121,restrict:[86,116],restructur:113,result:[1,5,7,38,48,68,75,85,87,117,124],ret:16,ret_cod:16,ret_valu:16,retriev:[9,24,58,87,121],retur:87,return_count:16,return_pars:50,return_self:87,reus:124,revers:[33,58,60],review:[113,119],revion:70,revok:[27,28],rewrit:124,rewritten:113,rf_off:30,rf_on:30,rfswitchcontrol:26,rho:37,richer:124,rid:45,right:[1,15,26,32,37,39,66,68,86,93,95,120],rigol:66,rigol_dg4000:83,rise:[3,36],risetim:[3,22],robust:3,rohd:[84,111,117],rohde_schwarz:[29,30,66],rohdeschwarz_sgs100a:84,rohdeschwarz_smr40:84,rol:85,role:33,ron:87,root:[46,47,87,90,92,120],rosc:15,rotate_nvalv:82,rough:114,roughli:120,round:[75,89,109,124],round_dac:75,routin:[71,74],row:[1,51,84],rrm:36,rs232linkformat:75,rs_sgs100a:84,rs_smb100a:84,rst:[50,113],rto1000:[29,66],rto:[82,111,117],rto_channel1:29,rto_channel2:29,rto_channel3:29,rto_channel4:29,rtoz:25,rtype:16,rule:[3,37],run:[0,1,4,6,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,30,31,36,37,38,39,55,66,67,69,71,78,79,84,87,105,117,119,120,121,124,125],run_cont:[29,84],run_contin:69,run_mod:[29,87],run_n_tim:[38,69],run_singl:[29,84],run_stat:87,run_sweep:38,run_temp:7,run_to_field:82,run_to_field_wait:82,runtest:[66,71,79,88],runtim:[2,121],s11:[30,38],s12:30,s21:[30,38],s22:30,s44:30,s5i:66,s_paramet:38,sa124_max_freq:85,sa124_min_freq:85,sa44_max_freq:85,sa44_min_freq:85,sa_api:85,sa_audio:85,sa_audio_am:85,sa_audio_cw:85,sa_audio_fm:85,sa_audio_lsb:85,sa_audio_usb:85,sa_auto_atten:85,sa_auto_gain:85,sa_averag:85,sa_bypass:85,sa_idl:85,sa_iq:85,sa_iq_sample_r:85,sa_lin_full_scal:85,sa_lin_scal:85,sa_log_full_scal:85,sa_log_scal:85,sa_log_unit:85,sa_max_atten:85,sa_max_devic:85,sa_max_gain:85,sa_max_iq_decim:85,sa_max_rbw:85,sa_max_ref:85,sa_max_rt_rbw:85,sa_min_iq_bandwidth:85,sa_min_max:85,sa_min_rbw:85,sa_min_rt_rbw:85,sa_min_span:85,sa_power_unit:85,sa_real_tim:85,sa_sweep:85,sa_tg_sweep:85,sa_volt_unit:85,sabandwidthclamp:85,sabandwidtherr:85,sacompressionwarn:85,sadevicenotconfigurederr:85,sadevicenotfounderr:85,sadevicenotidleerr:85,sadevicenotopenerr:85,sadevicetypenon:85,sadevicetypesa124a:85,sadevicetypesa124b:85,sadevicetypesa44:85,sadevicetypesa44b:85,saexternalreferencenotfound:85,safe:[37,75,82,113,124],safe_reload:85,safe_vers:75,safeti:[30,37,71,80,82],safrequencyrangeerr:85,safti:30,sai:[46,90,92,113,125],said:[45,87],sainterneterr:85,sainvaliddetectorerr:85,sainvaliddeviceerr:85,sainvalidmodeerr:85,sainvalidparametererr:85,sainvalidscaleerr:85,sake:[4,38],same:[1,3,6,7,11,19,33,37,43,45,51,57,60,65,67,78,86,87,94,113,124,125],samp:[18,86],sampl:[13,17,19,33,39,60,61,66,68,75,86,87,117,124],sample_count:[13,16,86],sample_r:[19,33,68],sample_timer_minimum:[13,16],samples_per_buff:68,samples_per_record:[19,68],sampling_r:[29,87],sane:44,saniti:35,sanocorrect:85,sanoerror:85,sanotconfigurederr:85,sanullptrerr:85,saovencolderr:85,saparameterclamp:85,sastatu:85,sastatus_invert:85,satisfi:37,satoomanydeviceserr:85,satrackinggeneratornotfound:85,saunknownerr:85,sausbcommerr:85,save:[0,4,8,9,10,16,26,32,38,40,45,46,49,51,57,58,68,87,91,92,105,113,116,117,119,120,124,125],save_to_cwd:2,save_to_env:2,save_to_hom:[2,121],savvi:119,sawtooth:24,sca:1,scalar:[6,7,10,40,57,71,91,124],scale:[7,29,30,31,36,38,39,58,66,84,85],scale_param:7,scale_set:7,scale_v:7,scan:30,scenario:[71,113],scene:36,scf:1,schema:[2,30,44,121],schema_cwd_file_nam:44,schema_default_file_nam:44,schema_env_file_nam:44,schema_file_nam:44,schema_home_file_nam:44,scheme:[3,4],schouten:75,schwarz:[84,111,117],scope:[4,29,31,39,71,78,84,87,117],scope_average_weight:36,scope_channel1_input:36,scope_channel2_input:36,scope_channel:36,scope_correctly_built:36,scope_dur:36,scope_length:36,scope_measur:31,scope_mod:36,scope_samplingr:36,scope_seg:36,scope_segments_count:36,scope_trig_delai:36,scope_trig_en:36,scope_trig_gating_en:36,scope_trig_gating_sourc:36,scope_trig_holdoffmod:36,scope_trig_holdoffsecond:36,scope_trig_hystabsolut:36,scope_trig_hystmod:36,scope_trig_level:36,scope_trig_refer:36,scope_trig_sign:36,scope_trig_slop:36,scopearrai:87,scopechannel:84,scopedata:36,scopetrac:84,scpi:[3,15,70],screen:[29,87,93,120],script:[4,23,87,117,119,125],sd_awg:71,sd_common:71,sd_dig:71,sd_modul:71,sdk:68,sdk_version:[19,68],seamless:71,search:[48,113,124],sec:[71,87],second:[1,4,7,10,15,17,24,35,36,40,45,46,52,55,57,58,63,64,68,70,75,82,86,87,89,92,93,94,118,120,124,125],section:[118,120],see:[0,1,2,3,6,8,9,24,27,29,31,32,35,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,68,75,84,86,87,91,93,94,95,113,124,125],seem:[51,113],seen:30,segm1_ch1:87,segm1_ch2:87,segm2_ch1:87,segm2_ch2:87,segm:15,segment:[1,36,78,87],select:[3,19,37,68,78,87,113,120],self:[2,3,4,7,16,20,22,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,70,71,74,82,85,87,91,92,93,94,95,113,125],semant:119,semi:113,semicolon:[67,71,73,81,82,86,87],sen:[3,22,81],send:[3,12,13,14,16,37,52,73,75,81,82,86,87,117,118],send_awg_fil:[15,87],send_dc_puls:87,send_pattern:87,send_sequ:87,send_sequence2:87,send_trigg:18,send_waveform:87,send_waveform_to_list:[15,32,87],sendseqxfil:[14,33,87],sendwfmxfil:[14,33,87],sens:[3,113],sens_factor:[3,81],sens_x:22,sensit:[3,17,81],sensor:[72,117],sensorchannel:72,sent:[3,12,15,33,50,58,82,87,116,124],separ:[4,7,23,49,51,57,67,71,73,81,82,86,87,95,119,124,125],seper:[70,87],septemb:23,seq:87,seq_elem:32,seqnam:[33,87],sequanti:65,sequecn:87,sequenc:[7,14,32,40,45,55,57,60,70,87,91,94,117,124],sequence_cfg:87,sequence_length:32,sequence_po:32,sequencelist:[33,87],sequenti:[36,43,125],seqx:[33,87,117],seqx_fil:14,seqxfilefold:87,seri:[3,71,79,83,84,87,111,117],serial:[3,4,9,10,11,12,13,14,15,16,17,18,19,23,24,26,29,30,31,33,35,37,38,39,67,68,70,71,73,81,82,86,87,116],serial_numb:[22,26,73],serialis:87,seriou:29,serv:3,server:[4,19,20,25,36,68,78,124,125],server_err:20,server_nam:[5,19,25,69,125],session:[10,16,46,90,92,113],set:[0,1,2,3,4,5,6,7,8,9,11,15,16,17,19,20,21,22,23,24,25,26,30,32,33,35,37,38,39,43,45,46,49,51,55,56,58,60,61,65,66,67,68,69,70,71,74,75,78,79,80,81,82,84,85,86,87,90,91,92,116,117,119,121,124,125],set_al:70,set_arrai:45,set_b:82,set_cmd:[1,3,4,10,58,59,69,82,125],set_current_folder_nam:87,set_dacs_zero:75,set_default:87,set_ext_trig:84,set_field:80,set_funct:68,set_iq_st:84,set_jumpmod:87,set_level:87,set_measur:[20,22],set_mix_chamber_heater_mod:82,set_mix_chamber_heater_power_rang:82,set_mod:87,set_mode_volt_dc:87,set_mp_method:[19,20,22,25],set_pars:[58,59],set_persist:82,set_point:31,set_pol_dacrack:75,set_pulsemod_sourc:84,set_pulsemod_st:84,set_ramp:21,set_raw:66,set_remote_statu:82,set_sequ:87,set_set_point:31,set_setup_filenam:87,set_smooth:86,set_sqel_event_jump_target_index:87,set_sqel_event_jump_typ:87,set_sqel_event_target_index:[32,87],set_sqel_goto_st:87,set_sqel_goto_target_index:[15,32,87],set_sqel_loopcnt:[32,87],set_sqel_loopcnt_to_inf:[32,87],set_sqel_trigger_wait:[32,87],set_sqel_waveform:[15,32,87],set_statu:84,set_sweep:84,set_titl:[1,32],set_to_fast:82,set_to_slow:82,set_valu:61,set_voltag:86,set_xlabel:15,set_ylim:[15,32],setboth:125,setbothasync:125,setformatt:5,setlevel:[5,31,32,36,39],setpoint:[0,1,6,7,8,9,10,11,12,13,16,19,30,31,37,38,40,45,51,57,69,71,78,82,84,86,87,91,107,124,125],setpoint_arrai:[40,57],setpoint_label:[7,40,57],setpoint_nam:[7,40,57,78],setpoint_unit:[40,57],setsequencetrack:[14,33,87],settabl:[3,4,58,61,116,124],setter:[4,116],settl:[36,113],setup:[30,84,87,95,117,119],setupclass:[66,71,79],setwaveform:[33,87],setx:125,sever:[71,78,82,87,113,116,124],sg384:[66,106],sgs100a:66,shadow:2,shall:35,shape:[0,1,3,7,8,9,10,11,12,13,14,16,17,18,19,23,29,30,31,32,36,38,39,40,45,57,71,78,84,94,124,125],share:[21,118],shared_kwarg:125,shed:9,shell:[119,120],shift:36,ship:[2,36],shortcut:[93,120],shorthand:1,shot:[23,29,104,113,117],should:[3,4,10,13,14,19,24,26,29,30,31,32,33,35,36,37,40,42,45,46,48,49,50,52,54,55,57,58,60,61,62,66,67,68,70,71,73,81,82,86,87,95,113,120,124],shouldn:45,show:[1,3,6,8,10,18,19,20,22,25,27,28,35,37,113],show_subprocess_widget:[19,20,22,25],show_window:93,shown:[1,37],side:[32,37,58,73,116,125],sig:36,sig_gen:113,signadyn:71,signal:[10,14,15,31,32,33,39,68,71,78,79,84,85,86,87,107,117,124],signal_hound:66,signal_input1:36,signal_input1_ac:36,signal_input1_diff:36,signal_input1_imped:36,signal_input1_rang:36,signal_input1_sc:36,signal_output1:36,signal_output1_ampdef:36,signal_output1_amplitud:36,signal_output1_autorang:36,signal_output1_en:36,signal_output1_imp50:36,signal_output1_offset:36,signal_output1_on:36,signal_output1_rang:36,signal_to_volt:68,signalhound_usb_sa124b:85,signatur:[32,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,67,87,91,93,94,95],significantli:30,silent:[3,15,71],sim900:86,sim928:[66,107],sim:[4,86,111],similar:[1,4,10,84,87,124],similarli:[28,36,124],simpl:[4,6,7,10,12,17,19,30,31,41,47,50,56,64,94,113,117,119,124],simpler:113,simplest:[4,124],simpli:[2,4,14,33,36,50,58,87],simplifi:[70,113],simul:[111,116,117,119,123,124],simultan:[17,28,70],simultani:80,sin:[14,15,32,33,83],sinc:[1,3,4,9,10,36,37,70,78,82,87,124,125],sine:[14,29,31,33,39],sinesign:33,sing:30,singl:[1,3,7,10,20,22,23,30,40,51,58,60,67,68,70,71,72,74,80,84,87,91,94,104,113,116,117,120,124],single_iq:7,single_set:7,singleiqpair:7,sit:23,site:[1,2,15,16],situat:[10,51,124],six:[27,28,67],size:[1,10,40,46,57,58,68,75,86],skewed_parabola:5,skill:113,skip:[74,113],slack:[108,109,110,113,118,119],slash:47,sleep:[3,13,16,17,18,20,22,25,27,28,31,32,61,64,75,86],slice:[30,60,116],slider:1,slider_demo:1,slightli:[23,106],slope:[16,19,24,27,28,37,74],slot:[21,70,71,86],slot_mode_default:70,slot_nam:86,slow:[15,27,28,74,82,124],slow_external_clock:3,slower:32,slp:38,small:[23,27,28,30,36,67,69,104,113],smaller:[30,86],smart:[82,113],sml:87,smooth_timestep:86,smoothli:86,smr40:66,sms120c:111,smu:3,smua:[3,12,23,87],smub:[3,23,87],snapshot:[0,3,10,19,22,40,42,45,52,53,57,58,63,74,86,87,95,106,109,110,117,124],snapshot_bas:74,snapshot_get:[40,57,58],snapshot_valu:[40,57,58,86],sochat:113,socket:[52,72],soft:87,softwar:[3,24,36,74,78,87,110,113,117,124],software_revis:22,software_triggered_read:13,softwaredownload:26,sohail:113,solut:15,solv:113,some:[0,3,4,8,9,10,15,28,33,35,36,40,50,52,57,58,60,70,71,86,87,113,117,121,124],some_g:8,some_gates_plunger_set:8,somebodi:113,somehow:124,someon:[67,113],someth:[2,9,32,35,36,37,68,71,74,113,121,124],sometim:[3,7,10,36,51,124],somewher:26,soon:[70,113],sophist:68,sort:[32,51],sour1:15,sour:15,sourc:[3,10,19,23,30,35,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,111,113,114,119,124],source1:15,source_mod:35,sourcecod:9,sourcemet:[3,12,87,107],sourcerange_i:23,sourcerange_v:[12,23],sp4t:73,space:[27,28,40,57,58,60,87,113,116],span:[30,75,85],spann:75,spanx:75,spawn:[19,20,22,25],spcerr:[66,76],spdt:73,spdt_base:73,speak:[3,9],spec:4,special:[3,10,40,57,58,113,124],specif:[3,4,19,32,46,67,70,74,75,82,87,113,116,124],specifi:[1,24,26,32,37,40,49,55,57,66,67,71,75,78,79,85,86,87,88,89,94,95,113,121,124],specifiedta:87,spectrum:[66,106,107,111,124],speed:[11,13,30,58,68,124],speedup:109,spend:3,spent:14,spheric:37,spherical_measur:37,spi:75,spi_rack:75,spirack:[75,111],splat:1,split:[13,30,34],spread:118,spyder:120,sqel:87,sql:124,squar:31,squencer:87,sr560:[3,66],sr830:[66,105,108,117],sr860:[18,66,111],sr860m:86,sr865:[66,111],sr86x:66,sr86xbuffer:86,sr86xbufferreadout:86,src:[2,30],srs_sg384:86,srvalid:87,stabl:[63,120],stackoverflow:1,stage:124,stai:[113,125],staircas:10,stale:124,stand:37,standalon:119,standard:[1,3,13,30,58,67,70,71,73,74,81,86,87,119],standardparamet:[1,7,19,22,101,111,116],stanford:[86,108,111],stanford_research:[3,17,18,66],stanford_research_system:[17,18],stanford_sr865:86,start:[0,1,3,8,9,10,11,12,13,16,17,19,22,24,30,33,36,38,39,44,45,46,51,58,60,62,67,68,70,82,84,86,87,89,90,92,113,117,124],start_captur:[18,86],start_freq:38,startcaptur:19,startup:[4,27,28,69,74],stat:[71,79,84],state:[3,9,27,28,29,32,33,36,67,69,70,74,84,87,89,113,116,119,124],statement:[75,113],station1:[20,22],station2:[20,22],station:[5,6,8,9,10,11,15,16,20,22,23,30,36,40,53,55,57,58,86,101,114,124],stationq:119,statu:[34,68,71,74,75,79,82,84,85,86,87],status:86,statuscod:[15,87],std:[12,13,14],stderr:5,stdlib:67,stdout:16,step:[1,3,4,10,11,23,30,33,35,55,58,59,60,75,86,87,88,89,125],step_attenu:[71,79],stepper:82,stepsizen:75,sticker:[26,73],still:[3,4,27,28,32,35,45,113,124],stop:[1,15,17,24,29,30,32,33,36,60,67,84,86,87],stop_captur:[18,86],stop_freq:38,storag:[87,119,124],store:[0,2,40,42,45,46,49,57,58,66,68,87,92,95,109,124],str:[3,8,15,16,40,42,43,44,45,46,47,48,50,52,53,54,57,58,63,65,66,69,70,71,73,74,75,78,81,82,84,86,87,89,90,92],straightforward:[32,124],strang:36,strategi:70,stream:[16,19,36],streamhandl:5,strftime:48,strictli:78,string:[2,3,4,16,20,22,40,42,48,49,50,51,57,58,67,68,69,71,73,75,78,80,81,82,83,84,86,87,92,95,113,116,121,124],strip:[51,84],strive:113,strongli:[1,3,36,113],struct:12,structur:[46,49,68,90,92,116,121,124],struggl:113,stuf:121,stuff:[4,37,82,87,117],stupid:37,style:117,sub:3,subclass:[3,7,36,40,42,49,50,52,57,58,61,63,67,68,73,82,87,116],subject:[113,124],sublim:113,sublimelint:113,submit:[4,125],submodul:[3,9,10,53,76],subplot:[30,31,36,37,94,117],subprocess:[19,20,22,25],subscrib:78,subsequ:62,subset:30,substitut:3,subtract:36,succes:87,success:[15,58],successfulli:[37,67],succinct:113,suddenli:3,suffici:4,suit:[5,71,79,84,88,119],sum:[0,125],summari:117,superclass:[3,87],superconduct:82,suppli:[3,47,49,80,82,107,124],support:[0,1,2,3,8,10,23,24,27,28,30,31,32,35,36,53,54,61,67,71,73,78,81,82,84,86,87,108,109,111,113,121,124],suppos:[67,71,73,81,82,86,87],suppress:[3,22,87],supress:71,sure:[4,11,17,29,36,37,82,87,113,116,120],sv2:60,sv3:60,sv4:60,swap:119,sweep:[0,6,8,10,12,13,16,23,30,36,42,43,58,60,61,65,69,78,82,84,85,87,104,111,116,117,119,123,124],sweep_tim:38,sweep_val:[0,1,125],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[9,10,55],sweepabl:65,sweepdata:36,sweeper:[78,107,117],sweeper_bw:36,sweeper_bwmod:36,sweeper_ord:36,sweeper_param:36,sweeper_samplecount:36,sweeper_start:36,sweeper_stop:36,sweeper_xmap:36,sweeper_xxx:36,sweepfixedvalu:[101,116],sweepvalu:[55,101,114],swept:[9,12,125],switch_to:73,switchchannelbas:73,switchchannelusb:73,symmetr:39,symmetri:37,sync:[20,22,27,28,31,36,71,117,124],sync_delai:28,sync_dur:28,sync_filt:17,sync_output:24,sync_sourc:24,syncchannel:71,synchron:[70,124],syntax:119,synthes:107,sys:[5,16,30],system32:[3,68,85],system:[3,19,40,44,50,57,58,68,82,86,87,95,104,106,121,124],system_id:[3,19,68],t_actual:37,t_set:37,t_start:[11,14,16],t_stop:[11,14,16],tab:[36,51,113,120],tabl:[87,117,121,124],tag:113,tailor:1,take:[0,3,10,14,16,28,29,35,40,41,42,55,57,58,70,74,78,84,87,108,113,116,119,120,125],taken:[84,87],talent:113,talk:[3,81,86,124,125],target:[33,37,60,61,68,87,89],target_curr:37,target_field:37,task:[6,10,16,24,38,55,64,101,105,113,116,124],tcpip0:[3,11,12,13,14,15,16,23,24,29,30,32,33,39,84],tcpip:[39,124],tear:[23,33],tech:119,techniqu:113,technolog:[11,13,16,24,39],tektp:31,tektron:110,tektronix:[3,12,20,22,23,66,107,108,111,117],tektronix_awg5014:[15,32,87],tektronix_awg5200:87,tektronix_awg520:87,tell:[49,51,64,113,124],telnet:73,temp0_0:[27,28],temp2_1:[27,28],temp5_2:[27,28],temperatur:[72,82,107,117],templat:113,temporari:[15,46,92],tempx_i:[27,28],tend:3,tens:113,term:[16,113],termin:[3,4,12,16,19,20,22,25,35,51,52,63,74,80,82,84,89,119,120,124],tesla:[37,82],test:[3,6,8,9,10,11,13,26,35,37,39,48,67,70,71,74,75,79,83,84,87,88,106,111,116,117,119,124],test_:4,test_ami430:37,test_attenu:88,test_attenuation_valid:4,test_awg_fil:32,test_channel_amplitud:71,test_channel_frequ:71,test_channel_offset:71,test_channel_phas:71,test_channel_wave_shap:71,test_chassis_and_slot:71,test_chassis_numb:71,test_clock_frequ:71,test_field_vector:37,test_firmware_vers:[79,88],test_frequ:79,test_hdf5formatt:5,test_init:4,test_instru:[66,113],test_metadata:113,test_on_off:79,test_open_clos:71,test_phas:79,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:79,test_pxi_trigg:71,test_send:87,test_serial_numb:71,test_slot_numb:71,test_snapshot:113,test_suit:66,test_weinschel_8320:4,testagilent_e8527d:79,testcas:66,testfil:15,testhdf5_format:5,testkeysight_m3201a:71,testkeysight_m3300a:71,testmetadat:113,testsd_modul:71,testsweep:[0,10,11,16,20,22],testweinschel_8320:88,text:[3,15,16,83,113,116,124],texttestrunn:5,textual:124,tg_thru_0db:85,tg_thru_20db:85,than:[1,3,4,27,28,30,36,55,58,113,119,124],thank:113,thebrain:113,thei:[2,3,4,6,8,10,19,20,22,25,45,46,55,62,67,68,81,86,87,113,116,121,124],them:[1,2,3,4,7,14,23,27,28,38,45,66,67,71,73,80,81,82,86,87,113,117,120,121,124,125],theme:93,then_act:9,theoret:124,therebi:24,therefor:[3,4,29,39],thermometri:34,theta:37,theta_measur:37,thi:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,16,19,20,22,23,25,27,28,29,30,31,32,33,35,36,37,38,39,40,42,45,46,48,49,50,51,52,53,54,55,57,58,61,63,64,66,67,68,69,70,71,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,101,103,111,113,114,116,119,120,121,123,124,125],thing:[3,10,19,25,29,50,55,60,61,62,64,71,79,88,113,116,118,120,124,125],think:[113,121,124],thinksr:86,third:[39,120,124],those:[4,6,7,45,48,50,116,124],though:[1,3,58,60,61,67,71,73,81,86,87,124],thread:[75,124],thread_map:16,threadpoolexecutor:125,three:[1,7,27,28,33,36,51,60,80,87,124],through:[10,27,28,32,36,45,46,113,120,124,125],throughout:38,thu:[113,124],thursdai:33,tick:[1,19],tight_layout:[1,30,32],tim:24,time:[1,3,7,8,9,10,11,13,14,15,16,17,18,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,48,49,55,58,60,61,67,70,71,75,78,85,86,87,89,113,117,119,124,125],time_const:17,timebase_posit:[29,39],timebase_rang:[29,39],timebase_scal:29,timeit:[12,13],timeout:[15,16,17,19,20,23,29,32,33,36,38,52,63,71,82,84,86,87],timeout_tick:[19,68],timer:[20,22],timestamp:[119,124],titl:1,tmpfile:[34,82],to_setpoint:82,to_zero:82,tobyt:15,toc:10,todo:[45,71,74,75,78,79,86,113],togeth:[1,6,32,84,124],toggl:21,tolist:[3,4],ton:3,too:[3,30,40,57,58,67,84,113],took:35,tool:[1,113],top:[1,93],toplevel:109,topo:8,tortur:113,tostr:15,total:[3,7,30],touch:113,tps1:31,tps1_scope_measurement_0:31,tps1_scope_measurement_1:31,tps2012:[66,117],tps2012channel:87,tps:31,trace:[1,4,10,30,31,36,68,69,71,78,84,93,94,117],trace_point:38,traceback:[2,16,20,22,119],tracedata:38,tracenotreadi:[69,71,87],tracesetpointschang:71,track:[33,68,70,85,87,124],tracknr:87,trail:[113,120],transer:19,transfer:[15,32,33,87],transfer_offset:[19,68],transform:[37,50,58,64,68,73,82,87],translat:[3,49,78],transmiss:84,trcl:86,treat:[70,95,124],tree:[117,120],trg:[13,16],triangl:33,trig:[36,86,87],trig_engine_j:19,trig_engine_k:19,trig_engine_op_j:19,trig_slope_posit:19,trig_wait:[14,32,33,87],triga:[33,87],trigb:[33,87],trigger:[16,19,24,31,32,36,78,84,87,110,117],trigger_count:13,trigger_delai:[19,68],trigger_displai:29,trigger_edge_slop:[29,39],trigger_edge_sourc:39,trigger_en:39,trigger_engine1:[19,68],trigger_engine2:[19,68],trigger_input_imped:87,trigger_input_polar:87,trigger_input_slop:87,trigger_input_threshold:87,trigger_level1:[19,68],trigger_level2:[19,68],trigger_level:[29,31,39],trigger_mod:86,trigger_oper:[19,68],trigger_slop:16,trigger_slope1:[19,68],trigger_slope2:[19,68],trigger_sourc:[13,16,29,31,87],trigger_source1:[19,68],trigger_source2:[19,68],trigger_typ:[29,31],triton1_thermometri:34,triton:[66,107,117],trival:125,trivial:[1,4,113],trivialdictionari:68,troubleshoot:124,truncat:113,trust:58,truthi:[10,41],ts_end:9,ts_start:9,tst:5,tstart:[20,22],tudelft:75,tune:[75,113],tupl:[1,7,32,36,40,42,45,50,57,74,78,87,93,94],turn:[3,13,23,29,30,35,36,80,82,87,89],turoti:10,tutori:[6,7,9,29,38,117,123],tutorial_sequ:33,twice:14,twini:15,two:[1,3,7,9,10,12,13,14,17,23,26,30,31,32,33,45,58,69,74,78,80,85,86,87,113,117,120,125],twopi:14,txt:[75,87],type:[0,1,2,7,8,9,10,11,12,13,14,16,17,18,19,20,22,23,29,30,31,32,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,71,73,74,75,78,81,86,87,91,93,94,95,109,113,120,121,124,125],typeerror:[16,41,61,87],typic:[45,113,117,124],typo:113,ufh:107,uhf:[78,111,117],uint16:15,unambigu:3,unassign:[27,28],unavail:67,unblock:26,uncanningli:4,uncommit:68,uncondit:87,undefin:[24,67],under:[87,120],underli:[4,73,82,87,116,124],underscor:113,understand:[113,124],undesir:10,undo:87,unfortun:71,unga:[2,121],uni:75,unicorn:8,unif:111,unimport:87,union:[40,42,45,50,53,57,58,60,66,69,73],uniqu:[45,71],unit:[0,3,4,7,9,10,19,22,27,28,36,40,43,45,57,58,65,68,69,75,78,80,82,84,86,89,106,107,113,124,125],unitless:[40,57,58],unittest:[5,66,113],unknown:3,unless:[27,28,45,113],unlik:[33,36,40,57,66],unload:87,unlock:[82,84],unnecessari:7,unrecogn:67,unrel:124,unsav:124,unsign:87,until:[3,32,58,82,124],unus:92,updat:[1,2,4,10,15,16,27,28,29,30,31,33,36,38,40,44,57,58,68,69,74,78,82,84,87,89,93,94,95,110,116,124],update_acquisitionkwarg:[19,68],update_curr:[16,27,28,74],update_display_off:30,update_display_on:30,update_measurement_en:89,update_snapshot:95,upfront:[40,57],upgrad:[36,120],upload:[12,32,33,87,117],upload_awg_fil:15,upon:[1,24,27,28,66,86],uppercas:82,ups:37,upsteam:2,upto:87,url:26,usag:[7,48,61,71,82,87,114,117,123],usb:[3,4,111,117],usb_sa124b:66,usb_spdt:[26,66],use:[0,1,2,3,4,6,7,10,12,14,30,31,32,36,38,39,45,48,50,51,58,60,61,63,64,66,68,71,74,75,79,80,81,82,86,87,88,94,113,116,117,118,120,121,123,124,125],use_lock:75,use_thread:[9,16],used:[3,4,7,10,21,23,29,37,40,42,45,48,50,51,57,58,60,61,66,68,71,74,75,78,79,81,82,84,85,86,87,91,95,116,119,124],useful:[1,4,7,36,71,74,113,120,124],user:[1,2,3,9,15,16,20,26,30,32,33,58,63,67,68,78,80,86,87,119,120,121,124],usernam:113,usernot:87,usersadministratordocumentsdevelopmentqcodes_devqcodesinstrumentparamet:18,usersoemdocu:33,usersqcod:36,userwarn:[18,30,36],uses:[1,3,7,58,66,67,85,86,116,121,124],using:[1,3,8,10,23,27,28,32,33,36,37,44,49,51,63,69,71,75,80,85,87,111,113,116,119,120,124],usual:[3,10,39,53,54,74,87,124],util:[0,3,4,5,16,20,22,71,87,101,113,125],utilis:4,utility_freq:71,utopia:113,v11:31,v_amp_in:86,v_in:86,v_out:86,v_rang:[27,28],vaild:44,val:[0,3,4,7,9,10,36,58,59,60,61,68,87,89,125],val_map:[3,58,59],valid:[0,2,3,4,7,16,20,22,30,40,44,50,57,58,60,61,75,87,91,93,101,107,108,109,113,114,121,124,125],validate_al:50,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,9,10,11,12,16,17,19,20,22,23,26,27,28,29,30,32,33,36,37,38,40,43,44,45,48,50,51,55,57,58,60,61,65,66,67,68,69,70,71,74,75,78,80,82,84,86,87,116,124,125],valuabl:[9,113],value_round:75,value_typ:2,valueerror:[3,4,35,42,64,66,71,78,79,87,88],valv:82,vari:[10,38,40,57,124],variabl:[51,58,71,86,87,113,116,117,121,124],variou:[67,71,73,81,86,87,113,116],vbw:85,vector:[37,80,124],vendor:[3,4,9,10,17,19,22,23,38,67,68,71,73,81,82,86,87],ver1:17,verbos:[5,10,66,69,71,74,84,87,113],verbose_channel:10,veri:[4,27,28,36,68,71,74,124],verifi:[3,35,37,86],vernier:86,versa:[23,36,37],version:[2,3,7,8,10,15,29,31,67,68,70,71,74,75,79,82,84,85,86,87,105,119,120,125],versu:[87,117],vertic:[31,36,84,117],vi_error_rsrc_nfound:124,vi_error_tmo:16,via:[1,3,8,28,33,36,53,54,72,80,81,86,87,95,111,117,120,124],vibuf:16,vice:[23,36],videobandwidth:85,view:[29,30,113],vipuint32:16,virtual:[3,80,81,84,86,125],virtualivvi:125,vis:37,visa:[3,4,15,16,32,58,63,67,69,70,71,72,73,74,75,79,81,82,83,84,86,87,88,89,124],visa_handl:[15,16,63,70,82],visainstru:[4,69,70,71,72,74,75,79,82,83,84,86,87,88,89,101,111,116,117,124],visaioerror:16,visalib:[4,16,63],visess:16,visibl:[27,28],vision:113,visit:113,visual:119,visualis:32,viuint32:16,viwrit:16,vna:[30,38,85],vna_:30,vna_output_power_set:38,vna_paramet:[30,84],vna_s11:30,vna_s11_magnitud:30,vna_s11_phas:30,vna_s11_power_set:30,vna_s11_trac:30,vna_s12_trac:30,vna_s13_trac:30,vna_s14_trac:30,vna_s21_trac:30,vna_s22_trac:30,vna_s23_trac:30,vna_s24_trac:30,vna_s31_trac:30,vna_s32_trac:30,vna_s33_trac:30,vna_s34_trac:30,vna_s41_trac:30,vna_s42_trac:30,vna_s43_trac:30,vna_s44_trac:30,vna_trac:38,vogel:113,volatg:35,volt:[3,10,11,12,13,20,22,23,35,36,68,70,75,86,87,89],volt_0:22,volt_1:22,volt_:86,volt_set:22,voltag:[3,4,7,8,9,10,11,12,13,21,23,27,28,35,58,66,70,71,74,75,81,86,87,89,107,108,116,124],voltage_limit:35,voltage_rang:35,voltage_range_statu:74,voltage_raw:[3,81,86],voltagedict:86,voltagedivid:66,voltageparamet:86,voltmet:[71,124],volunt:113,vpp:24,vrang:[3,16,27,28,74],vsd:6,w8320_1:3,wai:[1,2,3,4,6,10,17,19,32,36,42,58,74,87,93,113,124,125],wait:[4,10,13,15,32,38,50,55,58,69,80,82,87,101,116,124,125],wait_l:15,wait_trigg:87,wait_valu:87,walk:125,wall:30,want:[0,1,2,3,6,21,29,30,31,36,37,39,40,46,57,66,67,68,74,113,114,116,118,120,121,123,124,125],warn:[2,3,18,29,30,32,36,37,55,67,68,78,106,121],wav:[15,74],wave:[14,15,29,31,39],waveform:[7,24,29,39,71,79,83,87,107,111,117,124],waveform_nam:87,waveformgenerator_33xxx:71,waveformlib:15,waveformlist:[33,87],web:[36,78],week:[113,118],weight:2,wein_sim:4,weinschel:[3,4,66],weinschel_8320:[3,66,117],welcom:[113,118],well:[1,4,6,29,36,42,49,67,70,71,73,79,81,82,86,87,88,113,124],went:37,were:[45,46,58,68,103],wf_dummi:15,wfm001ch1:87,wfm002ch1:87,wfm1:87,wfm1ch1:87,wfm1ch2:87,wfm2:87,wfm2ch1:87,wfm2ch2:87,wfm:[14,32,33,87],wfm_ch1_n1:33,wfm_ch1_n2:33,wfm_ch2_n1:33,wfm_ch2_n2:33,wfmch1pos1:87,wfmch1pos2:87,wfmch2pos1:87,wfmname:[15,32,87],wfmx:[14,33,87],wfmx_file:[14,33],wfmxfilefold:87,wfname_l:[15,87],wfs1:87,wfs2:87,wfs:87,what:[2,9,10,27,28,32,36,37,52,55,57,60,61,63,70,82,87,89,101,113,117,121,124,125],whatev:[13,68],wheel:113,when:[1,3,4,7,8,9,23,24,27,28,30,31,32,35,37,40,41,42,45,48,57,58,61,62,66,67,68,70,71,74,75,78,79,81,86,87,88,92,113,119,121,124,125],whenev:[86,87,124],where:[3,4,7,8,10,27,28,29,33,40,46,49,57,60,61,68,70,71,75,78,81,82,86,87,90,92,93,113,124,125],wherea:13,whether:[21,29,49,51,52,58,74,80,83,87,113,120,124],which:[1,2,3,4,6,7,8,10,14,30,32,36,37,40,42,44,45,46,48,49,51,54,55,57,58,60,62,66,67,68,71,74,80,82,84,86,87,90,92,95,113,116,120,121,124,125],whish:0,white:[29,93,113],whitespac:51,who:[113,118],whole:[3,6,7,51,57,81,86,113,116,124],whose:[45,86,95,124,125],why:[36,113],widget:[1,19,20,22,25,105],width:[93,94],william:[9,15,16,36,113],williamhpnielsen:[74,86],win32:67,win:2,window:[3,19,20,22,25,30,68,82,85,87,94,110,120],window_titl:93,windowtitl:22,wish:87,with_bg_task:[1,10,16,38],within:[1,3,19,39,42,45,62,64,68,78,113,119,124],without:[21,35,37,73,84,109,117,121,124],won:30,wonder:36,word:[117,118],work:[2,3,4,6,19,25,35,46,47,71,75,79,83,84,86,87,88,90,92,113,119,120,121,124,125],workflow:[117,119],world:[68,113,119],worri:35,wors:113,worthwhil:9,would:[1,2,7,19,20,22,25,48,71,84,113,118,124],wouldn:4,wrap:[7,36,47,73,82,87,124],wrapper:[69,75,82,84],write:[2,3,4,8,13,15,16,20,24,46,49,50,51,52,63,67,70,73,74,75,82,86,87,89,92,113,123,124],write_confirm:52,write_copi:124,write_metadata:49,write_modul:86,write_period:[46,92],write_pin:67,write_port:67,write_raw:[16,82,87],written:[1,51,68,71,82,87],wrong:[35,37,70,113],ww2:26,x_actn:25,x_fld:25,x_fldc:25,x_length:1,x_offset:17,x_rate:25,x_setpoint:25,x_val:[0,125],xlabel:37,xml:[87,113],xrm:36,xsp4t:111,xxx:70,y_length:1,y_offset:17,y_val:[0,125],yai:105,yaml:117,yeah:22,year:113,yes:[87,124],yet:[33,36,39,49,71,113,124],yield:[4,55,86],ylabel:37,yml:120,yokogawa:[66,106,111,117],yolo:2,you:[0,1,2,3,4,6,7,8,9,10,23,26,29,30,31,32,36,37,39,40,44,45,46,47,49,50,55,57,58,60,61,66,68,74,81,86,87,90,92,94,114,116,117,118,120,121,123,124,125],your:[3,4,9,10,36,39,44,50,66,67,71,73,81,86,87,113,117,118,120,121,124,125],yourself:[9,68,86],yrm:36,yscale:36,z_val:[0,125],zero:[3,14,15,27,28,32,33,37,39,40,57,58,75,78,82,87],zip:[15,16,37],ziuhfli:[36,66],ziuhfli_rrm:36,ziuhfli_sig:36,ziuhfli_xrm:36,ziuhfli_yrm:36,zn20:117,znb20:66,znb4:84,znb8:[30,84,109],znb:[30,66],znbchannel:84,zone:37,zoom:78,zurich:36},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","Datasaving Examples","Measure without a Loop","Parameters in QCoDeS","The Location Formatter","The Snapshot","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark","Benchmark of Keysight 34465A","Benchmark of waveform upload to Tektronix AWG70002A","Benchmark of waveform upload to Tektronix AWG5014C","QDac and Keysight 34465 sync and buffer","QCoDeS example with SR830","Lets capture by sending triggers. We use the IVVI to send triggers.","Qcodes example ATS_ONWORK","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Example for Minicircuits Switch Boxes controlled via USB","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","QCoDeS Example with Tektronix AWG70002A","Qcodes example with Triton","Qcodes example with Yokogawa GS200/GS210","QCoDeS Example with ZI UHF-LI","QCoDeS example with AMI430","Qcodes example with HP8753D","Example Notebook for Keysight Infiniium Oscilloscopes","qcodes.ArrayParameter","qcodes.BreakIf","qcodes.ChannelList","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.InstrumentChannel","qcodes.Loop","qcodes.ManualParameter","qcodes.MultiParameter","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.Advantech package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.HP package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.Lakeshore package","qcodes.instrument_drivers.Minicircuits package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelog for QCoDeS 0.1.9","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":12,"33500b":24,"34400a":20,"34411a":11,"34465a":[11,13],"break":[104,105,106,107,111],"class":[3,101,102,103],"default":121,"function":[33,50,101,102,103],"import":[10,11,12,32,39],"new":[104,105,106,107,108,109,110,111,113],"public":103,"switch":26,"while":38,ATS:68,IPS:25,Not:4,THE:31,THERE:32,That:4,The:[4,8,9,10],Using:[2,24,36,120,121],abort:122,acquir:[31,38],acquisit:[17,29,31,39],action:[8,10,103],adding:3,advantech:67,aggreg:0,agil:[11,20,79],agilent_34400a:79,alazartech:68,all:6,american_magnet:80,ami430:[37,80],approach:15,arrai:6,arrayparamet:[7,40],async:125,ats9870:68,ats_acquisition_control:68,ats_onwork:19,attent:[27,28],avanc:125,averag:29,awg5014:[32,87],awg5014c:15,awg5200:87,awg520:87,awg70000a:87,awg70002a:[14,33,87],awg:[32,33],awgfilepars:87,base:3,base_spdt:73,basic:[10,23,24,27,28,36,117],benchmark:[12,13,14,15,16,30,117],bonu:4,box:26,breakif:41,buffer:[16,17],bug:113,build:14,burst:24,can:10,captur:18,caution:36,chang:[2,104,105,106,107,111],changelog:[104,105,106,107,108,109,110,111,112],channel:[3,27,28,30],channellist:42,chat:118,clever:113,code:[113,115],combin:[0,65,125],combinedparamet:43,command:96,commit:113,commun:114,comprehens:1,config:[2,44,103,121],configur:[2,121],congratul:4,cont:29,content:[10,32,36,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,113],continu:29,contribut:113,control:26,core:2,creat:[3,4,39],curv:[23,31],custom:[2,3],d5a:75,data:[5,10,39,103],dataarrai:45,dataformat:5,datasav:5,dataset:[46,124],decadac:[21,70],deferred_oper:97,defin:10,demo:6,demodul:36,depend:39,develop:113,devic:66,dg4000:83,diskio:47,dll:3,driver:[3,117,125],dummi:5,dynam:3,e8267c:79,e8527d:79,error:24,event:1,exampl:[3,4,5,10,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,117,124],experi:2,f1d:75,familiar:113,faq:122,fast:23,featur:113,file:[4,14,32,121],fix:[104,105,106,107],format:113,formatloc:48,formatt:[8,49],from:[5,31,120],gener:[5,15,33],get:[12,13,32,118,120],git:113,github:120,global:10,gnuplotformat:51,gs200:[35,89],gs210:35,guid:[114,123],handl:[1,24],harvard:70,help:118,helper:98,hierarchi:116,horizont:29,hour:118,how:[1,4,122],hp33210a:79,hp8133a:69,hp8753d:[38,69],hp_83650a:69,ilm200:82,improv:[104,105,106,107,108,109,110,111],includ:4,individu:36,infiniium:[39,71],initialis:[12,32],input:[29,36],instal:120,instanti:[6,10],instrument:[3,4,5,6,9,10,39,53,103,116,124,125],instrument_driv:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],instrumentchannel:54,interact:10,interfac:1,introduct:124,involv:3,ipinstru:52,ips120:82,ithaco:[22,81],ithaco_1211:81,ivvi:[18,75],keithlei:23,keithley_2000:87,keithley_2400:87,keithley_2600:87,keithley_2600_channel:87,keithley_2700:87,kelvinox:82,keysight:[11,13,16,24,39,71],keysight_33500b:71,keysight_33500b_channel:71,keysight_34465a:71,keysight_e8267d:71,keysightagilent_33xxx:71,lakeshor:72,latest:120,lazi:32,let:18,linkag:116,list:[17,32,33],live:10,load:10,load_data:90,locat:[8,10],loop:[5,6,9,10,11,55,103,124],m3201a:71,m3300a:71,magnet:25,make:[32,33],manual:3,manualparamet:56,matplot:[1,94],matplotlib:1,measur:[6,9,10,36,38,91,103,122,124,125],mercuri:25,mercuryip:82,messag:113,meta:125,metadata:99,minicircuit:[26,73],misc:103,mode:[24,32],model_336:72,modul:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],more:[3,118,121],multiparamet:[7,57],multipl:10,n51x1:71,need:6,new_data:92,note:113,notebook:39,nplc:12,object:116,offic:118,one:11,onli:6,oper:[23,33],organ:3,oscilloscop:[29,31,39],out:29,output:[6,10,36],overview:[27,28,124],oxford:82,packag:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],paramet:[0,3,4,7,9,17,58,116,124,125],part:11,pcie_1751:67,phase:119,plan:119,plot:[1,10,93,94,103],pre:13,predefin:30,prepar:39,prerequisit:36,privat:102,project:119,provid:10,pull:113,push:113,py_head:77,pyqtgraph:93,pyvisa:4,qcmatplotlib:94,qcode:[2,3,7,10,11,17,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,104,105,106,107,108,109,110,111,117,119,120,121,122],qdac:[16,27,28,74],qdac_channel:[28,74],qdev:74,qtplot:[1,93],qutech:75,raw:11,rc_sp4t:73,rc_spdt:73,read:[11,29],realli:113,record:29,reg:77,releas:120,remov:3,report:113,request:113,requir:120,respons:124,result:[12,13],rigol:83,rohd:[29,30],rohde_schwarz:84,rough:116,rto1000:84,rto:29,run:[5,29,32,113,122],s5i:75,sampl:36,save:[2,121],schwarz:[29,30],scope:36,script:12,send:[18,32,33],sensor:[27,28],sequenc:33,seqx:14,seri:29,set:[10,12,13,27,28,29,31,36],setup:[11,39,113],sg384:86,sgs100a:84,shot:16,signal:[29,36],signal_hound:85,sim928:86,simpl:[0,1,3],simul:[3,4,125],singl:[16,29,38],smr40:84,snapshot:9,softwar:13,some:32,sourc:115,spcerr:77,spectrum:[76,77],sr560:86,sr830:[17,86],sr860:86,sr865:86,sr86x:86,standardparamet:59,stanford_research:86,start:[5,120],station:[95,103,116],stuff:16,style:[33,113],submodul:[66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89],subpackag:[66,76],subplot:1,summari:13,sweep:[1,9,11,38,125],sweeper:36,sweepfixedvalu:60,sweepvalu:[61,116],sync:16,tabl:[10,32,36],task:62,tektronix:[14,15,31,32,33,87],temperatur:[27,28],test:[4,5,66,113],test_suit:[71,79,88],them:32,time:12,todo:[55,61,82,84,85,87,116,121,125],tps2012:[31,87],trace:[29,38,39],trigger:[13,18,29,39],triton:[34,82],tutori:[10,125],two:11,typic:10,uhf:36,updat:[120,121],upload:[14,15],usag:[24,27,28,36,113,122],usb:26,usb_sa124b:85,usb_spdt:73,use:18,user:123,using:117,util:[96,97,98,99,100,103],valid:[100,116],valu:121,variabl:2,versu:11,vertic:29,via:[26,32],visainstru:[3,63],wait:64,waveform:[14,15,32,33],weinschel:88,weinschel_8320:[4,88],what:[3,4],without:[6,30],word:36,workflow:10,write:125,yaml:4,yokogawa:[35,89],you:113,your:2,ziuhfli:78,zn20:30,znb20:84,znb:84}})
\ No newline at end of file
+Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Creating Simulated PyVISA Instruments","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Parameters","_notebooks/The Location Formatter","_notebooks/The Snapshot","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get","_notebooks/benchmarking/Benchmark of waveform upload to AWG70002A","_notebooks/benchmarking/Benchmark of waveform upload to Tektronix AWG5014C","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","_notebooks/driver_examples/Qcodes_example_with_AMI430","_notebooks/driver_examples/Qcodes_example_with_HP8753D","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope","api/generated/qcodes.ArrayParameter","api/generated/qcodes.BreakIf","api/generated/qcodes.ChannelList","api/generated/qcodes.CombinedParameter","api/generated/qcodes.Config","api/generated/qcodes.DataArray","api/generated/qcodes.DataSet","api/generated/qcodes.DiskIO","api/generated/qcodes.FormatLocation","api/generated/qcodes.Formatter","api/generated/qcodes.Function","api/generated/qcodes.GNUPlotFormat","api/generated/qcodes.IPInstrument","api/generated/qcodes.Instrument","api/generated/qcodes.InstrumentChannel","api/generated/qcodes.Loop","api/generated/qcodes.ManualParameter","api/generated/qcodes.MultiParameter","api/generated/qcodes.Parameter","api/generated/qcodes.StandardParameter","api/generated/qcodes.SweepFixedValues","api/generated/qcodes.SweepValues","api/generated/qcodes.Task","api/generated/qcodes.VisaInstrument","api/generated/qcodes.Wait","api/generated/qcodes.combine","api/generated/qcodes.instrument_drivers","api/generated/qcodes.instrument_drivers.Advantech","api/generated/qcodes.instrument_drivers.AlazarTech","api/generated/qcodes.instrument_drivers.HP","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.Lakeshore","api/generated/qcodes.instrument_drivers.Minicircuits","api/generated/qcodes.instrument_drivers.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/0.1.9","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Creating Simulated PyVISA Instruments.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Parameters.rst","_notebooks/The Location Formatter.rst","_notebooks/The Snapshot.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.rst","_notebooks/benchmarking/Benchmark of waveform upload to AWG70002A.rst","_notebooks/benchmarking/Benchmark of waveform upload to Tektronix AWG5014C.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.rst","_notebooks/driver_examples/Qcodes_example_with_AMI430.rst","_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst","api/generated/qcodes.ArrayParameter.rst","api/generated/qcodes.BreakIf.rst","api/generated/qcodes.ChannelList.rst","api/generated/qcodes.CombinedParameter.rst","api/generated/qcodes.Config.rst","api/generated/qcodes.DataArray.rst","api/generated/qcodes.DataSet.rst","api/generated/qcodes.DiskIO.rst","api/generated/qcodes.FormatLocation.rst","api/generated/qcodes.Formatter.rst","api/generated/qcodes.Function.rst","api/generated/qcodes.GNUPlotFormat.rst","api/generated/qcodes.IPInstrument.rst","api/generated/qcodes.Instrument.rst","api/generated/qcodes.InstrumentChannel.rst","api/generated/qcodes.Loop.rst","api/generated/qcodes.ManualParameter.rst","api/generated/qcodes.MultiParameter.rst","api/generated/qcodes.Parameter.rst","api/generated/qcodes.StandardParameter.rst","api/generated/qcodes.SweepFixedValues.rst","api/generated/qcodes.SweepValues.rst","api/generated/qcodes.Task.rst","api/generated/qcodes.VisaInstrument.rst","api/generated/qcodes.Wait.rst","api/generated/qcodes.combine.rst","api/generated/qcodes.instrument_drivers.rst","api/generated/qcodes.instrument_drivers.Advantech.rst","api/generated/qcodes.instrument_drivers.AlazarTech.rst","api/generated/qcodes.instrument_drivers.HP.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.rst","api/generated/qcodes.instrument_drivers.Lakeshore.rst","api/generated/qcodes.instrument_drivers.Minicircuits.rst","api/generated/qcodes.instrument_drivers.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/0.1.9.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[40,1,1,""]},"qcodes.BreakIf":{__init__:[41,1,1,""]},"qcodes.ChannelList":{__init__:[42,1,1,""]},"qcodes.CombinedParameter":{__init__:[43,1,1,""]},"qcodes.Config":{__init__:[44,1,1,""],config_file_name:[44,2,1,""],current_config:[44,2,1,""],current_config_path:[44,2,1,""],current_schema:[44,2,1,""],cwd_file_name:[44,2,1,""],default_file_name:[44,2,1,""],env_file_name:[44,2,1,""],home_file_name:[44,2,1,""],schema_cwd_file_name:[44,2,1,""],schema_default_file_name:[44,2,1,""],schema_env_file_name:[44,2,1,""],schema_file_name:[44,2,1,""],schema_home_file_name:[44,2,1,""]},"qcodes.DataArray":{__init__:[45,1,1,""]},"qcodes.DataSet":{__init__:[46,1,1,""],background_functions:[46,2,1,""]},"qcodes.DiskIO":{__init__:[47,1,1,""]},"qcodes.FormatLocation":{__init__:[48,1,1,""]},"qcodes.Formatter":{__init__:[49,1,1,""]},"qcodes.Function":{__init__:[50,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[51,1,1,""]},"qcodes.IPInstrument":{__init__:[52,1,1,""]},"qcodes.Instrument":{__init__:[53,1,1,""],functions:[53,2,1,""],name:[53,2,1,""],parameters:[53,2,1,""],submodules:[53,2,1,""]},"qcodes.InstrumentChannel":{__init__:[54,1,1,""],functions:[54,2,1,""],name:[54,2,1,""],parameters:[54,2,1,""]},"qcodes.Loop":{__init__:[55,1,1,""]},"qcodes.ManualParameter":{__init__:[56,1,1,""]},"qcodes.MultiParameter":{__init__:[57,1,1,""]},"qcodes.Parameter":{__init__:[58,1,1,""]},"qcodes.StandardParameter":{__init__:[59,1,1,""]},"qcodes.SweepFixedValues":{__init__:[60,1,1,""]},"qcodes.SweepValues":{__init__:[61,1,1,""]},"qcodes.Task":{__init__:[62,1,1,""]},"qcodes.VisaInstrument":{__init__:[63,1,1,""],visa_handle:[63,2,1,""]},"qcodes.Wait":{__init__:[64,1,1,""]},"qcodes.instrument_drivers":{Advantech:[67,4,0,"-"],AlazarTech:[68,4,0,"-"],HP:[69,4,0,"-"],Harvard:[70,4,0,"-"],Keysight:[71,4,0,"-"],Lakeshore:[72,4,0,"-"],Minicircuits:[73,4,0,"-"],QDev:[74,4,0,"-"],QuTech:[75,4,0,"-"],Spectrum:[76,4,0,"-"],ZI:[78,4,0,"-"],agilent:[79,4,0,"-"],american_magnetics:[80,4,0,"-"],devices:[66,4,0,"-"],ithaco:[81,4,0,"-"],oxford:[82,4,0,"-"],rigol:[83,4,0,"-"],rohde_schwarz:[84,4,0,"-"],signal_hound:[85,4,0,"-"],stanford_research:[86,4,0,"-"],tektronix:[87,4,0,"-"],test:[66,4,0,"-"],weinschel:[88,4,0,"-"],yokogawa:[89,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[67,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[67,0,1,""],DAQNaviException:[67,5,1,""],DAQNaviWarning:[67,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[67,2,1,""],check:[67,1,1,""],close:[67,1,1,""],get_idn:[67,1,1,""],port_count:[67,1,1,""],read_pin:[67,1,1,""],read_port:[67,1,1,""],write_pin:[67,1,1,""],write_port:[67,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[68,4,0,"-"],ATS:[68,4,0,"-"],ATS_acquisition_controllers:[68,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[68,0,1,""],AlazarParameter:[68,0,1,""],AlazarTech_ATS:[68,0,1,""],Buffer:[68,0,1,""],TrivialDictionary:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[68,2,1,""],handle_buffer:[68,1,1,""],post_acquire:[68,1,1,""],pre_acquire:[68,1,1,""],pre_start_capture:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[68,1,1,""],channels:[68,2,1,""],clear_buffers:[68,1,1,""],config:[68,1,1,""],dll_path:[68,2,1,""],find_boards:[68,6,1,""],get_board_info:[68,6,1,""],get_idn:[68,1,1,""],get_sample_rate:[68,1,1,""],signal_to_volt:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[68,1,1,""],free_mem:[68,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[68,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[68,1,1,""],fit:[68,1,1,""],handle_buffer:[68,1,1,""],post_acquire:[68,1,1,""],pre_acquire:[68,1,1,""],pre_start_capture:[68,1,1,""],update_acquisitionkwargs:[68,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[69,4,0,"-"],HP8753D:[69,4,0,"-"],HP_83650A:[69,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[69,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[69,0,1,""],HP8753DTrace:[69,0,1,""],HPIntParser:[69,3,1,""],TraceNotReady:[69,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[69,1,1,""],reset:[69,1,1,""],run_N_times:[69,1,1,""],run_continously:[69,1,1,""],startup:[69,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[69,1,1,""],prepare_trace:[69,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[69,0,1,""],parsestr:[69,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[69,1,1,""],print_modstatus:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[70,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[70,5,1,""],DacChannel:[70,0,1,""],DacReader:[70,0,1,""],DacSlot:[70,0,1,""],Decadac:[70,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[70,2,1,""],ask:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[70,2,1,""],DAC_SLOT_CLASS:[70,2,1,""],__repr__:[70,1,1,""],_ramp_state:[70,2,1,""],_ramp_time:[70,2,1,""],connect_message:[70,1,1,""],get_idn:[70,1,1,""],ramp_all:[70,1,1,""],set_all:[70,1,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[71,4,0,"-"],KeysightAgilent_33XXX:[71,4,0,"-"],Keysight_33500B:[71,4,0,"-"],Keysight_33500B_channels:[71,4,0,"-"],Keysight_34465A:[71,4,0,"-"],Keysight_E8267D:[71,4,0,"-"],M3201A:[71,4,0,"-"],M3300A:[71,4,0,"-"],N51x1:[71,4,0,"-"],test_suite:[71,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[71,0,1,""],InfiniiumChannel:[71,0,1,""],RawTrace:[71,0,1,""],TraceNotReady:[71,5,1,""],TraceSetPointsChanged:[71,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[71,1,1,""],prepare_curvedata:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[71,0,1,""],SyncChannel:[71,0,1,""],WaveformGenerator_33XXX:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[71,0,1,""],Keysight_33500B_Channels:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[71,0,1,""],Keysight_34465A:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[71,1,1,""],prepare:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[71,2,1,""],flush_error_queue:[71,1,1,""],model:[71,2,1,""],ranges:[71,2,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[71,0,1,""],parse_on_off:[71,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[71,1,1,""],on:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[71,0,1,""],M3300A_DIG:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[71,0,1,""],TestKeysight_M3300A:[71,0,1,""],TestSD_Module:[71,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_PXI_trigger:[71,1,1,""],test_channel_amplitude:[71,1,1,""],test_channel_frequency:[71,1,1,""],test_channel_offset:[71,1,1,""],test_channel_phase:[71,1,1,""],test_channel_wave_shape:[71,1,1,""],test_chassis_and_slot:[71,1,1,""],test_chassis_number:[71,1,1,""],test_clock_frequency:[71,1,1,""],test_open_close:[71,1,1,""],test_serial_number:[71,1,1,""],test_slot_number:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_PXI_trigger:[71,1,1,""],test_channel_amplitude:[71,1,1,""],test_channel_frequency:[71,1,1,""],test_channel_offset:[71,1,1,""],test_channel_phase:[71,1,1,""],test_channel_wave_shape:[71,1,1,""],test_chassis_and_slot:[71,1,1,""],test_chassis_number:[71,1,1,""],test_clock_frequency:[71,1,1,""],test_open_close:[71,1,1,""],test_serial_number:[71,1,1,""],test_slot_number:[71,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[71,2,1,""],setUpClass:[71,6,1,""],test_chassis_and_slot:[71,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[72,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[72,0,1,""],SensorChannel:[72,0,1,""]},"qcodes.instrument_drivers.Minicircuits":{Base_SPDT:[73,4,0,"-"],RC_SP4T:[73,4,0,"-"],RC_SPDT:[73,4,0,"-"],USB_SPDT:[73,4,0,"-"]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT":{SPDT_Base:[73,0,1,""],SwitchChannelBase:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT.SPDT_Base":{CHANNEL_CLASS:[73,2,1,""],add_channels:[73,1,1,""],all:[73,1,1,""],get_number_of_channels:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T":{MC_channel:[73,0,1,""],RC_SP4T:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T.RC_SP4T":{ask:[73,1,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT":{MC_channel:[73,0,1,""],RC_SPDT:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT.RC_SPDT":{ask:[73,1,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT":{SwitchChannelUSB:[73,0,1,""],USB_SPDT:[73,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT.USB_SPDT":{CHANNEL_CLASS:[73,2,1,""],PATH_TO_DRIVER:[73,2,1,""],get_idn:[73,1,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[74,4,0,"-"],QDac_channels:[74,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[74,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[74,1,1,""],max_status_age:[74,2,1,""],print_overview:[74,1,1,""],printslopes:[74,1,1,""],read:[74,1,1,""],read_state:[74,1,1,""],snapshot_base:[74,1,1,""],voltage_range_status:[74,2,1,""],write:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[74,0,1,""],QDacChannel:[74,0,1,""],QDacMultiChannelParameter:[74,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[74,1,1,""],max_status_age:[74,2,1,""],print_overview:[74,1,1,""],printslopes:[74,1,1,""],read:[74,1,1,""],read_state:[74,1,1,""],snapshot_base:[74,1,1,""],voltage_range_status:[74,2,1,""],write:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[74,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[75,4,0,"-"],D5a:[75,4,0,"-"],F1d:[75,4,0,"-"],IVVI:[75,4,0,"-"],S5i:[75,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[75,1,1,""],get_filter_value:[75,1,1,""],get_mode:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[75,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[75,2,1,""],Halfrange:[75,2,1,""],adjust_parameter_validator:[75,1,1,""],ask:[75,1,1,""],get_all:[75,1,1,""],get_idn:[75,1,1,""],get_pol_dac:[75,1,1,""],read:[75,1,1,""],round_dac:[75,1,1,""],set_dacs_zero:[75,1,1,""],set_pol_dacrack:[75,1,1,""],write:[75,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[75,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[77,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[77,4,0,"-"],spcerr:[77,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[77,3,1,""],GIGA_B:[77,3,1,""],KILO:[77,3,1,""],KILO_B:[77,3,1,""],MEGA:[77,3,1,""],MEGA_B:[77,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[78,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[78,0,1,""],Scope:[78,0,1,""],Sweep:[78,0,1,""],ZIUHFLI:[78,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[78,1,1,""],get:[78,1,1,""],names:[78,2,1,""],post_trigger_actions:[78,2,1,""],prepare_scope:[78,1,1,""],setpoint_names:[78,2,1,""],setpoints:[78,2,1,""],shapes:[78,2,1,""],units:[78,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[78,1,1,""],get:[78,1,1,""],names:[78,2,1,""],setpoint_names:[78,2,1,""],setpoints:[78,2,1,""],shapes:[78,2,1,""],units:[78,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[78,7,1,""],add_signal_to_sweeper:[78,1,1,""],close:[78,1,1,""],print_sweeper_settings:[78,1,1,""],remove_signal_from_sweeper:[78,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[79,4,0,"-"],E8267C:[79,4,0,"-"],E8527D:[79,4,0,"-"],HP33210A:[79,4,0,"-"],test_suite:[79,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[79,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[79,1,1,""],display_clear:[79,1,1,""],init_measurement:[79,1,1,""],reset:[79,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[79,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[79,7,1,""],rad_to_deg:[79,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[79,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[79,1,1,""],off:[79,1,1,""],on:[79,1,1,""],parse_on_off:[79,1,1,""],rad_to_deg:[79,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[79,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[79,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[79,2,1,""],setUpClass:[79,6,1,""],test_firmware_version:[79,1,1,""],test_frequency:[79,1,1,""],test_on_off:[79,1,1,""],test_phase:[79,1,1,""],test_power:[79,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[80,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[80,0,1,""],AMI430Exception:[80,5,1,""],AMI430SwitchHeater:[80,0,1,""],AMI430_3D:[80,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{ramp_to:[80,1,1,""],set_field:[80,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430SwitchHeater":{check_enabled:[80,1,1,""],check_state:[80,1,1,""],disable:[80,1,1,""],enable:[80,1,1,""],off:[80,1,1,""],on:[80,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[66,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[66,1,1,""],get_raw:[66,1,1,""],set_raw:[66,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[81,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[81,0,1,""],Ithaco_1211:[81,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[81,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[81,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[82,4,0,"-"],IPS120:[82,4,0,"-"],kelvinox:[82,4,0,"-"],mercuryiPS:[82,4,0,"-"],triton:[82,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[82,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[82,1,1,""],get_all:[82,1,1,""],get_idn:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],set_remote_status:[82,1,1,""],set_to_fast:[82,1,1,""],set_to_slow:[82,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[82,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[82,1,1,""],examine:[82,1,1,""],get_all:[82,1,1,""],get_changed:[82,1,1,""],get_idn:[82,1,1,""],heater_off:[82,1,1,""],heater_on:[82,1,1,""],hold:[82,1,1,""],identify:[82,1,1,""],leave_persistent_mode:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],run_to_field:[82,1,1,""],run_to_field_wait:[82,1,1,""],set_persistent:[82,1,1,""],to_setpoint:[82,1,1,""],to_zero:[82,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[82,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[82,1,1,""],get_all:[82,1,1,""],get_idn:[82,1,1,""],identify:[82,1,1,""],local:[82,1,1,""],remote:[82,1,1,""],rotate_Nvalve:[82,1,1,""],set_mix_chamber_heater_mode:[82,1,1,""],set_mix_chamber_heater_power_range:[82,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[82,0,1,""],MercuryiPSArray:[82,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[82,1,1,""],rtos:[82,1,1,""],to_zero:[82,1,1,""],write:[82,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[82,1,1,""],set:[82,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[82,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[82,1,1,""],set_B:[82,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[83,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[83,0,1,""],clean_string:[83,3,1,""],is_number:[83,3,1,""],parse_multiple_outputs:[83,3,1,""],parse_single_output:[83,3,1,""],parse_string_output:[83,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{RTO1000:[84,4,0,"-"],SGS100A:[84,4,0,"-"],SMR40:[84,4,0,"-"],ZNB20:[84,4,0,"-"],ZNB:[84,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[84,0,1,""],ScopeChannel:[84,0,1,""],ScopeTrace:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.RTO1000":{run_cont:[84,1,1,""],run_single:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get_raw:[84,1,1,""],prepare_trace:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[84,1,1,""],on:[84,1,1,""],parse_on_off:[84,1,1,""],set_IQ_state:[84,1,1,""],set_pulsemod_source:[84,1,1,""],set_pulsemod_state:[84,1,1,""],set_status:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[84,1,1,""],do_get_power:[84,1,1,""],do_get_pulse_delay:[84,1,1,""],do_get_status:[84,1,1,""],do_get_status_of_ALC:[84,1,1,""],do_get_status_of_modulation:[84,1,1,""],do_set_frequency:[84,1,1,""],do_set_power:[84,1,1,""],do_set_pulse_delay:[84,1,1,""],do_set_status:[84,1,1,""],do_set_status_of_ALC:[84,1,1,""],do_set_status_of_modulation:[84,1,1,""],get_all:[84,1,1,""],off:[84,1,1,""],off_modulation:[84,1,1,""],on:[84,1,1,""],on_modulation:[84,1,1,""],reset:[84,1,1,""],set_ext_trig:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[84,0,1,""],FrequencySweepMagPhase:[84,0,1,""],ZNB:[84,0,1,""],ZNBChannel:[84,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[84,1,1,""],get_raw:[84,1,1,""],set_sweep:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get_raw:[84,1,1,""],set_sweep:[84,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{CHANNEL_CLASS:[84,2,1,""],add_channel:[84,1,1,""],clear_channels:[84,1,1,""],display_grid:[84,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[85,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[85,0,1,""],constants:[85,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[85,1,1,""],abort:[85,1,1,""],check_for_error:[85,1,1,""],closeDevice:[85,1,1,""],configure:[85,1,1,""],default_server_name:[85,6,1,""],dll_path:[85,2,1,""],get_power_at_freq:[85,1,1,""],get_spectrum:[85,1,1,""],initialisation:[85,1,1,""],openDevice:[85,1,1,""],prepare_for_measurement:[85,1,1,""],preset:[85,1,1,""],saStatus:[85,2,1,""],saStatus_inverted:[85,2,1,""],safe_reload:[85,1,1,""],sweep:[85,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[85,2,1,""],TG_THRU_0DB:[85,2,1,""],TG_THRU_20DB:[85,2,1,""],sa124_MAX_FREQ:[85,2,1,""],sa124_MIN_FREQ:[85,2,1,""],sa44_MAX_FREQ:[85,2,1,""],sa44_MIN_FREQ:[85,2,1,""],saDeviceTypeNone:[85,2,1,""],saDeviceTypeSA124A:[85,2,1,""],saDeviceTypeSA124B:[85,2,1,""],saDeviceTypeSA44:[85,2,1,""],saDeviceTypeSA44B:[85,2,1,""],sa_AUDIO:[85,2,1,""],sa_AUDIO_AM:[85,2,1,""],sa_AUDIO_CW:[85,2,1,""],sa_AUDIO_FM:[85,2,1,""],sa_AUDIO_LSB:[85,2,1,""],sa_AUDIO_USB:[85,2,1,""],sa_AUTO_ATTEN:[85,2,1,""],sa_AUTO_GAIN:[85,2,1,""],sa_AVERAGE:[85,2,1,""],sa_BYPASS:[85,2,1,""],sa_IDLE:[85,2,1,""],sa_IQ:[85,2,1,""],sa_IQ_SAMPLE_RATE:[85,2,1,""],sa_LIN_FULL_SCALE:[85,2,1,""],sa_LIN_SCALE:[85,2,1,""],sa_LOG_FULL_SCALE:[85,2,1,""],sa_LOG_SCALE:[85,2,1,""],sa_LOG_UNITS:[85,2,1,""],sa_MAX_ATTEN:[85,2,1,""],sa_MAX_GAIN:[85,2,1,""],sa_MAX_IQ_DECIMATION:[85,2,1,""],sa_MAX_RBW:[85,2,1,""],sa_MAX_REF:[85,2,1,""],sa_MAX_RT_RBW:[85,2,1,""],sa_MIN_IQ_BANDWIDTH:[85,2,1,""],sa_MIN_MAX:[85,2,1,""],sa_MIN_RBW:[85,2,1,""],sa_MIN_RT_RBW:[85,2,1,""],sa_MIN_SPAN:[85,2,1,""],sa_POWER_UNITS:[85,2,1,""],sa_REAL_TIME:[85,2,1,""],sa_SWEEPING:[85,2,1,""],sa_TG_SWEEP:[85,2,1,""],sa_VOLT_UNITS:[85,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[86,4,0,"-"],SIM928:[86,4,0,"-"],SR560:[86,4,0,"-"],SR830:[86,4,0,"-"],SR860:[86,4,0,"-"],SR865:[86,4,0,"-"],SR86x:[86,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[86,1,1,""],byte_to_bits:[86,7,1,""],check_module_errors:[86,1,1,""],find_modules:[86,1,1,""],get_module_idn:[86,1,1,""],get_module_status:[86,1,1,""],get_voltage:[86,1,1,""],reset_module:[86,1,1,""],set_smooth:[86,1,1,""],set_voltage:[86,1,1,""],write_module:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[86,0,1,""],VoltageParameter:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[86,0,1,""],SR830:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[86,1,1,""],prepare_buffer_readout:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[86,0,1,""],SR86xBuffer:[86,0,1,""],SR86xBufferReadout:[86,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_samples:[86,1,1,""],get_capture_data:[86,1,1,""],start_capture:[86,1,1,""],stop_capture:[86,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[86,1,1,""],prepare_readout:[86,1,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[87,4,0,"-"],AWG5200:[87,4,0,"-"],AWG520:[87,4,0,"-"],AWG70000A:[87,4,0,"-"],AWG70002A:[87,4,0,"-"],AWGFileParser:[87,4,0,"-"],Keithley_2000:[87,4,0,"-"],Keithley_2400:[87,4,0,"-"],Keithley_2600:[87,4,0,"-"],Keithley_2600_channels:[87,4,0,"-"],Keithley_2700:[87,4,0,"-"],TPS2012:[87,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[87,0,1,""],parsestr:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[87,2,1,""],AWG_FILE_FORMAT_HEAD:[87,2,1,""],all_channels_off:[87,1,1,""],all_channels_on:[87,1,1,""],change_folder:[87,1,1,""],clear_message_queue:[87,1,1,""],create_and_goto_dir:[87,1,1,""],delete_all_waveforms_from_list:[87,1,1,""],force_event:[87,1,1,""],force_trigger:[87,1,1,""],force_trigger_event:[87,1,1,""],generate_awg_file:[87,1,1,""],generate_channel_cfg:[87,1,1,""],generate_sequence_cfg:[87,1,1,""],get_all:[87,1,1,""],get_current_folder_name:[87,1,1,""],get_error:[87,1,1,""],get_filenames:[87,1,1,""],get_folder_contents:[87,1,1,""],get_sq_mode:[87,1,1,""],get_sqel_loopcnt:[87,1,1,""],get_sqel_trigger_wait:[87,1,1,""],get_sqel_waveform:[87,1,1,""],get_state:[87,1,1,""],goto_root:[87,1,1,""],is_awg_ready:[87,1,1,""],load_awg_file:[87,1,1,""],make_and_save_awg_file:[87,1,1,""],make_send_and_load_awg_file:[87,1,1,""],newlinestripper:[87,1,1,""],pack_waveform:[87,1,1,""],run:[87,1,1,""],send_DC_pulse:[87,1,1,""],send_awg_file:[87,1,1,""],send_waveform_to_list:[87,1,1,""],set_current_folder_name:[87,1,1,""],set_sqel_event_jump_target_index:[87,1,1,""],set_sqel_event_jump_type:[87,1,1,""],set_sqel_event_target_index:[87,1,1,""],set_sqel_goto_state:[87,1,1,""],set_sqel_goto_target_index:[87,1,1,""],set_sqel_loopcnt:[87,1,1,""],set_sqel_loopcnt_to_inf:[87,1,1,""],set_sqel_trigger_wait:[87,1,1,""],set_sqel_waveform:[87,1,1,""],start:[87,1,1,""],stop:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[87,1,1,""],clear_waveforms:[87,1,1,""],delete_all_waveforms_from_list:[87,1,1,""],force_logicjump:[87,1,1,""],force_trigger:[87,1,1,""],get_all:[87,1,1,""],get_current_folder_name:[87,1,1,""],get_filenames:[87,1,1,""],get_folder_contents:[87,1,1,""],get_jumpmode:[87,1,1,""],get_state:[87,1,1,""],goto_root:[87,1,1,""],load_and_set_sequence:[87,1,1,""],make_directory:[87,1,1,""],resend_waveform:[87,1,1,""],return_self:[87,1,1,""],send_pattern:[87,1,1,""],send_sequence2:[87,1,1,""],send_sequence:[87,1,1,""],send_waveform:[87,1,1,""],set_current_folder_name:[87,1,1,""],set_jumpmode:[87,1,1,""],set_sequence:[87,1,1,""],set_setup_filename:[87,1,1,""],start:[87,1,1,""],stop:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A":{AWG70000A:[87,0,1,""],AWGChannel:[87,0,1,""],SRValidator:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWG70000A":{clearSequenceList:[87,1,1,""],clearWaveformList:[87,1,1,""],force_triggerA:[87,1,1,""],force_triggerB:[87,1,1,""],loadSEQXFile:[87,1,1,""],loadWFMXFile:[87,1,1,""],makeSEQXFile:[87,7,1,""],makeWFMXFile:[87,7,1,""],play:[87,1,1,""],sendSEQXFile:[87,1,1,""],sendWFMXFile:[87,1,1,""],sequenceList:[87,2,1,""],stop:[87,1,1,""],waveformList:[87,2,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWGChannel":{setSequenceTrack:[87,1,1,""],setWaveform:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.SRValidator":{validate:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70002A":{AWG70002A:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[87,0,1,""],parse_output_bool:[87,3,1,""],parse_output_string:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[87,1,1,""],display_clear:[87,1,1,""],display_normal:[87,1,1,""],exit_key:[87,1,1,""],get_idn:[87,1,1,""],reset:[87,1,1,""],write:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[87,0,1,""],Keithley_2600:[87,0,1,""],LuaSweepParameter:[87,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[87,1,1,""],reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[87,1,1,""],display_clear:[87,1,1,""],display_normal:[87,1,1,""],exit_key:[87,1,1,""],get_idn:[87,1,1,""],reset:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[87,1,1,""],prepareSweep:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[87,0,1,""],bool_to_str:[87,3,1,""],parsebool:[87,3,1,""],parseint:[87,3,1,""],parsestr:[87,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[87,1,1,""],reset:[87,1,1,""],set_defaults:[87,1,1,""],set_mode:[87,1,1,""],set_mode_volt_dc:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[87,0,1,""],TPS2012:[87,0,1,""],TPS2012Channel:[87,0,1,""],TraceNotReady:[87,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[87,1,1,""],get:[87,1,1,""],prepare_curvedata:[87,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[87,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[66,0,1,""],test_instrument:[66,3,1,""],test_instruments:[66,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[66,2,1,""],setUpClass:[66,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[88,4,0,"-"],test_suite:[88,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[88,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[88,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[88,2,1,""],test_attenuation:[88,1,1,""],test_firmware_version:[88,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[89,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[89,0,1,""],GS200Exception:[89,5,1,""],GS200_Monitor:[89,0,1,""],float_round:[89,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[89,1,1,""],on:[89,1,1,""],ramp_current:[89,1,1,""],ramp_voltage:[89,1,1,""],state:[89,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[89,1,1,""],on:[89,1,1,""],state:[89,1,1,""],update_measurement_enabled:[89,1,1,""]},"qcodes.measure":{Measure:[91,0,1,""]},"qcodes.measure.Measure":{__init__:[91,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[93,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[93,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[94,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[94,1,1,""]},"qcodes.station":{Station:[95,0,1,""]},"qcodes.station.Station":{"default":[95,2,1,""],__init__:[95,1,1,""],delegate_attr_dicts:[95,2,1,""]},"qcodes.utils":{command:[96,4,0,"-"],deferred_operations:[97,4,0,"-"],helpers:[98,4,0,"-"],metadata:[99,4,0,"-"],validators:[100,4,0,"-"]},qcodes:{ArrayParameter:[40,0,1,""],BreakIf:[41,0,1,""],ChannelList:[42,0,1,""],CombinedParameter:[43,0,1,""],Config:[44,0,1,""],DataArray:[45,0,1,""],DataSet:[46,0,1,""],DiskIO:[47,0,1,""],FormatLocation:[48,0,1,""],Formatter:[49,0,1,""],Function:[50,0,1,""],GNUPlotFormat:[51,0,1,""],IPInstrument:[52,0,1,""],Instrument:[53,0,1,""],InstrumentChannel:[54,0,1,""],Loop:[55,0,1,""],ManualParameter:[56,0,1,""],MultiParameter:[57,0,1,""],Parameter:[58,0,1,""],StandardParameter:[59,0,1,""],SweepFixedValues:[60,0,1,""],SweepValues:[61,0,1,""],Task:[62,0,1,""],VisaInstrument:[63,0,1,""],Wait:[64,0,1,""],combine:[65,3,1,""],instrument_drivers:[66,4,0,"-"],load_data:[90,3,1,""],new_data:[92,3,1,""]}},objnames:{"0":["py","class","Python class"],"1":["py","method","Python method"],"2":["py","attribute","Python attribute"],"3":["py","function","Python function"],"4":["py","module","Python module"],"5":["py","exception","Python exception"],"6":["py","classmethod","Python class method"],"7":["py","staticmethod","Python static method"]},objtypes:{"0":"py:class","1":"py:method","2":"py:attribute","3":"py:function","4":"py:module","5":"py:exception","6":"py:classmethod","7":"py:staticmethod"},terms:{"00000e":23,"001_":[9,23],"001_13":48,"001_testsweep_11":10,"002_":18,"00370000e":22,"003_":39,"005_unicorn_2017":8,"006_":[8,31],"007_":[29,31],"008_":29,"009_testsweep_15":16,"01084000e":22,"011_":[29,36,38],"011_randomnumber_69_2017":8,"012_":[29,36],"012_hp8753d_tutorial_14":38,"013_":17,"013_n_1000_setget_11":13,"014_n_1000_setget_11":13,"015_n_1000_setget_11":13,"016_n_1000_setget_11":13,"01763000e":22,"017_n_1000_setget_11":13,"018_n_1000_setget_11":13,"018_testsweep_12":11,"019_n_1000_setget_11":13,"019_testsweep_12":11,"020_n_1000_setget_11":13,"020_testsweep_12":11,"021_testsweep_12":11,"025_":16,"026_":16,"027_":16,"028_":16,"029_":16,"02s":[18,30],"030_":16,"031_":16,"032_":16,"033_":16,"034_":16,"035_":16,"036_":16,"03d":[15,32],"04s":39,"06s":11,"073_":30,"076_":30,"076_n_100_setget_16":12,"077_":30,"077_n_100_setget_16":12,"078_":30,"078_n_100_setget_16":12,"079_":30,"079_n_100_setget_16":12,"07s":[4,16],"080_":30,"080_n_100_setget_16":12,"081_n_100_setget_16":12,"082_n_100_setget_16":12,"083_":30,"083_n_100_setget_16":12,"084_":[12,30],"085_":[12,30],"086_":[12,30],"087_":[12,30],"088_":[12,30],"089_":[12,30],"08s":35,"090_":[12,30],"091_":12,"092_n_1000_setget_16":12,"093_n_1000_setget_16":12,"094_n_1000_setget_16":12,"095_n_1000_setget_16":12,"096_n_1000_setget_16":12,"097_n_1000_setget_16":12,"098_n_1000_setget_16":12,"0994e":23,"099_n_1000_setget_16":12,"09s":23,"0x111defb70":15,"0x1c10ee73a58":16,"0x278d4c91780":36,"0x7ed0668":22,"0x7f920ec0eef0":121,"0x7fd834e99ea0":0,"0x818a908":19,"1000k44":29,"100_":12,"100e":12,"100e3":[29,30,38],"100e6":71,"100k":39,"100khz":39,"100x100":11,"101_":12,"102_":12,"103_":12,"104_":12,"105_":12,"106_":12,"107_":12,"108_n_100_setget_16":12,"109_n_100_setget_16":12,"10e":[31,35,36,39],"10e3":35,"10e6":[19,33,36],"10kohm":35,"10mhz":85,"10v":[35,58],"110_n_100_setget_16":12,"111_n_100_setget_16":12,"112_n_100_setget_16":12,"113_n_100_setget_16":12,"114_n_100_setget_16":12,"115_n_100_setget_16":12,"116_":12,"117_":12,"118_":12,"119_":12,"11s":24,"1206e":23,"120_":12,"121_":12,"122_":12,"123_":12,"124_":12,"125_":12,"126_":12,"127_":12,"128_":12,"129_":12,"12e9":3,"12f":3,"12s":18,"130_":12,"131_":12,"132_":12,"133_":12,"134_":12,"135_":12,"136_":12,"137_":12,"138_":12,"139_":12,"13_testsweep":0,"13_testsweep_002":0,"140_":12,"141_":12,"142_":12,"143_":12,"144_":12,"145_":12,"146_":12,"147_":12,"148_":12,"149_":12,"14s":13,"150_":12,"151_":12,"152_":12,"153_":12,"154_":12,"155_":12,"156_":12,"157_":12,"158_":12,"159_":12,"15_11":8,"15_hammer_tim":8,"15_rainbow_test":48,"15g":51,"15s":[12,30],"160_":12,"161_":12,"162_":12,"163_":12,"164_":12,"165_":12,"166_":12,"167_":12,"168_":12,"169_":12,"16bit":39,"16s":[17,30],"170_":12,"171_":12,"172_":12,"173_":12,"174_":12,"175_":12,"176_":12,"177_":12,"178_":12,"179_":12,"180_":12,"181_":12,"182_":12,"183_":12,"184_":12,"185_":12,"186_":12,"187_":12,"188_":12,"189_":12,"190_":12,"191_":12,"192_":12,"193_":12,"194_":12,"195_":12,"196_":12,"197_n_1000_setget_16":12,"198_n_1000_setget_16":12,"199_n_1000_setget_16":12,"19s":26,"1ct":31,"1e3":[15,24,36],"1e6":[30,36],"1e9":[15,29,33,38],"1ma":35,"1ms":117,"1sp4t":111,"1vpp":39,"20000000e":32,"200_n_1000_setget_16":12,"200e3":30,"200uw":82,"2012b":[31,87],"201_n_1000_setget_16":12,"202_n_1000_setget_16":12,"203_n_1000_setget_16":12,"204_n_1000_setget_16":12,"205_":12,"206_":12,"207_":12,"208_":12,"209_":12,"20e":36,"20ma":67,"20mw":82,"20uw":82,"210_":12,"211_":12,"212_":12,"23160746e":36,"23s":[29,38],"24196735e":36,"250khz":85,"25e":[28,31,33],"25gb":19,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"2614b":[3,12,23,87],"2635b":3,"2636b":3,"28539f77dfd3":2,"2d_test":10,"2e3":24,"2min":30,"2mw":82,"2uw":82,"30_alazartest":19,"32s":14,"33500b":[71,107,117],"33522b":24,"33xxx":71,"34400a":117,"34411a":117,"34460a":71,"34461a":71,"34465a":[16,71,107,109,117],"34470a":71,"352161306002045e":25,"36s":30,"39759855e":36,"3x2":7,"40s":15,"42637000e":22,"44s":31,"44xx":106,"4port":30,"4spdt":[26,111],"50e":[24,31],"52608e":27,"54972e":23,"54s":33,"56s":30,"57s":37,"5e9":30,"60s":37,"62s":37,"69014000e":22,"6955e":23,"6a5acd":32,"6e6":30,"8133a":[69,107],"83650a":107,"844e846b99a2":16,"8753d":[38,69],"91t928108":35,"93s":11,"94851000e":22,"95535000e":22,"96216000e":22,"98941000e":22,"99618000e":22,"9e3":30,"\u03bca":[27,28],"abstract":124,"boolean":[75,87,109,121],"break":[3,4,10,41,86,87,112,113],"byte":[68,75,86,87],"case":[2,3,7,19,32,36,50,55,58,66,68,87,94,113,124,125],"catch":3,"char":74,"class":[1,4,7,20,22,36,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,91,93,94,95,96,97,98,99,100,111,113,116,117,125],"default":[1,2,3,4,6,7,10,27,28,30,40,44,45,46,48,50,51,52,55,57,58,63,66,68,69,70,71,73,74,75,81,82,84,86,87,90,92,93,94,95,104,105,110,113,116,123],"enum":[2,3,4,20,22,36,58,87,116,121],"export":82,"final":[10,16,19,23,32,33,36,38,49,50,58,120,124],"float":[3,4,13,46,50,58,60,66,69,70,71,75,78,82,83,84,86,87,89,92,94,109],"function":[0,1,3,4,7,9,10,14,15,16,19,22,23,31,32,37,38,39,41,43,46,53,54,56,58,60,62,65,67,68,71,75,78,79,82,83,84,85,86,87,88,97,98,100,109,110,113,116,117,119,124,125],"goto":[32,87],"import":[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,87,109,113,117,121,124,125],"int":[1,3,7,13,14,15,16,32,33,36,40,45,50,52,57,58,60,66,69,70,71,73,74,75,78,82,84,86,87,116],"long":[3,4,29,30,40,57,58,87,113],"new":[1,2,3,4,7,10,19,23,36,45,48,49,50,51,73,82,87,90,92,94,112,119,120,121,124,125],"null":[67,121],"public":[86,101,113],"return":[0,1,3,6,7,10,13,14,15,16,20,23,27,28,30,32,36,37,38,40,41,42,48,50,57,58,60,66,67,68,69,70,71,73,74,75,78,81,82,83,84,85,86,87,89,90,91,92,116,124,125],"short":[45,124],"static":[52,53,63,78,79,86,87],"super":[3,4,7,71,73,82,87,125],"switch":[11,30,33,36,73,82,87,111,117,121,124],"true":[2,3,9,15,16,20,21,22,27,28,29,30,33,35,36,38,39,40,42,45,51,52,57,58,63,70,71,74,75,80,84,85,86,87,93,95,121,124],"try":[0,2,3,10,13,15,16,20,24,27,30,35,37,58,113,124],"var":51,"while":[1,10,15,20,22,31,33,35,67,87,117,124],AND:87,ATS:[19,66],Adding:113,And:[3,7,29,30,36,121,125],Are:[92,124],Axes:1,BUS:[13,24],BUT:113,But:[0,2,3,4,9,30,36,64,116],Doing:30,For:[1,2,3,4,6,7,9,10,24,29,30,31,32,36,37,40,48,51,57,58,63,67,68,70,75,78,84,86,87,93,113,118,120,121,124,125],Has:[3,71],IPS:[82,117],Its:[121,124],NOT:[3,33,36,48,66,78,113],Not:[2,3,29,38,40,57,67,95,113,117,121],ONE:[18,86,113],One:[1,2,36,78,119,124,125],POS:[16,24,29,75],PRs:113,SRS:107,THE:[29,36,117],THERE:117,TPS:[31,107,108],That:[3,8,60,61,87,117,125],The:[0,1,2,3,6,11,12,13,16,17,19,21,23,24,26,27,28,29,30,31,32,33,35,36,37,38,39,40,42,43,45,48,50,51,52,55,57,58,60,62,63,65,66,67,68,70,71,73,74,75,78,82,84,85,86,87,89,93,94,111,113,115,117,120,121,124,125],Then:[4,17,30,32,33,36,39,113,120,125],There:[1,3,4,10,21,23,31,32,71,111,113,116,120,121],These:[3,27,28,36,51,68,85,87,117,124],Tis:71,Use:[15,40,46,57,58,68,87,113,119,121],Used:83,Useful:[56,58],Uses:48,Using:[117,123],Will:[45,57,121],With:[30,37,120,124],_10:[29,30],_11:[30,36],_13:[17,39],_14:[23,38],_15:[16,18],_16:[12,31],_17:9,_2017:8,__call__:[16,48],__class__:[0,9,10,19],__del__:68,__doc__:[36,40,50,57,58],__enter__:[20,22],__exit__:[20,22],__file__:4,__getattr__:[42,74],__init__:[3,4,7,20,22,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,70,91,93,94,95,125],__iter__:[60,61],__main__:15,__name__:36,__next__:61,__repr__:70,_alazar:68,_assigned_fg:16,_ats_dll:3,_attenu:66,_bdaqctrl:67,_call:16,_check_for_error:20,_check_respons:20,_coil_const:37,_count:7,_current_r:37,_current_ramp_limit:37,_display_settext:3,_error_queu:20,_expect_error:20,_forwardref:[40,57,58],_get:125,_get_cmd:82,_get_temp_channel:34,_handl:3,_indic:7,_instrument:[3,16,20],_instrument_list:125,_irang:3,_measured_param:3,_mode:87,_parent:3,_poll:20,_ramp_stat:70,_ramp_tim:70,_randomnumber_:8,_raw:3,_read_cmd:82,_recv:82,_rem_file_path:15,_response_queu:20,_return_handl:16,_run_loop:16,_run_wrapp:16,_save_v:[3,40,57],_scale_param:7,_send:82,_set:125,_set_async:125,_set_both:125,_setget:[12,13],_step:86,_syncoutput:16,_t0:70,_trace:30,_val:7,_vrang:3,_win32:67,_write_cmd:82,_write_respons:74,a118e754f9e:20,a18:[26,111],a_sweep:9,abil:105,abl:[37,71,120,124,125],abort:[13,85],abort_measur:13,about:[3,4,9,19,20,28,29,30,35,36,87,113,116,118,119,121,125],abov:[1,3,4,30,32,67,87,124],abridg:3,abs:[37,41],absolut:[36,47,87,113],accept:[3,46,47,49,50,51,62,67,71,73,81,82,86,87,124],acces:[10,32],access:[1,36,42,67,80,86],accommod:87,accompani:113,accord:[87,120],accordingli:16,account:[58,66,70,113],accur:[40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,91,93,94,95],achiev:32,acknowledg:52,acquir:[4,12,16,17,18,19,23,29,30,36,39,68,78,86,117,124],acquire_point:39,acquire_sample_r:39,acquisiion:68,acquisit:[13,19,30,36,68,78,85,86,113,117,124],acquisition_conrol:68,acquisition_control:[19,68],acquisition_controller_acquisit:19,acquisition_mod:86,acquisition_sample_r:29,acquisitioncontrol:68,acquisiton:[19,68],acquist:68,acqusit:29,across:[27,28,35,124],act:[45,58,66],action:[1,6,7,9,16,20,34,41,45,55,78,87,91,95,101,116,117,119,124,125],action_indic:[9,16,45],activ:[1,29,82,84,116,120],activeloop:[9,55,116],actual:[1,3,11,35,37,66,68,75,84,87,113,124],acut:0,adapt:[60,61],adaptivesweep:[61,116],adawpt:61,adc:75,add:[1,2,3,4,5,10,13,16,17,18,23,30,31,36,38,46,48,52,53,63,71,74,75,78,79,84,85,86,87,92,93,94,95,105,106,109,113,116,120,121],add_arrai:[45,46,92],add_channel:[30,73,84],add_compon:[5,15,23,95],add_funct:[53,54,113],add_paramet:[3,4,10,53,54,113,124,125],add_post_trigger_act:78,add_signal_to_sweep:[36,78],add_submodul:[3,53],add_subplot:[15,32],added:[1,9,30,37,40,45,46,78,87,92,93,94,95,111,113,124],adding:[1,36,117],addit:[1,3,32,52,53,58,63,80,81,82,86,119,121,124],addition:[1,36,78],address:[3,4,25,28,34,37,39,42,52,63,69,70,71,72,73,74,75,79,80,82,83,84,86,87,88,89,113,124],adjust:[30,37,38,39,75,124],adjust_parameter_valid:75,adopt:119,adriaan:85,advanc:58,advantag:1,advantech:[66,107],advantech_pcie_1751:67,aeroflex:[3,4,88],affect:[36,47,78,113],after:[1,9,10,16,51,55,58,62,68,78,82,87,105,113,121,124],again:[19,35,87,120,124],against:116,aggeg:0,aggreag:0,aggreg:[43,65,117,125],agi:[11,20,22],agil:[22,24,66,71,107,113,117],agilent1:[20,22],agilent2:[20,22],agilent_34400a:[11,20,22,66],agilent_34401a:79,agilent_34410a:79,agilent_34411a:79,agilent_e8527d:[79,113],agilent_hp33210a:79,agilent_volt:11,agreement:23,agument:41,ahead:[36,60,61],aid:124,aim:1,airbnb:113,aka:113,akin:124,ala:119,alazar1:19,alazar:[3,19,68,107],alazar_driv:68,alazar_nam:[19,68],alazar_serv:19,alazargetboardbysystemid:3,alazarparamet:[3,19,68],alazarstartcaptur:68,alazartech:[3,19,66],alazartech_at:[3,19,68],alazartech_ats9870:[3,19,68],alazartest:19,alexcjohnson:113,alia:[56,70,73,79,84,88],all:[1,2,3,4,7,8,9,10,12,19,21,23,26,27,28,29,30,32,36,39,40,42,43,45,48,49,50,51,53,54,57,58,60,63,65,66,67,68,70,71,73,74,75,78,79,82,83,84,85,86,87,93,94,95,110,113,116,117,119,120,121,124,125],all_channels_off:87,all_channels_on:87,alloc:[19,68],alloc_buff:[19,68],allocated_buff:[19,68],allow:[1,3,4,9,27,28,33,37,38,39,42,52,58,60,61,63,75,78,82,84,86,87,92,113,124],almost:[86,124],alon:[37,45],along:[1,14,37,40,57,58,85,93,94,113,116,124],alongsid:[7,9],alpha:[15,32,75],alreadi:[40,45,49,57],also:[1,2,3,4,8,9,10,19,30,31,32,36,37,41,45,47,49,51,58,60,64,67,68,70,71,73,81,82,86,87,92,109,111,113,116,119,120,121,124],altern:32,although:[3,32,69,78,113,120],alwai:[1,2,3,4,6,10,17,31,33,36,51,57,70,74,78,86,87,113,124],always_nest:51,amen:113,american:[37,80],american_magnet:[37,66],ami430:[66,107,110,117],ami430_2d:80,ami430_3d:[37,80],ami430except:80,ami430switchheat:80,ammet:124,among:[48,125],amount:111,amp:[3,23,37,81,86],amper:89,amplifi:[3,10,81,86,111],amplitud:[7,17,27,28,29,33,36,68,87,125],anaconda3:[15,16,20,120],anaconda:[119,120],analog:74,analog_amplitude_n:87,analog_direct_output_n:87,analog_filter_n:87,analog_high_n:87,analog_low_n:87,analog_method_n:87,analog_offset_n:87,analys:84,analysi:[113,124],analyz:[38,69,111,119],angl:37,angle_deg:79,angle_rad:79,ani:[0,2,3,4,7,10,19,20,22,25,27,28,30,32,37,40,43,45,47,48,49,50,51,52,55,57,58,60,61,62,63,65,68,70,73,78,82,86,87,91,95,113,116,119,120,124,125],anoth:[7,10,11,32,48,60,89,119,124],answer:[70,75],anymor:4,anyth:[3,9,10,13,21,29,87,116],anywai:7,ap_tim:13,apertur:[11,13],api:[1,4,101,103,111,119,121,124],app:39,apparatu:116,appear:[33,71,87],append:[14,15,20,32,37,45,60,125],appli:[21,27,28,29,37,46,50,58,67,71,73,81,86,87],applic:[3,120],approach:117,appropri:[1,68,124],approv:113,aqcuisit:29,aquir:38,arang:[3,4,15],arbitrari:[50,51,57,79,83,87,116,119],architectur:[119,125],arctan:32,arg:[1,2,3,15,16,20,40,50,57,58,60,62,71,74,80,82,93,94,125],arg_count:16,arg_pars:50,argument:[0,1,3,6,10,16,41,45,46,49,50,57,62,78,80,116],arithmet:29,arm:78,around:[30,32,45,85,113,124],arrai:[0,1,7,8,9,10,11,12,13,14,15,16,17,18,19,22,23,29,30,31,32,33,36,38,39,40,45,46,49,57,68,78,83,84,86,87,91,92,94,105,116,117,124,125],array_count:7,array_id:[0,1,7,8,9,10,11,12,13,16,17,18,19,23,29,30,31,36,38,39,45,49,125],arraycount:7,arraygett:6,arraymeasur:71,arrayparamet:[3,12,69,71,84,86,87,101,117],arriv:124,asc:29,ask:[3,13,14,20,29,34,36,70,73,75,82,86,87,113,124],ask_modul:86,ask_raw:[73,87],asopc:68,asopc_typ:[19,68],asrl10:25,asrl1:31,asrl2:63,asrl4:[11,82],asrl6:[16,27,28],asrl7:13,asrl:75,asrln:70,assert:[4,35,37,86,87],assertalmostequ:71,assign:[16,27,28,33,74,87,113],associ:124,assum:[3,30,32,38,61,74,87,120,124],assumpt:[36,87],async:123,asynchron:10,atob:82,ats9870:[3,19,66],ats_acquisition_control:[19,66],ats_contr:19,ats_inst:19,ats_onwork:117,atsapi:[3,68],atsdriv:19,attach:[1,3,42,46,53,54,55,66,71,74,84,86,87],attempt:70,attent:[113,117],attenu:[3,4,27,28,88],attn:[3,4],attribut:[1,3,36,40,44,45,46,48,49,52,53,54,56,57,58,59,63,78,91,93,94,95,113,124],author:113,auto:[35,36,48,84],auto_rang:35,autom:[4,119],automat:[1,3,7,8,30,36,48,67,74,84,89,106,110,113,119,121],autorang:16,autoreload:2,autoscal:30,aux_in1:17,aux_in2:17,aux_in3:17,aux_in4:17,aux_out1:17,aux_out2:17,aux_out3:17,aux_out4:17,auxiliari:113,auxoutputchannel:78,avail:[1,3,4,24,29,32,33,36,38,66,67,71,74,75,79,82,84,87,101,103,119,124],avanc:123,averag:[30,36,38,68,85,87,117],averageandraw:6,avg:[30,85],avoid:[13,29,37,39,111],awar:113,awg1:[15,32],awg5014:[15,66,106,108,117],awg5014c:117,awg5200:[66,110],awg520:66,awg70000a:[66,111],awg70001a:87,awg70002a:[66,117],awg:[4,10,14,15,71,87,117],awg_amplitud:33,awg_ch1:33,awg_ch2:33,awg_fil:[15,87],awg_file_format_channel:87,awg_file_format_head:87,awgchannel:87,awgfil:32,awgfilenam:15,awgfilepars:[32,66],awgfilepath:87,awgseq:15,ax1:[15,32],ax2:[15,32],ax3:32,ax4:32,axes:[1,25,30,82],axes_api:1,axi:[1,30,36,37,40,45,51,57,58,78,124],axs:36,b020397:[14,33],b051039:15,b200:29,b20:29,b800:29,babi:125,back:[4,10,26,30,32,35,37,61,70,73,82,84,87,113,119,121,124,125],backend:[1,63,111],background:[20,22,124],background_color:93,background_funct:46,backslash:113,backward:[47,75],bad:2,bad_valu:4,bandwidth:[19,29,30,36,78,84],bar:[113,121],bare:[52,60],base0:125,base1:125,base2:125,base:[1,7,12,16,29,37,42,45,46,47,48,49,53,54,61,63,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,113,117,120,121,124,125],base_loc:[2,9,47],base_spdt:66,baseplot:93,baseserv:125,bash:120,basi:[33,57],basic:[3,4,9,15,31,51,68,75,119],basicconfig:[15,16,38],baud:[70,86],bdaqctrl:67,bear:113,becaus:[1,2,3,31,35,45,46,49,67,68,71,113,124,125],becom:[19,32,82,116,124],been:[3,7,31,32,37,39,58,71,78,85,86,87,124,125],befor:[2,3,4,9,10,11,14,16,17,29,30,31,36,37,38,39,48,52,55,58,62,66,67,68,69,71,78,79,82,86,87,111,113,120,121,124],beforehand:66,begin_tim:70,behav:113,behavior:[19,20,22,25,113,124],behaviour:[23,58,78],behind:36,being:[2,9,10,14,19,32,33,35,45,85,87],belong:[3,40,57,58,84],below:[1,2,3,4,10,12,32,113,116,117],ben:37,benchmark:[11,110],benchmark_seqx:14,benchmarkingqcod:14,best:113,beta:[31,68,71,79,82,84,85,86,87],better:[3,13,29,33,50,110,113,124],between:[1,3,24,35,46,49,52,58,60,78,87,89,92,93,94],beyond:87,bid:67,bidirect:58,binari:[12,14,33,67,87],binascii:31,bind:36,biodaq:67,bip:75,bit:[13,14,29,33,67,68,84,86,87],bits_per_sampl:[19,68],black:93,blame:[27,28,87],blank:[26,51,113],blind:10,block:[10,20,51,75,80,125],board:[3,19,27,28,68],board_id:[3,19,68],board_kind:[19,68],bodi:113,boil:3,boilerpl:[3,50],bold:116,bonu:117,bool:[3,40,42,45,52,57,58,70,71,74,75,80,81,84,86,87,89,92,95],bool_to_str:87,bootstrap:14,bore:39,born:113,bot:[108,109],both:[1,3,7,11,30,33,36,47,71,86,87,113,116,119,121,124,125],bottom:[75,93],bound:[3,10,84,124],box:117,bracket:113,branch:113,breakif:[10,101,124],briefli:33,brittl:124,broadbean:[14,33],broader:119,broadli:3,broken:[2,58],brows:[120,125],browser:120,buf:68,buffer:[18,19,67,68,86,108,117],buffer_acq_mod:17,buffer_list:3,buffer_npt:17,buffer_paus:17,buffer_reset:17,buffer_sr:17,buffer_start:17,buffer_timeout:[19,68],buffer_trig_mod:17,buffers_per_acquisit:[19,68],bug:[39,114],build:[32,33,36,78,87,106,107,113,117,124],build_sweep:[36,78],built:[1,7,36,86],builtin:50,bunch:36,bundl:87,burden:124,burst:117,busi:67,button:[87,113,120],bwlimit1:19,bwlimit2:19,bwlimit:[19,68],bwmode:36,byref:16,byte_to_bit:86,byte_to_value_dict:[3,68],bytecod:4,c_amp_in:[3,81],c_set:7,cabl:[87,124],calc_set_point:87,calcul:[37,78,84,116,124],calibr:[66,68],california:4,call:[2,3,7,16,20,23,29,30,31,32,37,38,40,43,45,46,48,49,50,52,57,58,62,63,65,67,68,70,73,74,75,78,82,85,86,87,89,92,113,120,124],call_by_str:16,call_by_str_parsed_out:16,call_cmd:50,callabl:[10,20,41,43,46,48,55,58,62,64,65,78,92,108,124],callsig:32,came:68,camp1:22,camp:22,can:[0,1,2,3,4,7,8,13,14,17,23,24,26,27,28,29,30,32,33,35,36,37,39,40,41,44,45,46,48,50,51,55,57,58,60,61,64,67,68,69,70,71,74,75,78,82,83,84,87,91,92,93,94,95,111,113,116,117,118,119,120,121,124,125],cancel:[27,87],cannot:[30,37,40,57,67,86,87,124],canva:1,capabl:[21,116,119,124],capit:113,captur:[10,30,68,86,117],capture_config:[18,86],capture_data:86,capture_sampl:[18,86],card:[3,19,67,68,71,107],care:[2,3,33,120],careful:75,cartesian:[37,124],cartesian_measur:37,cast:[13,32,33,50],caus:[27,28,86],caution:[87,117],caveat:124,cdirectori:15,cdll:3,cell:[29,32],center:[30,85],certain:[10,36,37,68,80,82],cesr:86,cffi:67,ch01:28,ch01_i:27,ch01_irang:27,ch01_slope:[16,27],ch01_sync:16,ch01_sync_delai:16,ch01_sync_dur:16,ch01_v:[13,16,27],ch01_vrang:27,ch02:[27,28],ch02_slope:27,ch02_sync:27,ch02_v:[16,27],ch0_offset:21,ch0_voltag:21,ch1:[9,10,14,15,29,33,87],ch1_amp:[33,87],ch1_amplitud:24,ch1_amplitude_unit:24,ch1_burst_mod:24,ch1_burst_ncycl:24,ch1_burst_phas:24,ch1_burst_polar:24,ch1_burst_stat:24,ch1_curvedata:31,ch1_databuff:17,ch1_displai:17,ch1_frequenc:24,ch1_function_typ:24,ch1_offset:24,ch1_output:24,ch1_posit:31,ch1_ramp_symmetri:24,ch1_ratio:17,ch1_scale:31,ch1_state:31,ch1_trigger_count:24,ch1_trigger_delai:24,ch1_trigger_slop:24,ch1_trigger_sourc:24,ch1_trigger_tim:24,ch1_voltag:21,ch2:[9,10,31,33,87],ch2_amp:[33,87],ch2_curvedata:31,ch2_databuff:17,ch2_displai:17,ch2_offset:[15,32],ch2_posit:31,ch2_ratio:17,ch2_scale:31,ch2_state:31,ch3_state:32,ch41_v:11,ch42_v:11,ch4:39,ch_name:3,cha0:66,chain:124,chan0:66,chan1:[36,41],chan1_list:15,chan2:36,chan:74,chan_alia:34,chan_go:16,chan_list:42,chan_reset_1:16,chan_reset_2:16,chan_reset_3:16,chan_typ:42,chanc:68,chandata:36,chang:[1,3,4,10,19,21,26,27,28,31,36,40,44,47,57,58,75,78,86,87,112,113,117,119,121,124],change_autozero:87,change_displai:87,change_fold:87,channel4:39,channel:[10,11,14,17,19,20,21,22,23,29,31,32,33,39,42,53,54,63,67,68,70,71,72,73,74,75,78,80,82,84,86,87,89,108,109,116,117,118,124],channel_a:68,channel_cfg:[15,87],channel_class:[73,84],channel_lett:73,channel_nam:84,channel_rang:[19,68],channel_range1:19,channel_range2:19,channel_select:[19,68],channel_skew_n:87,channel_state_n:87,channelbuff:86,channelis:[23,74,87,111],channelist:42,channellist:[74,101],channum:[71,74,78,84],charact:[40,51,52,57,58,63,82,84,113],characterist:124,chassi:71,chatoor:113,check:[3,4,35,37,64,67,80,82,84,86,89,93,94,113,118,122,124,125],check_en:80,check_error:16,check_for_error:85,check_module_error:86,check_schema:2,check_stat:80,checklist:113,chime:113,chnum:32,choic:[30,68],choos:[32,75,78,87,120,124],chore:113,chosen:[35,78],chx:10,circuit:[26,38,73,111],clariti:3,classic:13,classmethod:[66,68,71,79,85],clean:[29,83,87,105,113],clean_str:83,cleanup:[49,110],clear:[15,16,17,30,31,32,33,63,71,86,87],clear_buff:68,clear_channel:[30,84],clear_error:79,clear_message_queu:[31,32,87],clear_waveform:87,clearli:113,clearqueu:15,clearsequencelist:[14,33,87],clearwaveformlist:[14,33,87],clever:114,cli:119,click:[1,26,120],clim:1,clip:124,clock:[3,19,68,87],clock_edg:[19,68],clock_edge_ris:19,clock_external_frequ:33,clock_freq:15,clock_frequ:71,clock_sourc:[3,19,33,68,87],clone:[113,120],close:[1,4,11,14,21,23,27,28,30,31,32,33,34,36,37,67,78,82,110,113],close_ev:1,close_fil:49,closedevic:85,cls:2,cmd:[16,69,70,73,74,82,86,87],cmd_str:16,coars:70,code:[1,3,4,50,58,69,70,79,86,95,114,119,124],codebas:[4,119],coil:37,coil_const:37,col:84,cold:82,collect:[7,9,60,68,116,119,124],colloqui:[3,87],colon:[67,71,73,81,82,86,87,113],color:[1,15,32,36,93],colorbar:[1,45],colormap:121,column:[1,51,124],com2:63,com4:18,com:[26,79,86,88,113,115,117,120],combin:[43,46,51,58,85,90,92,101,109,116,117,123,124],combined_set:0,combinedparamet:[0,101],come:[14,51,113,120,124],comma:[67,71,73,81,82,86,87],command:[1,3,4,12,13,16,19,31,32,36,50,58,67,70,71,73,74,75,79,82,84,86,87,101,113,116,119,120,121,124],comment:[3,51,67,113],commit:[68,118,119,120],common:[3,67,71,73,81,82,84,86,87,116,124],commonli:[71,79,84,87],commun:[3,37,52,63,68,70,73,75,82,86,87,116,118,124],communc:37,compani:3,compar:[11,29,30,113],compat:[55,62,74,75,86,87,119,124],compatibil:87,compens:87,compil:33,complain:[10,124],complet:[1,14,16,29,32,45,46,67,87,124,125],completed_acquisit:29,complex:[30,58,113,124],compliant:113,complic:[50,124],compon:[9,57,68,95,119,124],compos:[33,87],composit:[16,124],comprehens:[113,117],comput:[1,23,78,82,113,124],con:107,concaten:[14,33,74,113],concept:125,conclus:13,concret:4,concurr:124,conda:120,condit:[3,10,41,58,67,82,87,124],config:[3,19,68,87,101,109,113,117,123],config_file_nam:44,configur:[4,19,36,44,67,68,85,87,104,117,119,123,124],conflict:[67,124],confusingli:125,congratul:117,connect:[3,4,11,12,13,14,15,16,17,18,19,20,23,24,26,27,28,29,30,31,32,33,35,36,37,38,39,63,68,70,71,73,75,78,82,86,87,95,116,124],connect_messag:[3,4,70,71,74],consequ:124,consid:[3,10,23,29,87,113],consist:[10,27,28,30,75,85,87,91,113,124],consol:4,consolid:119,constant:[6,10,36,37,75,78,85],constitut:4,constraint:14,construct:[3,6,30,41,45,52,58,125],constructor:[3,40,45,57,75,93,94],consult:[86,124],cont:[84,86,117],cont_meas_off:30,cont_meas_on:30,conta:78,contact:110,contain:[3,4,6,9,10,23,30,32,33,42,45,46,48,51,67,68,70,71,73,74,78,79,81,82,84,86,87,95,113,116,120,121,124,125],content:[45,117],context:[73,82,87,124],contian:68,contin:[69,87],contini:30,continu:[4,32,36,55,87,95,113,117],contrast:113,contribut:[3,39,114,118],contributor:113,control:[2,3,8,9,19,20,21,22,23,25,27,28,30,32,36,68,70,72,75,80,82,84,87,107,117,119,121,124,125],controlthermometri:82,conveni:[86,87,95,124],convent:[3,4],convers:[87,113],convert:[3,4,37,45,47,68,74,82,86,87,124],coordin:37,copi:[2,4,20,45,60,75,78,124],core:[0,1,15,16,17,18,19,20,22,25,29,30,31,34,36,38,113,117,118,119,121],corner:[19,20,22,25],correct:[1,3,21,29,32,36,37,49,86,109],correctli:[4,35,37],correspond:[1,11,17,21,23,29,32,33,51,68,70,75,78,84,86,87],cosmet:[105,106],cost:75,could:[16,32,113,124],count:[7,16,50,67,74,87,125],counter:[8,10,48,67],coupl:[3,19,29,36,68,84,87],coupling1:19,coupling2:19,cours:[9,29,113,124],cov:113,cover:[33,113,125],coverag:[113,119],coveragerc:113,cpld:68,cpld_version:[19,68],cpu:30,crash:[68,119],creat:[1,5,7,8,10,19,20,22,23,38,42,45,49,55,57,58,60,66,68,70,71,75,78,79,82,87,88,91,92,116,117,120,121,124,125],create_and_goto_dir:87,creation:[3,10,125],critic:[2,121],cryo:107,cryogen:111,ctwrapper:16,ctype:3,cumbersom:74,curernt:125,curr:[3,12,22,23,35,81,86],current:[2,3,8,9,12,22,23,27,28,30,31,32,35,36,37,44,46,47,48,67,71,74,78,80,81,82,86,87,89,90,92,95,113,121,124,125],current_config:[2,44],current_config_path:44,current_directori:33,current_field:37,current_r:37,current_ramp_limit:[37,80],current_rang:35,current_schema:[2,44],current_target:37,current_to_field:37,current_valu:16,currentparamet:[3,22,81],curv:[12,71,87,117],custom:[7,8,44,47,69,117],customawgfil:87,customis:74,cutoff_hi:86,cutoff_lo:86,cwd:44,cwd_file_nam:[2,44],cycl:[3,19,20,22,23,24,71,124],cylindirc:37,cylindr:37,cylindrical_measur:37,d5a:66,d5a_modul:75,d5mux:75,d_bdaq_c_interfac:67,dac1:6,dac2:6,dac3:6,dac:[6,9,10,66,70,75,109],dac_ch1:[9,10],dac_ch1_set:[9,10],dac_ch2:[9,10],dac_channel_class:70,dac_commands_v_13:74,dac_delai:75,dac_idn:[9,10],dac_slot_class:70,dac_step:75,dac_verbose_channel:10,dacchannel:70,dacexcept:70,dacn:75,dacnam:75,dacread:70,dacslot:70,dacx:75,dai:113,daili:120,dancer:113,daqnavi:67,daqnaviexcept:67,daqnaviwarn:67,dark:93,dat:51,data1:30,data2:[5,8,31],data:[0,1,2,3,6,7,8,9,11,12,13,14,16,17,18,19,20,22,23,29,30,31,33,36,38,45,46,47,48,49,51,55,57,58,67,68,71,74,75,78,84,86,87,90,92,93,94,101,109,113,116,117,119,124,125],data_arrai:9,data_avgd:29,data_buff:16,data_hd:29,data_l:5,data_ld:29,data_set:[2,5,9,10,16,49,87,104],data_v:58,dataarrai:[0,1,7,9,22,40,46,49,57,92,101,116,124],dataflow:68,dataformat:[29,117],dataformatt:113,datamanag:[116,124],datamin:124,datamod:[0,7,11,19,22,36,125],datapoint:[39,87],datasav:117,dataserv:[46,116,124],dataset:[0,1,2,5,6,7,8,9,10,11,12,13,16,17,18,19,22,23,29,30,31,36,38,39,45,48,49,51,57,71,87,90,91,92,101,111,116,123,125],date:[8,10,48,68],datetim:48,daunt:113,dbm:[4,30,38,84],dc_channel_numb:87,dc_output_level_n:87,dcl:29,dclimit:29,ddl:67,deacadac:70,deadlin:20,dealt:124,debug:[2,5,15,31,36,38,39,121,124,125],debugmod:16,deca:21,decadac:[66,108,110,111,117],decadec:70,decid:[2,33,93,120,124,125],decim:[19,68],declar:67,decor:4,decoupl:113,decreas:11,deem:78,deeper:20,def:[0,1,2,3,4,7,10,13,14,15,16,18,20,22,37,82,125],default_figs:1,default_file_nam:44,default_fmt:121,default_formatt:[46,90,92],default_io:[46,90,92],default_measur:9,default_parameter_nam:110,default_server_nam:85,defaultcolormap:121,defaulttestload:5,defer:41,deferred_oper:101,defin:[0,2,3,30,32,36,40,50,57,71,73,75,81,82,86,87,113,116,117,121,124,125],definit:[4,29,36,50,84,124],defit:29,deg:[17,36],deg_to_rad:79,degre:[24,33,36,58],del:3,delai:[0,1,9,10,16,18,19,28,35,36,37,55,58,59,61,64,75,84,89,124,125],delay_in_points_n:87,delay_in_time_n:87,deleg:45,delegate_attr_dict:95,delet:[3,87,113],delete_all_waveforms_from_list:[15,32,87],deliber:35,demand:124,demo:117,demod1:[36,78],demod1_harmon:36,demod1_i:36,demod1_ord:36,demod1_phaseshift:36,demod1_phi:36,demod1_r:36,demod1_sampl:36,demod1_sampler:36,demod1_signalin:36,demod1_sinc:36,demod1_stream:36,demod1_timeconst:36,demod1_trigg:36,demod1_x:36,demod:36,demodul:[78,117],demodulation_acquisitioncontrol:[19,68],demodulation_frequ:[19,68],demonstr:7,denot:[40,51,57,92],depend:[1,3,19,27,28,36,51,84,87,103,110,113,117,120,124],dependend:120,deploi:[12,87],deprec:[15,18,45,87,106],deprecationwarn:[15,87],depth:39,deriv:116,descipt:44,describ:[2,3,7,10,33,40,55,57,78,87,113,121,124],descript:[2,45,87,113,121,124],descriptor:75,design:[79,87,88,124],desir:[8,10,29,37,86],desktop:[16,120],destruct:124,detail:[1,86,113,124],detect:[84,109],determin:[49,94],dev2235:36,dev:[2,12,13,26],develop:[4,71,78,114,118,119,120],deviat:14,devic:[4,26,63,67,71,73,75,78,82,84,87,107,124],device_clear:63,device_descript:67,device_id:78,dft:[19,68],dg4000:66,dg4062:83,dg4102:83,dg4162:83,dg4202:83,diagon:116,dialogu:4,dict:[8,40,44,45,48,49,52,53,54,57,58,63,67,70,71,73,74,81,82,86,87,89,92,108,124],dictionari:[3,32,68,86,87,95,121,124],did:[3,11],didact:10,diff:87,differ:[1,3,7,8,23,30,40,46,57,74,78,84,87,113,116,119,124,125],differenti:45,difficult:113,difficulti:113,dig:[36,71,109],digit:[3,10,67,71,74,87,107],digital_amplitude_n:87,digital_high_n:87,digital_low_n:87,digital_method_n:87,digital_offset_n:87,dilut:82,dim:38,dimens:[7,40,45,51,57,124],dimension:[1,45,46,82],dio:67,dir:[2,87],direct:[33,40,56,57,71,85,113],directli:[1,3,6,7,27,28,32,36,37,46,55,82,87,117,124],directori:[2,3,46,47,87,90,92,113,121],disabl:[19,33,42,46,80],disadvantag:124,disappear:124,disc:87,disconnect:124,discov:66,discret:124,discuss:[113,118],disk:[9,46,47,49,87,92,124],diskio:[9,46,48,90,92,101,116],displai:[0,1,2,3,11,13,15,16,17,18,19,20,22,25,29,30,31,34,36,38,39,84,87],display_clear:[11,13,16,79,87],display_format:38,display_grid:[30,84],display_norm:87,display_refer:38,display_scal:38,display_settext:[3,23],display_sij_split:30,display_single_window:30,display_text:[11,13],dissip:124,distinguish:15,distribut:119,div:[29,31],dived:66,divid:[58,66,107,108],divider_r:87,divis:[31,66],division_valu:66,divsion:66,dll:[26,67,68,85,117,124],dll_path:[3,68,85],dma:67,dmm:[9,10,11,13,16,79,109,110],dmm_data_buff:16,dmm_idn:9,dmm_v1:9,dmm_v2:9,dmm_volt:13,dmm_voltag:10,do_acquisit:68,do_get_frequ:84,do_get_pow:84,do_get_pulse_delai:84,do_get_statu:84,do_get_status_of_alc:84,do_get_status_of_modul:84,do_set_frequ:84,do_set_pow:84,do_set_pulse_delai:84,do_set_statu:84,do_set_status_of_alc:84,do_set_status_of_modul:84,doc:[2,9,75,113,117,120],docstr:[3,7,40,50,57,58,87,113],document:[1,15,37,40,50,57,58,68,87,104,105,107,111,113,119,124],doe:[1,4,9,10,25,30,33,35,36,37,45,48,51,55,56,63,66,67,71,73,75,79,81,82,84,86,87,88,113,124],doesn:[3,4,7,32,45,67,71,87,113],dofastsweep:[12,23,87],doing:[19,30,113,124],domain:[36,82],domin:119,dominik:113,don:[1,3,31,49,60,61,70,71,74,87,113,124,125],done:[1,10,14,32,33,36,82,105,124,125],dot:[2,113,121],doubl:[48,87],doubt:[36,113],dovog:[26,113],down:[3,9,23,32,33,37,113],download:[26,36,86,117,120],dramat:124,drive:87,driver:[4,6,7,10,17,23,27,28,29,30,31,32,36,37,38,39,66,67,68,69,70,71,72,74,75,78,79,80,81,82,83,84,85,86,87,88,89,105,106,107,108,109,110,111,113,119,123,124],driver_path:[26,73],driver_vers:[19,68],drivertestcas:[66,71,79,88],drop:35,dtype:15,due:[3,14,27,28,29,36,70,124,125],dummi:[6,10,15,19,91,117,125],dummy_set:19,dummyinstru:[6,8,9,10],dump:68,duplic:[3,87],dur:36,durat:[28,36],dure:[1,16,58,60,64,68,71,87,103,124,125],dut:[30,38],dynam:[27,28,67,117],e1cb66:32,e8267:79,e8267c:[66,107],e8267d:111,e8527d:[66,71,113],each:[0,1,3,4,5,7,8,9,10,11,12,13,14,16,17,19,20,21,22,23,24,27,28,29,30,31,32,33,36,38,40,45,46,49,50,51,52,55,57,58,60,67,68,70,74,75,78,79,86,87,88,93,94,95,113,116,119,124,125],eachot:125,earli:31,easi:[4,6,19,113,116,119],easier:[78,110,111,113,124],easiest:2,easili:[1,10,87,119],echo:70,edg:[19,29,31],edit:[85,120],editor:113,ee82e:32,effect:[29,68,87,121],effort:3,eight:[27,28],either:[1,3,23,27,28,29,36,49,67,71,80,83,87,94,120,124],elaps:[16,20,22],electron:[3,119],elem1m1ch1:87,elem1m1ch2:87,elem1m2ch1:87,elem1m2ch2:87,elem2m1ch1:87,elem2m1ch2:87,elem2m2ch1:87,elem2m2ch2:87,element:[1,32,87,94,121,124],element_no:87,elemnum:32,elif:20,elnum:32,elpi:113,els:[2,16,21,30,33,67,87,113],elsewher:95,emac:113,email:[113,118],embed:1,emoji:113,empti:[2,7,10,20,32,70,84],enabl:[19,36,38,39,58,80,89],enable_record_head:[19,68],encapsul:124,enco:16,encod:[16,50,58,67],encount:67,encourag:[3,36,113],end:[3,8,48,60,63,67,68,84,87,113,119,124],endpoint:[11,87],engin:19,enough:[4,10,67,82,113,116],ensur:[29,31,38,85,86,113,124],enter:[40,57,120,124],entir:[17,19,24,35,84,86,95,124],entri:[2,49,55,57,87,101],entrypoint:103,enumer:36,env:[2,15,16,44,120,121],env_file_nam:[2,44],envelop:29,environ:[2,119,120,121],eom:4,equal:[86,121],equitim:86,equival:[7,87,119],err:85,error:[0,2,3,4,16,20,27,35,37,45,55,58,67,68,71,75,86,87,109,117,121,125],error_cod:75,errorcod:67,errormsg:67,esr:86,essenti:[10,79,86],establish:37,etc:[1,3,7,9,21,23,30,40,45,50,57,113,124],ethernet:[3,4,52,87],etr_5v:19,eumer:61,evalu:62,even:[4,7,13,27,28,37,47,49,58,60,61,63,67,71,73,74,81,86,87,113,124],event:[32,33,36,67,70,86,87,117],event_input_imped:87,event_input_polar:87,event_input_threshold:87,event_jump:[14,33,87],event_jump_to:[14,33,87],eventu:33,everi:[1,3,9,43,46,55,65,68,78,118,120,124,125],everybodi:[113,118],everyon:113,everyth:[32,36,48,101,113],exactli:[6,16,29,113],examin:[38,82],exampl:[0,1,2,7,8,9,40,41,45,48,57,58,61,63,68,71,86,87,107,111,113,116,119,120,122,125],examplewaveform1:33,exce:113,exceed:[32,67],excel:4,except:[2,3,15,16,35,37,67,69,70,71,73,80,82,86,87,89,96],exec_funct:16,exec_str:16,execut:[10,16,29,36,50,62,66,67,71,75,78,79,84,87,88,116,119,120,124],executor:125,exemplifi:36,exept:36,exercis:113,exis:30,exist:[3,10,30,32,48,49,61,67,87,90,92,111,113,119,124],exit:87,exit_kei:87,exp:35,expand:114,expect:[2,3,16,20,36,39,40,49,55,57,67,74,86,87,113,125],experi:[8,10,44,117,119,124],experiment:[119,124],expir:16,explain:[113,121],explan:86,explanatori:38,explicit:[32,58,60],explicitli:[40,45,57,113,124],explor:[10,87],exponenti:69,exponentialdecai:33,expos:[74,84,121],express:[58,124],ext:[16,24,33],ext_trigg:17,extend:[32,51,60,84],extens:[33,51,87],extern:[19,24,84,85,87],external_add_n:87,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:87,external_startcaptur:[19,68],external_trigger_coupl:[19,68],external_trigger_rang:[19,68],extra:[7,13,40,57,58,73,82,87,89,113,124],extra_schema_path:2,extract:82,extrem:124,f008:82,f1d:66,facilit:120,fact:113,factor:[3,27,28,36],factori:[69,87],fail:[2,110,113,124],failur:3,falcon:113,fall:[84,87],fals:[2,7,9,15,16,20,21,22,27,28,30,35,36,39,40,45,46,57,58,59,69,70,71,74,75,79,80,83,84,86,87,92,121,124],familiaris:9,faq:123,fast:[74,82,87,111,117,124],faster:[30,32,110,113],fastest:[32,36],fastsweep:23,favourit:[9,120],feasibl:[4,119],feat:113,featur:[1,3,4,21,39,85,107,108,109,110,111,114,119],feed:[3,81,86],feedback:[61,124],feel:[39,113],fetch:[13,82],few:[8,24,30,50,71,78,113,118],fewer:[27,28],ff4500:32,ff8c00:32,fft:78,fgen:33,fgen_amplitud:33,fgen_dclevel:33,fgen_frequ:33,fgen_offset:33,fgen_period:33,fgen_phas:33,fgen_signalpath:33,fgen_symmetri:33,fgen_typ:33,field:[8,37,40,50,51,57,58,80,82,119,125],field_limit:[37,80],field_measur:37,field_target:37,field_target_cartesian:37,field_target_cylindr:37,field_target_spher:37,field_valu:82,field_vector:37,fieldvector:37,fifo:19,fifo_only_stream:[19,68],fig1:15,fig:[1,30,32,36,37],fig_x_po:93,fig_x_posit:93,fig_y_po:93,fig_y_posit:93,figsiz:[1,10,93,94],figur:[1,15,16,32,36,93,94,113,124],figure_api:1,file:[2,10,33,44,46,48,49,51,67,75,82,87,90,92,113,117,120,123,124],file_path:87,filen:44,filenam:[15,32,33,87],filepath:32,filestructur:87,fill:[7,8,10,17,55,87,124],filter:[36,38,78],filter_slop:17,filw:87,find:[20,26,39,48,68,113,118,120,121],find_board:[19,68],find_modul:86,findal:82,finder:10,fine:[75,124],finish:[1,8,9,10,12,13,30,36,38,68,80,89,105,124],finit:[27,28,74,75],fire:[27,28],firmwar:[3,4,9,10,11,12,13,14,15,16,17,18,19,23,24,26,29,30,31,33,35,37,38,39,67,68,70,71,73,81,82,84,86,87,108],first:[1,2,4,7,8,9,10,13,14,16,24,30,32,37,39,40,45,51,57,58,62,69,80,87,93,94,113,120,124,125],first_delai:16,fit:[32,38,68,113],five:85,fix:[29,36,37,45,50,60,82,108,109,110,111,112,113,124,125],fixabl:113,fixtur:[4,66,71,79],flag:[27,28,75,85],flake8:113,flavor:124,flexibl:[36,116,119],float_round:89,flow:[27,28,35],flush:[24,86,87],flush_error_queu:[24,71],fmt:[2,8,10,48],fmt_counter:48,fmt_date:48,fmt_time:48,fname:87,focus:113,folder:[3,4,47,51,87],follow:[1,3,4,6,10,11,24,32,37,38,58,70,87,113,120,121,124,125],foo:[113,121,125],footer:113,forc:[19,20,22,25,30,32,87],force_ev:87,force_logicjump:87,force_reload:87,force_trigg:[31,87],force_trigger_ev:87,force_triggera:87,force_triggerb:87,foreground:[110,124],foreground_color:93,foreign:67,fork:113,form:[3,4,12,50,68,82],format:[3,8,10,11,12,13,14,15,16,23,27,28,30,32,33,35,36,37,46,48,50,51,67,84,87,90,92,119,124],formatloc:[2,8,10,92,101,116],formatt:[5,9,46,90,92,101,107,116,117,121,124],former:[12,13],formerli:[3,4,88],forward:[19,47,68],foul:32,found:[3,4,30,32,49,62,67,75,87,113,117],four:[3,21,39,67,70,83],fourier:68,fraction:93,framework:[113,119,124],free:[39,67],free_mem:68,freedom:58,freeli:124,freq:[30,85],frequenc:[3,10,17,30,36,38,68,69,71,84,85,86,87,125],frequency_set:30,frequencysweep:84,frequencysweepmagphas:84,frequent:113,freshli:120,fridg:[82,119],friendli:78,from:[0,1,2,3,4,6,8,9,10,11,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,35,36,37,38,39,40,45,46,48,49,50,51,55,57,58,67,68,69,71,74,75,78,79,81,82,84,86,87,89,90,91,94,95,109,113,115,116,117,119,124,125],front:[36,87],frontend:121,full:[0,2,24,27,29,35,36,46,51,87,90,92,119],full_nam:[0,9,10,45],full_trac:30,fulli:[29,30,36,113],fullrang:75,fun:74,func:[3,16,62,87],func_nam:20,functool:38,fundament:124,further:[83,116,119],furthermor:[1,37,78],futur:[87,113,125],gain:[81,86],garbag:68,gate:[8,9,10,24,41,70,116,124,125],gate_frequ:125,gate_frequency_set:125,gave:32,gcc:67,gee:36,gen:87,gener:[3,4,10,14,24,29,31,32,37,39,46,48,60,67,69,71,75,78,79,83,84,85,86,87,88,107,111,113,116,117,119,124],generate_awg_fil:[15,87],generate_channel_cfg:87,generate_sequence_cfg:87,get:[0,2,3,4,6,7,8,9,10,11,15,16,19,20,21,22,23,25,27,28,29,31,34,35,36,37,38,40,45,49,56,57,58,66,68,71,74,75,78,81,82,84,86,87,95,113,117,121,124,125],get_al:[75,82,84,87],get_board_info:68,get_buffers_en:75,get_capture_data:[18,86],get_chang:82,get_cmd:[3,4,10,58,59,68,82,125],get_compon:37,get_current_folder_nam:87,get_data_set:[0,1,10,11,12,13,16,38],get_error:87,get_filenam:87,get_filter_valu:75,get_folder_cont:87,get_funct:68,get_idn:[3,19,67,68,70,71,73,75,81,82,86,87],get_instrument_valu:66,get_jumpmod:87,get_latest:[31,36,40,41,57,58],get_mod:75,get_module_idn:86,get_module_statu:86,get_number_of_channel:73,get_pars:[3,4,58,59],get_pol_dac:75,get_power_at_freq:85,get_processed_data:[19,68],get_raw:[36,66,69,84,86,87],get_remote_set:75,get_sample_r:68,get_spectrum:85,get_sq_mod:87,get_sqel_loopcnt:87,get_sqel_trigger_wait:87,get_sqel_waveform:87,get_stat:87,get_voltag:86,getattr:3,getcwd:32,getlogg:[5,31,32,36,39],gettabl:[3,7,40,57,58,81,86,91,116,124],getter:[4,16,116],getx:125,ghz:38,giga:77,giga_b:77,gimm:24,git:[20,117,119,120],github:[113,115,116,117,119],giulioungaretti:113,give:[1,4,7,10,37,38,39,55,70,87,113,124],given:[0,1,27,28,33,37,42,52,67,68,70,83,113,124,125],global:[3,21,29,30,117],glori:4,gnuplot:[51,119],gnuplot_format:[5,9],gnuplotformat:[5,9,46,90,92,101,116,124],go_to:[14,33,87],goal:113,goe:[4,35],going:[3,6,39,75],golden:3,gone:35,good:[2,3,10,31,33,36,84,113],googl:113,got:[13,113],gotexcept:15,goto_l:15,goto_root:87,goto_st:[32,87],goto_to_index_no:87,gotten:[24,27,28,32,124],gpib0:[17,18,20,22,35,38],gpib:[3,4,87,89],gradual:21,grai:93,graph:[10,38,40,57,58],graphicswindow:93,great:[29,113],greatest:124,grid:[30,84],ground:[29,84],group:[1,3,53,67,84,113,119,124],grow:118,gs200:[66,106,111,117],gs200_monitor:89,gs200except:89,gs210:117,guarante:2,gui:[1,2,16,22,36,113,119,121],guid:[1,68,111,113,118,120],guidelin:113,h5fmt:5,hack:[113,121],hackish:15,had:[32,67],half:36,halfrang:75,halt:64,halt_bg:19,hammer_tim:8,han:32,hand:[32,33],handl:[3,4,7,40,45,46,50,57,67,68,74,75,93,110,116,117],handle_buff:68,handle_clos:1,handler:5,hang:113,happen:[3,27,28,32,45,62,124],happi:113,hard:[87,113],harder:[113,124],hardwar:[27,28,32,37,70,73,75,82,84,87,113,116,124],harmon:17,harvard:[21,66],has:[1,3,7,9,10,17,21,23,24,27,28,29,31,32,35,36,37,39,40,45,51,57,58,67,68,71,78,80,86,87,113,121,124,125],hasattr:[16,20],hasn:[3,67],have:[1,2,3,4,6,7,8,9,10,23,27,28,30,31,32,33,36,37,38,39,40,45,49,51,56,57,58,61,66,67,68,69,70,71,74,75,78,79,81,84,85,86,87,88,94,113,116,118,119,120,124,125],haz:105,hdf5:[107,124],hdf5_format:5,hdf5format:5,head:87,header:[19,24,67,113],heater:82,heater_off:82,heater_on:82,heatmap:[93,94,121],height:[93,94],helium:[82,110],help:[2,3,32,36,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,87,91,93,94,95,113,119,124],helper:[2,5,32,78,101,121],henc:70,here:[1,3,4,7,17,19,23,26,27,28,29,30,36,45,67,71,73,74,78,81,82,86,87,91,113,120,124],hesit:113,hewlett:[38,69],hidden:39,hierarchi:114,high:[3,10,29,33,84,87,113,124],high_definition_bandwidth:29,high_definition_st:29,higher:[37,121,124],highest:[48,124],highlevel:16,highli:120,hislip0:13,histori:[87,113],hiswaveform:15,hkey_current_usersoftwareoxford:82,hold:[3,13,17,23,25,36,69,71,82,84,86,87,116,124,125],hold_repetition_r:87,holdoff:36,home:[2,44,113,121],home_file_nam:[2,44],hook:[66,71,79],hopefulli:39,horisont:[31,36],horizont:[31,117],horizontal_scal:31,host:[27,28],hotfix:113,hound:85,how:[2,3,6,7,10,30,32,36,37,38,40,49,51,55,57,58,60,61,86,93,113,115,116,117,118,124,125],howev:[4,29,30,37,71,113],hp33210a:66,hp8133a:66,hp8753d:[66,111,117],hp8753d_tutori:38,hp8753dtrace:69,hp_83650a:66,hpintpars:69,htm:75,html:[1,4,26,63],http:[1,4,26,63,75,86,113,115,117,120],huge:[40,57],human:[3,10,68,106],i3d:37,iPS:107,id1:51,id2:51,id3:51,idea:[3,10,33,84,113,118],ideal:113,ident:[3,7,23,78,87,125],identifi:[40,46,49,51,53,57,58,70,82,86],idl:[34,87],idn:[3,4,9,10,15,17,19,23,29,33,34,38,67,70,71,73,74,75,81,82,86,87],idn_dict:4,idn_param:70,idr:82,iff:87,igh:82,ignor:[30,33,40,57,62,68,87],ignore_kwarg:16,igor:119,illustr:[1,38],ilm200:66,ilm:[82,110],imaginari:30,imm:[13,24,86],immedi:[10,11,24,27,28,42,47,68,78,95,113,124],imp:15,impact:124,imped:[3,4,10,19,29,36,68,84],impedance1:19,impedance2:19,imper:113,implememnt:95,implement:[19,37,39,49,52,60,61,67,68,78,82,84,85,87],implicit:113,implicitli:124,importlib:5,impos:124,improv:[112,113],imprrov:108,inc:[12,23,37],inch:94,includ:[3,7,11,40,48,57,58,60,63,67,71,73,79,81,82,86,87,91,93,94,113,116,117,118,119,124,125],inclus:87,inconsist:124,inconsistensi:87,inconsit:31,incorrect:[4,113],incorrectli:68,increas:[7,29,37,113],increment:[51,58,109,124],ind:36,inde:[35,37,38,113],indend:36,indendet:39,indent:113,independ:[49,124],index0:7,index1:7,index:[1,7,74,75,87,94,124],indic:[0,1,37,45,87,124,125],individu:[1,30,37,42,46,60,75,80,117],inf:[16,24,27,28],infer:45,infin:87,infiniium:[66,111,117],infiniiumchannel:71,infinit:[32,33,87],infinium:39,info:[2,3,16,22,25,36,48,68,87,118,121],inform:[3,9,10,14,19,33,40,48,52,57,58,63,68,85,87,93,110,113,119,121,124],inherit:[16,68,84,87],inifit:[27,28],init:70,init_measur:[13,16,79],init_s_param:[30,84],initi:[1,3,10,18,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,82,87,90,91,92,93,94,95,119,124],initial_valu:[1,3,7,56,58],initialis:[4,9,16,71,84,85,87,117],initialz:75,inlin:39,inner:[0,1,7,45,51,124],input:[2,3,16,20,32,37,39,50,58,66,67,75,82,84,86,87,113,116,117,124],input_config:17,input_coupl:17,input_imped:3,input_shield:17,insert:[3,39,48,121],insid:[3,7,11,40,42,46,55,57,87,90,92,113,119,124],inspect:[2,37],inst0:[3,11,12,14,15,16,23,24,29,30,32,33,39,84],inst:15,instal:[36,63,67,71,75,78,86,89,103,110,111,113,115,119],instanc:[1,2,3,10,15,40,46,50,57,58,66,68,70,71,75,78,79,81,86,87,88,124],instant:67,instantan:[27,28],instanti:[3,4,19,23,36,38,46,74,80,113,117,124],instdict:32,instead:[0,1,10,15,36,45,73,82,87,125],institut:3,instr:[3,4,11,12,13,14,15,16,17,18,20,22,23,24,25,27,28,29,30,31,32,33,35,38,39,70,82,84],instruct:[4,37,111,119,120],instrument:[0,7,11,12,15,16,17,19,20,22,23,24,26,27,28,29,30,32,33,34,35,36,37,38,40,42,45,50,52,54,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,101,108,110,111,113,114,117,119,123],instrument_cod:58,instrument_driv:[3,4,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,113],instrument_i:80,instrument_mock:[5,6,8,9,10],instrument_nam:[9,10,19,45],instrument_testcas:66,instrument_x:80,instrument_z:80,instrumentchannel:[3,42,70,71,72,73,74,78,80,84,86,87,89,101],instrumentrefparamet:108,instrumentserv:[124,125],instrumentstriton:82,insuffici:124,integ:[3,7,40,45,48,57,67,86,87,89,94,121,124],integr:[1,4,20,22,23,85,113,120,124],intellig:[82,124],intend:[37,40,57,61,124],inter:75,inter_delai:[9,10,18,58,75],interact:[1,3,86,113,117,124],interdepend:124,interest:[36,113,124],interfac:[3,4,36,67,87,117,124],interleav:[19,87],interleave_adj_amplitud:87,interleave_adj_phas:87,interleave_sampl:[19,68],intermedi:113,intern:[3,17,24,33,36,37,45,58,68,71,78,86,87],internal_clock:[3,19],internal_trigger_r:87,interpret:[10,23,124],interrupt:[67,122],interv:[93,94],introduc:111,introduct:123,intrument:33,inv:24,invalid:3,invalidate_trac:69,invert:[3,22,29,81,84,86],investig:14,invit:113,invok:[3,36],involv:[9,117,119,124],io_manag:[46,90,92,124],iomanag:116,ion:36,ipinstru:[3,67,71,73,80,81,82,86,87,101,116],ips120:[66,110],ipykernel:15,ipython:[0,1,2,15,16,17,18,19,20,22,25,29,30,31,34,36,38,119,120,121],iq_arrai:7,iqarrai:7,irang:[3,28,74],irrelev:33,irrespect:[27,28,29,87],irrevers:[33,67,124],is_awg_readi:87,is_numb:83,is_setpoint:[9,45],is_typ:2,isobu:82,issu:[37,87,105,106,109,113,116],issue_warning_on:16,ital:116,item:[7,34,40,48,57,60,74],iter:[42,60,61,116],iter_error:2,ithaco:[3,66,117],ithaco_1211:[3,22,66],its:[1,3,4,7,9,10,11,21,27,28,29,32,36,45,50,58,67,68,86,87,91,94,113,116,124,125],itself:[39,42,48,58,68,87,113,124],iv_sweep:[12,23],ivvi:[66,107,109,110,111,117],javascript:[0,1,2,15,16,17,18,19,20,22,25,29,30,31,34,36,38,113],jen:113,jhn:30,jhnsrcqcodesqcodesinstrumentparamet:36,job:[124,125],join:[2,32,113,118],jorgenschaef:113,json:[2,9,30,40,52,53,57,58,63,74,86,87,107,119,121,124],json_config:2,jsonschema:2,jtar_index_no:87,jtar_stat:87,jump:[10,21,32,33,75,87],jump_log:87,jump_tim:87,jump_to:[32,87],jumplog:87,jupyt:[1,10,119,120,122],just:[0,3,6,10,11,13,23,31,32,36,39,50,51,64,70,74,75,113,116,120,123,124,125],keep:[37,49,68,70,108,113,119,121,124],kei:[1,3,32,46,60,68,86,87,92,95,121,124],keightlei:108,keith:[12,20,22,23,106],keith_smua_curr:12,keith_smua_iv_sweep:12,keith_smua_volt_set:12,keithlei:[3,12,87,107,111,117],keithley1:[20,22],keithley2:[20,22],keithley_2000:66,keithley_2400:66,keithley_2600:[3,12,20,22,23,66],keithley_2600_channel:[3,12,23,66],keithley_2614b:[3,87],keithley_2700:66,keithley_smua:23,keithley_smua_iv_sweep:23,keithley_smub:23,keithleychannel:[3,87],kelvinox:[66,110],kept:121,kernel:[121,122],keysight:[10,66,107,108,109,110,111,117],keysight_33500b:[10,24,66],keysight_33500b_channel:66,keysight_34465a:[11,13,16,66],keysight_e8267d:66,keysight_m3201a:71,keysight_volt:11,keysightagilent_33xxx:66,keysightchannel:71,keyword:[48,50,62],khz:[3,29,30,31,38],kilo:77,kilo_b:77,kind:[0,36,87,125],kmstring:3,knob:[3,124],know:[10,33,60,61,113,118,125],known:[3,4,45,88],knownmodel:3,kwarg:[1,2,3,4,7,16,18,19,20,50,52,53,54,56,58,59,61,62,63,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,92,93,94,95,125],lab:[36,78,119],label1:51,label2:51,label3:51,label:[0,1,3,7,9,10,15,19,32,36,40,43,45,48,51,57,58,65,66,68,69,87,113,124,125],lack:70,lakeshor:66,lambda:[6,10,37,68],languag:51,larg:[4,32,58,87,113],larger:58,last:[1,2,9,16,20,29,36,58,68,74,78,87,111,113,124],last_saved_index:49,latenc:[10,11],later:[3,36,38,40,46,47,48,57,92,95,113,124,125],latest:[4,29,68,74,124],latest_cal_d:[19,68],latter:[12,13,94],launch:[78,120],lazi:117,lead:[82,113],leak:68,learn:[4,36,119],least:[36,113,116,124],leav:[26,40,52,57,87],leave_persistent_mod:82,left:[1,8,84,93,120],legacy_mp:[2,121],legend:[15,30],len:[3,13,16,18,36,67,87,125],length:[7,11,24,32,33,36,57,67,78,87,91,124,125],less:[4,38,58,113,124],lest:32,let:[1,4,8,9,23,29,30,33,35,37,38,45,93,113,117,121,125],letter:[73,113],leve:3,level:[2,3,10,15,16,19,29,38,39,45,51,82,86,87,89,110,113,121,124,125],levelnam:5,levelv:3,lib:[2,15,16,20,109],librari:[16,32,67,71,113,120,121],life:[71,113],light:9,like:[3,4,10,29,30,32,36,37,40,45,49,50,57,60,61,68,71,79,82,84,87,113,116,119,121,124],limit:[1,4,19,27,28,29,31,35,37,67,80,113,124,125],limiti:23,limitv:23,lin:[36,38,85],linalg:37,line2d:[16,36],line:[3,4,6,9,10,14,16,20,22,23,26,36,51,71,93,94,113,118,119,120],linear:[0,9,30,38,125],linearli:[36,116],liner:113,link:[45,61,67,68,116,120],linkag:114,linspac:[0,13,14,15,32,33,125],linux:120,list:[1,7,10,12,13,14,15,19,28,42,43,46,48,50,53,60,65,67,68,71,73,74,75,78,81,82,84,86,87,92,95,101,103,105,107,113,116,117,121,124,125],listcomp:16,liter:113,littl:[33,113,124],live:[1,90,115,117,124,125],load:[2,3,7,15,32,33,44,49,67,85,87,90,105,117,119,121,125],load_and_set_sequ:87,load_awg_fil:[15,87],load_data:[10,46,101],load_ext:2,loaded_data:10,loadfrom:15,loadlibrari:3,loadseqxfil:[14,33,87],loadtestsfromtestcas:5,loadwfmxfil:[14,33,87],loc:48,loc_fmt:8,loc_provid:[2,8,10,48],loc_record:92,local:[0,7,11,12,13,32,36,39,40,46,50,52,57,58,63,70,71,82,87,89,113,119,124,125],localnod:3,locat:[0,1,2,5,7,9,11,12,13,16,17,18,19,20,22,23,27,28,29,30,31,36,38,39,46,47,48,49,71,87,90,92,117,120,121,124,125],location_provid:[2,10,48,92,116],lock:[10,36,42,75,82,86,111],lockin:[3,17,81,86],lockin_ch1_databuff:17,log:[2,5,6,15,16,31,32,36,38,39,78,85,119,121,125],logger:[5,31,32,39],logic:[53,87,113],logic_jump:[15,87],loglevel:[2,121],logo:105,lograng:60,logview:113,longer:[30,48,51,55,111],look:[3,6,10,27,28,29,31,33,36,39,48,63,68,113,120,121,124,125],loop:[0,1,7,8,12,13,16,19,20,22,30,31,36,38,40,41,45,46,49,51,57,58,62,64,68,87,91,95,101,105,116,117,123,125],loop_indic:16,loop_result:7,loopcount:87,loos:9,lose:13,lost:67,lot:[3,37,45,87,113],loudli:10,love:[113,118],low:[3,10,16,30,33,36,38,87,124,125],lower:[45,124],lowest:[48,86],lua:[12,23,87],luasweepparamet:87,m1s:[14,32,87],m2s:[14,32,87],m3201a:66,m3300a:[66,107],m3300a_awg:71,m3300a_dig:71,m4i:[106,107,109],mac:[19,20,22,25],machin:[12,87,113],maco:120,made:[2,4,36,71,78,121],mag:38,magic:[8,32,121],magnet:[37,80,82,107,110,117,119,125],magnitud:[30,37,84,124],magnitur:30,mai:[3,4,9,10,14,21,23,27,28,29,30,31,32,36,41,46,49,50,60,61,87,93,94,103,113,116,121,124],mail:118,main:[1,9,87,124],mainfram:86,mainli:10,maintain:[3,81,86,113,114,118,124],major:4,majorana:121,make:[3,4,6,7,10,11,12,14,15,17,19,20,22,23,25,27,28,29,36,37,38,45,50,51,55,68,69,74,75,82,86,87,113,116,117,119,120,124],make_and_save_awg_fil:[32,87],make_directori:87,make_send_and_load_awg_fil:[32,87],makeseqxfil:[14,33,87],makesinewf:15,makewfmxfil:[14,33,87],manag:[3,20,46,48,49,75,82,86,92,120,124],mandatori:[17,87,113],mani:[1,3,4,7,36,45,46,51,60,61,68,71,87,109,113,124],manner:32,manual:[23,30,36,37,71,75,79,81,82,84,86,87,117,119,124,125],manualparamet:[0,1,3,7,19,101,111,125],manysinesincreasingfreq:15,map:[3,13,50,56,58,68,86,94,124],mark:[86,124],marker1:87,marker1_amplitude_n:87,marker1_high:33,marker1_high_n:87,marker1_low:33,marker1_low_n:87,marker1_method_n:87,marker1_offset_n:87,marker1_skew_n:87,marker1_waitvalu:33,marker2:87,marker2_amplitude_n:87,marker2_high:33,marker2_high_n:87,marker2_low:33,marker2_low_n:87,marker2_method_n:87,marker2_offset_n:87,marker2_skew_n:87,marker2_waitvalu:33,marker:[14,15,32,33,87],mashup:105,mass:87,master:[113,117,120],match:[4,29,32,36,48,50,51,57,58,67,82,84,86,87,124],math:37,matlab:1,matplot:[0,2,10,17,18,19,23,29,30,31,38,39,101,108,111,117],matplotlib:[0,2,5,6,8,11,12,15,16,17,18,19,20,21,22,25,29,30,31,32,33,34,36,37,38,39,94,117,121],matter:[4,32,113],maunual:2,max:[24,39,51,58,75,85,86,87],max_delai:59,max_frequ:86,max_sampl:[19,68],max_status_ag:74,max_subplot_column:1,max_val:70,max_val_ag:[58,59],max_work:125,maxim:[27,28,87],maximum:[37,58,70,85,121,124],mayb:[45,55,113],mc_channel:73,mcl_rf_switch_controller64:[26,73],mea:[17,18],mean:[2,3,7,9,12,13,14,29,30,33,36,37,55,58,87,113,121,124,125],meaning:3,meaningless:113,meant:[50,78],meassur:30,measur:[0,1,3,7,8,11,12,13,16,17,18,19,20,22,23,29,30,31,37,39,40,45,46,51,55,57,58,61,62,66,71,78,80,81,84,86,89,95,101,109,117,123],measured_param:[3,81,86],measured_v:1,measured_val_2:1,measured_valu:61,measurerange_i:[12,23],measurerange_v:23,meat:87,mechan:75,media:87,mega:77,mega_b:77,member:119,memori:[33,46,67,68,74,87,92,121,124],memory_s:[19,68],memrori:32,mention:[3,113],menu:120,mercuri:[107,117],mercuryip:[25,66],mercuryipsarrai:82,merg:113,merger:3,messag:[5,15,16,24,31,32,70,71,74,75,82,86,87],message_len:75,messagebas:16,messur:30,met:[58,103],meta:[6,36,119,123,124],meta_serv:125,meta_server_nam:125,metadat:[53,61],metadata:[3,10,22,40,45,49,52,53,57,58,63,66,73,86,101,107,119,124],metadata_fil:51,meter:[3,8,10,23,82,87,110],meter_voltag:8,method:[1,2,3,7,10,12,13,27,28,32,36,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,68,71,73,74,78,79,80,82,86,87,88,91,93,94,95,113,120,124,125],methodnam:[66,71,79,88],mhz:[29,30,36],microsoft:113,might:[21,23,68,80,113,124],millisecond:86,mimic:116,mimick:124,min:[24,75,87],min_val:70,min_valu:7,mind:68,mini:[26,38,51,73,111],minicircuit:[66,117],minim:[33,36],minimum:[58,70,75],minu:121,minut:3,mirror:124,misc:101,misinterpret:32,mismatch:67,miss:[113,125],mistak:113,mix:[3,113],mixer:75,mmem:15,mmemori:15,mock:[6,8,9,37,113],mockinstru:116,mockparabola:5,mockparabola_run:5,mode:[0,3,7,11,12,13,19,21,23,29,33,35,36,37,46,67,68,69,74,78,82,84,85,87,117,124,125],model:[3,9,10,12,19,22,23,33,38,67,68,71,72,73,80,81,82,83,84,86,87,113,116,121,124],model_336:66,modest:9,modif:121,modifi:[1,28,58,60,78,113],modified_rang:49,modul:[2,3,4,10,16,20,33,103,111,113,121],modular:[119,124],mohm:[12,29],moment:[71,87],monitor:[55,64,89,95,116,119,124],month:120,more:[1,4,9,10,27,28,30,32,36,38,39,46,50,51,58,68,71,78,87,104,109,113,116,117,119,124],most:[1,2,3,4,7,16,20,21,29,30,36,57,58,68,71,79,84,87,113,116,120,124],mostli:[36,116],motiv:113,move:[3,33,37,38,82,87],mpl_connect:1,msec:3,msg:82,mso:39,mso_chan4_trac:39,msos104a:[39,71,111],mua:27,much:[3,4,30,33,49,84,113,124],multi:[10,74,104,124],multichan_paramclass:42,multichannelinstrumentparamet:[42,74],multilin:113,multimet:[3,35,87,107],multiparamet:[3,30,78,81,82,84,86,101,107,117],multipl:[0,1,7,28,36,42,50,57,58,71,75,79,84,87,117,124,125],multipli:[58,124],multiprocess:[20,104,107,119,125],multityp:116,multmet:35,must:[3,7,8,10,14,29,31,32,33,36,38,40,45,48,51,52,57,60,61,68,70,71,78,84,86,87,92,113,116,121,124,125],mvpp:31,my48002016:11,my54505281:13,my54505388:[11,16],my55510104:39,my57800256:24,my_custom_fold:8,mycount:7,myget:10,myinstrument:125,mylist:15,myset:10,mysin:33,myvector:125,myvector_set:125,n48280:17,n5171b:71,n5181a:71,n51x1:[66,111],n_avg:38,n_sampl:18,naiv:12,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,22,23,25,27,28,29,30,31,32,33,34,36,37,38,39,40,42,43,44,45,46,48,50,51,52,53,54,56,57,58,59,63,65,66,67,68,69,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,92,95,113,116,121,124,125],name_to_delet:3,nameofyourdriv:4,namespac:[101,121],nan:10,nativ:[10,86],navg:85,navig:[4,120],nbagg:[5,6,8,15,19,20,21,22,25,30,31,32,34],nbi:[113,118],ndarrai:[40,45,57,86,87,124],nearli:3,necessari:[19,36,45,61,67,68,78,119,124],necessarili:[40,57,113,116],need:[1,2,3,4,7,10,15,18,32,33,37,38,39,45,68,82,86,87,113,116,117,120,124,125],neg:[29,39,64,75],neither:113,nep:[36,78],nepbw:78,nepbw_to_timeconst:78,nest:[7,10,11,45,55,124],net:26,network:[38,39,69,84,124],never:[58,113],new_cmd:[73,82,87],new_data:[46,101],new_indic:16,new_nam:3,new_valu:16,newer:84,newlin:51,newlinestripp:87,next:[1,4,14,29,32,33,35,38,40,48,51,57,87,120,124,125],nice:[1,3,9,36,38,113],nick:113,nielsen:[113,118],nifti:3,no_instru:125,no_of_rep:14,nobodi:113,nois:[3,23,29,38],noisi:37,non:[29,32,37,91,113,125],none:[2,3,5,9,10,15,16,17,19,20,22,23,25,36,37,40,42,43,45,46,48,50,51,52,53,55,56,57,58,59,60,63,65,66,68,69,70,71,73,74,75,78,80,82,84,85,86,87,89,90,92,93,94,95,105,113],nonetyp:[40,42,53,57,58,66,73],nonstandard:[67,71,73,81,86,87],noofpoint:32,noofseq:15,noofseqelem:32,noofwf:15,nor:113,norm:[24,37],normal:[12,29,40,46,47,50,57,58,60,71,73,87,116,124],notabl:36,notat:[2,60,69],notch_filt:17,note:[1,2,3,4,7,10,23,27,28,29,32,35,36,37,39,40,42,46,57,58,60,61,63,70,74,78,81,82,85,86,87,90,92,103,111,119,121,124,125],notebook:[1,2,3,8,9,11,12,14,16,17,18,19,23,29,31,32,33,36,37,38,107,109,117,119,120,121,122],noth:[3,23,68,70],notic:[1,23,30],now:[0,4,7,8,10,14,17,27,28,29,30,32,33,35,36,37,38,40,57,84,87,95,107,113,121,125],nplc:[3,11,13,16,20,22,23,87,117],nplc_list:71,npoint:39,npt:[19,30,84],nr_bytes_written:16,nrep:[14,32,33,87],nrep_l:15,num:[8,9,12,13,16,38,60,94],num_acquisit:29,num_chan:74,num_channel:87,num_port:30,number:[0,1,3,7,9,10,11,13,16,20,22,26,27,28,29,30,32,33,36,48,51,52,55,57,58,60,63,66,67,68,70,71,73,74,75,78,82,83,84,86,87,89,113,116,121,124,125],number_dac:75,number_format:51,number_of_averag:38,number_of_channel:68,number_of_paramet:125,numdac:75,numer:[51,124],numpi:[0,3,4,5,7,8,11,12,13,14,15,16,20,22,25,27,28,31,32,33,34,35,36,37,40,45,57,78,86,87,109,124,125],numpoint:87,numval:[13,16],nxsingl:29,obj:15,object:[0,1,2,3,10,15,16,17,18,19,20,22,25,29,30,31,34,36,38,40,42,45,47,49,50,55,57,58,60,61,68,70,74,75,85,90,92,95,113,114,121,124,125],obsolet:[32,111],obtain:[1,58,68],obviou:55,occasion:49,occupi:[29,48,87],occur:[1,15,37,67,70,75,86,121,124],oct:17,oem:[15,87],off:[3,9,11,13,16,21,23,24,27,28,29,30,31,33,35,36,38,50,71,74,79,80,82,84,87,89],off_modul:84,offer:[0,1,125],offload:124,offset:[19,21,29,31,36,37,84,87],often:[1,4,6,46,113,116],oftentim:29,ohm:[19,29,36],old:[17,23,30,31,108,120],older:33,oldest:24,oldn:36,omit:[40,57,58,82,87],on_modul:84,onboard:23,onc:[0,6,7,10,45,49,87,113,116,120,124,125],one:[1,2,3,7,10,12,14,17,21,23,26,27,28,29,30,31,32,33,36,37,39,40,43,45,46,49,50,51,55,57,58,60,65,66,67,68,70,74,75,84,86,87,89,92,113,116,117,121,124,125],ones:[14,33,71,79,84,87,113],onli:[3,4,5,7,8,10,19,20,26,27,28,29,30,31,32,36,37,40,45,46,48,50,51,57,58,60,61,67,68,69,71,74,78,79,81,82,84,86,87,89,92,113,117,124],onlin:1,onto:[87,124],opc:[14,87],open:[4,49,52,63,67,82,94,108,113,119,124],open_resourc:15,opendevic:85,oper:[1,3,16,19,40,41,47,57,60,67,70,87,117,121,124,125],oppos:[3,32],opposit:93,optim:119,option:[2,3,24,29,32,40,42,43,45,46,48,49,50,52,57,58,60,61,63,65,66,71,73,75,82,84,86,87,89,90,92,105,109,113,120],order:[2,3,10,32,36,37,43,46,50,65,78,80,113,121,124],ordereddict:[0,46],org:[1,63],organ:[113,117],orient:124,origin:[11,36,66,124],osc:36,oscil:[36,71],oscillator2_freq:36,oscilloscop:[3,4,71,84,87,111,117],other:[1,2,3,7,8,27,28,29,30,32,33,36,39,48,49,55,62,64,67,68,70,71,73,81,86,87,91,93,94,113,119,120,124],otherclass:3,otherwis:[3,32,45,67,68,70,113,124],our:[4,9,29,30,51,113],out:[0,3,6,7,8,10,16,20,24,27,28,30,31,36,37,40,41,57,67,68,74,82,84,86,113,117,118,119,120,122,124,125],outer:[1,7,10,45,51,124],outp1:15,output:[3,4,12,19,20,21,22,23,25,27,28,29,30,32,33,35,38,50,55,58,67,70,71,74,75,78,81,83,84,86,87,89,91,113,117,124],output_interfac:17,output_pow:38,output_rang:89,output_waveform_name_n:87,outputchannel:71,outsid:[35,64,68,75,78,87],over:[0,3,4,10,30,35,36,39,42,49,55,60,61,68,85,113,116,124,125],overhead:[13,124],overid:82,overlap:4,overload:[29,70,84,86],overrid:[3,46,48,49,67,71,73,74,78,81,82,86,87,92],overridden:1,overview:[10,23,29,38,39,87,117,121,123],overwrit:[2,8,20,22,75,87,92,121],overwritten:48,ovsr:86,own:[2,3,10,29,30,50,67,68,94,113,124],oxford:[25,34,66,107,110],oxfordinstruments_ilm200:82,oxfordinstruments_ips120:82,oxfordinstruments_kelvinox_igh:82,p1_set:0,p_label:3,p_measur:1,p_measure2:1,p_name:3,p_sweep2:1,p_sweep:1,p_unit:3,pack:87,pack_waveform:[15,87],packag:[1,2,15,16,36,103,113,119,120,121],packard:[38,69],packed_waveform:87,packed_wf:15,pad:3,page:[86,101,103,113,124],pai:113,pair:[9,11],panel:[36,70,87,119],panic:124,par:32,paraemt:66,parallel:82,param:[7,32,34,36,58,68,74,75],param_id:16,param_nam:[45,74],param_out:16,paramet:[1,6,10,12,19,21,22,23,27,28,29,30,32,33,34,36,37,38,39,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,70,71,73,74,75,78,79,80,81,82,84,85,86,87,89,90,91,92,93,94,95,101,104,106,109,111,113,114,117,119,123],parameter_class:3,parameter_nam:105,params_to_skip_upd:74,paramt:[0,65,125],parent:[3,40,42,50,54,57,58,61,70,71,72,73,74,78,80,84,86,87,89],parenthes:113,pars:[32,50,67,71,73,81,83,86,87],parse_awg_fil:[32,87],parse_multiple_output:83,parse_on_off:[71,79,84],parse_output_bool:87,parse_output_str:87,parse_single_output:83,parse_string_output:83,parsebool:87,parseint:87,parser:[3,50,69,86,87],parsestr:[69,87],part:[2,3,4,14,30,33,40,48,57,58,73,85,86,89,107,113,116,117,121,124],parti:39,partial:[38,83,125],particular:[7,9,32,36,37,116,124],particularli:[50,53,86,124],pass:[1,3,4,38,48,50,61,62,66,68,71,73,75,80,84,89,92,93,94,113,121,124,125],pat:87,patch:113,path:[2,4,10,26,32,44,46,47,49,68,82,87,90,92,120,124],path_to_driv:73,pattern:87,paus:37,pci:[3,67],pcie:[67,68,107],pcie_1751:66,pcie_link_spe:[19,68],pcie_link_width:[19,68],pckd_wf:15,pcserno:39,pdf:[74,86],peak:[29,33,87],pend:87,pep8:113,per:[3,12,13,16,19,23,33,40,45,57,68,69,70,74,75,87,119,125],percent:[36,78],percentag:82,perf:113,perf_count:14,perfom:11,perform:[1,4,9,10,11,17,19,23,27,28,29,36,37,49,58,63,68,75,78,80,85,87,91,108,110,113,124],perform_safety_check:80,perhap:[16,124,125],period:[29,39,46,93,94],persist:[52,82],person:113,phase:[7,17,24,30,36,68,78,84,124],phase_delay_input_method_n:87,phase_n:87,phi:[36,37],phi_measur:37,physic:[3,4,27,28,46,66,70,90,92,95,124],pick:113,pictur:124,piec:[116,124],pillar:124,pin:67,ping:113,pinki:113,pip:[75,113,119,120],pixel:93,place:[1,2,27,28,29,71,93,113,124],plai:[10,14,33,87,120],plain:120,pleas:[3,23,32,36,39,74,86,87,113,118],plenti:39,plese:118,plot:[0,2,3,15,16,17,18,19,22,23,24,27,29,30,31,32,35,36,37,38,39,45,101,105,108,109,117,121,124],plot_1d:10,plotlib:[2,121],plotq:22,plotter:36,plt:[1,8,11,12,15,16,18,20,22,25,29,30,31,32,33,34,36,37,39,94],plu:[33,87,121],plubic:103,plug:[12,71,119],plugin:113,plunger:8,plural:7,point:[9,10,11,12,13,14,15,16,17,30,33,36,37,43,47,51,55,65,78,82,84,85,87,101,119,124],poitn:87,polar:75,polish:119,poll:[12,17],polyfit:37,poor:21,popul:[45,53,54],popular:3,port:[21,30,34,37,52,67,70,73,80,82,85,119],port_count:67,pos:33,posit:[29,50,84,124],possibl:[3,4,7,21,30,32,36,81,82,86,87,121,124],post:113,post_acquir:68,post_delai:[9,10,18,58],post_trigger_act:78,potenti:[23,40,46,55,57,119,124],power:[3,23,30,37,38,71,80,82,84,85,107,113,124],power_limit:41,ppi:67,pprint:9,practic:113,pre:[90,117],pre_acquir:68,pre_start_captur:68,preamp:[3,81,86],preamplifi:[3,81,86],prece:78,preced:51,precis:[21,75,78,106],preconfigur:2,predefin:[32,62,86,87,117],prefer:[87,119,124],prefix:113,preinstal:120,preliminari:11,prepar:[12,13,16,29,33,36,38,68,71,78,84,86,87,117,124],prepare_buffer_readout:[17,86],prepare_curvedata:[31,39,71,87],prepare_for_measur:85,prepare_readout:86,prepare_scop:[36,78],prepare_trac:[29,38,69,84],preparesweep:87,prepend:[45,87],preprocessor:67,prerequisit:117,present:[3,4,17,80,81,86,89,113,124],preservechannelset:87,preset:85,preset_data:45,press:[1,87,122],presum:87,pretend:4,pretti:[27,28,38,74,78],prevent:[3,40,57,58,68,75,87],previou:[1,58,70,113],previous:[78,87,124],primari:119,princip:50,principl:120,print:[0,1,2,7,10,11,13,14,15,16,19,20,22,23,25,27,28,32,34,35,36,37,70,71,73,74,78,87,125],print_al:69,print_cont:87,print_modstatu:69,print_overview:[27,28,74],print_readable_sanpshot:29,print_readable_snapshot:[10,17,23,29,30,33,38],print_sweeper_set:[36,78],printslop:[27,28,74],prior:[38,66,70],prioriti:[48,124],privat:[68,101],privileg:67,probabl:[50,68,84,113,124],problem:[15,32,35,113],procedur:[74,124],proceed:14,process:[19,68,113,124],produc:[30,124],program:[1,68],programm:[68,80,87],programmat:[2,87,119],progress:55,progress_interv:[16,55],project:[3,113],prompt:120,proper:[36,75],properli:[4,37,87],properti:[2,3,4,15,26,67,121,124],protect:75,protocol:[19,75,124],provid:[1,2,3,7,8,14,19,27,28,33,45,48,50,52,58,61,68,71,79,86,88,92,93,94,113,116,117,124],proxi:124,psu:82,pts:[17,36],pull:[16,36,120],pull_from_serv:[19,22,124],puls:[27,28,32,69,107],purchas:36,purpos:[3,7,124],push:124,push_to_serv:[22,124],put:[4,14,32,35,37,51,74,82,87,124,125],pxie:71,py_head:[66,76],pyenv:[2,15],pyplot:[1,8,11,12,15,16,18,20,22,25,29,30,31,32,33,34,36,37,39],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,22,24,27,35,101,108,110,121],pyqtmaxplot:121,pyqtplot:121,pytest:[4,113],python3:[2,15],python:[3,8,10,39,46,67,68,75,82,87,90,92,105,111,113,119,120,124],pyvisa:[3,16,63,111,117,124],pywin32:110,qcmatplotlib:[0,2,19,101],qcode:[0,1,4,5,6,8,9,12,13,14,15,16,18,26,39,101,103,113,114,115,118,123,124,125],qcodes_colorbar:1,qcodes_config:121,qcodesmast:15,qcodesrc:2,qcodesrc_schema:30,qdac:[11,13,66,107,108,109,110,117],qdac_ch01_v_set:13,qdac_ch02_v_set:16,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[66,117],qdac_setpoint:13,qdacchannel:74,qdacmultichannelparamet:74,qdev:[11,13,16,20,27,28,66,119,121],qtlab:85,qtplot:[0,2,10,16,22,24,27,35,38,101,117],qtwork:75,quadratur:7,quantiti:51,queri:[15,20,27,28,36,74,84,85,86,87,124],queriabl:4,querysweep:85,question:[71,74,84,113],queue:[15,20,24,32,70,71,87],quickli:32,quiet:16,quirk:104,quit:[1,3,9,15,41,113,124],quot:51,qutech:[18,66],qutech_controlbox:79,r_offset:17,rack:[18,75],rad_to_deg:79,rainbow:48,rais:[2,3,4,16,20,35,37,39,41,42,58,61,64,66,67,68,71,73,75,78,79,82,86,87,88],raiseexc:86,ramiro:85,ramp:[3,10,16,21,24,27,28,33,35,37,58,70,80,82,87,89],ramp_al:70,ramp_curr:[35,89],ramp_rat:[37,70],ramp_target:33,ramp_to:[80,89],ramp_voltag:[35,89],rampsign:33,ramptim:27,randint:[6,8,10],random:[2,3,6,8,10,32,37,71],rang:[4,7,11,13,14,15,16,18,19,24,27,28,29,30,32,35,36,38,39,67,68,71,75,78,84,85,87,124,125],rate:[17,19,33,36,37,39,68,70,75,86,87],rather:[21,36,71,113,125],ravel:124,raw:[3,13,75,116,117,119],raw_trac:71,raw_val:13,raw_valu:[9,10,58],rawtrac:71,rc_sp4t:66,rc_spdt:66,rcd:8,reach:[37,86,113],read:[3,4,5,7,9,10,15,20,22,26,27,28,31,35,37,46,49,50,51,52,63,67,70,74,75,81,82,84,86,87,89,90,92,113,116,117,121,124],read_metadata:49,read_one_fil:49,read_pin:67,read_port:67,read_stat:74,readabl:[3,10,58,68,106,113],reader:10,readi:[7,10,36,69,87,92,113],readili:1,readm:113,readout:[74,86,108],readthedoc:[4,63],real:[3,10,30,71,81,86,113,116,119,124,125],realli:[4,27,28,45,71,124],realtim:[113,119],reappear:113,rear:87,reason:[10,37,113,125],recal:[9,10],receiv:[1,3,24,70,86],recent:[2,16,20,58],recommend:[36,113,120],reconnect:124,reconsid:23,reconstruct:49,record:[8,10,19,48,78,87,92,117,119,124],records_per_buff:[19,68],recycl:68,redirect:[45,106],reduc:[33,38,50,111],redund:4,ref:[31,124],refactor:113,refer:[10,36,45,68,86,101,113,115,124,125],referenc:[40,57,58,124],reference_clock_frequency_select:87,reference_multiplier_r:87,reference_sourc:[17,87],refernc:85,reflect:84,refriger:82,reg:[34,66,76],regard:[29,68,124],regardless:113,regist:[86,113,121],register_mag:121,registri:82,regular:[3,6,124],reimport:121,reinvent:113,reject:[3,4,85],rel:[10,30,46,47,90,92,124],relat:[1,124],relationship:124,releas:[49,111,119],relev:[4,16,29,58,68,86,87],reli:[1,3,68],reliabl:[68,124],reload:[5,49,66,124],remain:68,rememb:[13,30,31,37,39,78],remot:[20,25,29,82,93,124],remoteinstru:[124,125],remoteparamet:124,remov:[24,30,36,45,46,75,78,82,84,87,107,109,111,113,117],remove_signal_from_sweep:78,rep:87,repeat:[42,113,124],repet:87,repetit:[32,87],repetition_r:87,replac:[1,4,15,18,33,70,109],repo:[2,113],report:[39,114,119],repositori:[113,117,119,120],repr:[16,70],reprec:30,repres:[3,7,51,58,68,71,86,124],represent:[3,10,67,95,116],reproduc:[113,124],request:[13,37,39,114,124],requir:[4,7,10,36,40,50,57,60,61,63,67,75,78,84,89,92,110,113,121,124,125],res:20,rescal:87,research:[86,108,111],resend:87,resend_waveform:87,reserv:17,reset:[7,10,12,16,17,29,30,32,38,50,51,69,75,79,80,83,84,86,87],reset_modul:86,reset_voltag:75,resist:3,resistor:[12,35],resit:66,resolut:[10,29,33,75,84,109],resolv:71,resourc:[4,16,49,63,67,71,74,84,86,87,124],resourcemanag:15,respect:[1,40,57,67,87],respond:3,respons:[3,4,20,50,52,58,63,67,69,70,71,73,74,81,82,86,87],ressourc:[3,87],restart:121,restrict:[86,116],restructur:113,result:[1,5,7,38,48,68,75,85,87,117,124],ret:16,ret_cod:16,ret_valu:16,retriev:[9,24,58,87,121],retur:87,return_count:16,return_pars:50,return_self:87,reus:124,revers:[33,58,60],review:[113,119],revion:70,revok:[27,28],rewrit:124,rewritten:113,rf_off:30,rf_on:30,rfswitchcontrol:26,rho:37,richer:124,rid:45,right:[1,15,26,32,37,39,66,68,86,93,95,120],rigol:66,rigol_dg4000:83,rise:[3,36],risetim:[3,22],robust:3,rohd:[84,111,117],rohde_schwarz:[29,30,66],rohdeschwarz_sgs100a:84,rohdeschwarz_smr40:84,rol:85,role:33,ron:87,root:[46,47,87,90,92,120],rosc:15,rotate_nvalv:82,rough:114,roughli:120,round:[75,89,109,124],round_dac:75,routin:[71,74],row:[1,51,84],rrm:36,rs232linkformat:75,rs_sgs100a:84,rs_smb100a:84,rst:[50,113],rto1000:[29,66],rto:[82,111,117],rto_channel1:29,rto_channel2:29,rto_channel3:29,rto_channel4:29,rtoz:25,rtype:16,rule:[3,37],run:[0,1,4,6,8,9,10,11,12,13,14,15,16,17,18,19,20,22,24,30,31,36,37,38,39,55,66,67,69,71,78,79,84,87,105,117,119,120,121,124,125],run_cont:[29,84],run_contin:69,run_mod:[29,87],run_n_tim:[38,69],run_singl:[29,84],run_stat:87,run_sweep:38,run_temp:7,run_to_field:82,run_to_field_wait:82,runtest:[66,71,79,88],runtim:[2,121],s11:[30,38],s12:[30,84],s21:[30,38],s22:30,s44:30,s5i:66,s_paramet:38,sa124_max_freq:85,sa124_min_freq:85,sa44_max_freq:85,sa44_min_freq:85,sa_api:85,sa_audio:85,sa_audio_am:85,sa_audio_cw:85,sa_audio_fm:85,sa_audio_lsb:85,sa_audio_usb:85,sa_auto_atten:85,sa_auto_gain:85,sa_averag:85,sa_bypass:85,sa_idl:85,sa_iq:85,sa_iq_sample_r:85,sa_lin_full_scal:85,sa_lin_scal:85,sa_log_full_scal:85,sa_log_scal:85,sa_log_unit:85,sa_max_atten:85,sa_max_devic:85,sa_max_gain:85,sa_max_iq_decim:85,sa_max_rbw:85,sa_max_ref:85,sa_max_rt_rbw:85,sa_min_iq_bandwidth:85,sa_min_max:85,sa_min_rbw:85,sa_min_rt_rbw:85,sa_min_span:85,sa_power_unit:85,sa_real_tim:85,sa_sweep:85,sa_tg_sweep:85,sa_volt_unit:85,sabandwidthclamp:85,sabandwidtherr:85,sacompressionwarn:85,sadevicenotconfigurederr:85,sadevicenotfounderr:85,sadevicenotidleerr:85,sadevicenotopenerr:85,sadevicetypenon:85,sadevicetypesa124a:85,sadevicetypesa124b:85,sadevicetypesa44:85,sadevicetypesa44b:85,saexternalreferencenotfound:85,safe:[37,75,82,113,124],safe_reload:85,safe_vers:75,safeti:[30,37,71,80,82],safrequencyrangeerr:85,safti:30,sai:[46,90,92,113,125],said:[45,87],sainterneterr:85,sainvaliddetectorerr:85,sainvaliddeviceerr:85,sainvalidmodeerr:85,sainvalidparametererr:85,sainvalidscaleerr:85,sake:[4,38],same:[1,3,6,7,11,19,33,37,43,45,51,57,60,65,67,78,86,87,94,113,124,125],samp:[18,86],sampl:[13,17,19,33,39,60,61,66,68,75,86,87,117,124],sample_count:[13,16,86],sample_r:[19,33,68],sample_timer_minimum:[13,16],samples_per_buff:68,samples_per_record:[19,68],sampling_r:[29,87],sane:44,saniti:35,sanocorrect:85,sanoerror:85,sanotconfigurederr:85,sanullptrerr:85,saovencolderr:85,saparameterclamp:85,sastatu:85,sastatus_invert:85,satisfi:37,satoomanydeviceserr:85,satrackinggeneratornotfound:85,saunknownerr:85,sausbcommerr:85,save:[0,4,8,9,10,16,26,32,38,40,45,46,49,51,57,58,68,87,91,92,105,113,116,117,119,120,124,125],save_to_cwd:2,save_to_env:2,save_to_hom:[2,121],savvi:119,sawtooth:24,sca:1,scalar:[6,7,10,40,57,71,91,124],scale:[7,29,30,31,36,38,39,58,66,84,85],scale_param:7,scale_set:7,scale_v:7,scan:30,scenario:[71,113],scene:36,scf:1,schema:[2,30,44,121],schema_cwd_file_nam:44,schema_default_file_nam:44,schema_env_file_nam:44,schema_file_nam:44,schema_home_file_nam:44,scheme:[3,4],schouten:75,schwarz:[84,111,117],scope:[4,29,31,39,71,78,84,87,117],scope_average_weight:36,scope_channel1_input:36,scope_channel2_input:36,scope_channel:36,scope_correctly_built:36,scope_dur:36,scope_length:36,scope_measur:31,scope_mod:36,scope_samplingr:36,scope_seg:36,scope_segments_count:36,scope_trig_delai:36,scope_trig_en:36,scope_trig_gating_en:36,scope_trig_gating_sourc:36,scope_trig_holdoffmod:36,scope_trig_holdoffsecond:36,scope_trig_hystabsolut:36,scope_trig_hystmod:36,scope_trig_level:36,scope_trig_refer:36,scope_trig_sign:36,scope_trig_slop:36,scopearrai:87,scopechannel:84,scopedata:36,scopetrac:84,scpi:[3,15,70],screen:[29,87,93,120],script:[4,23,87,117,119,125],sd_awg:71,sd_common:71,sd_dig:71,sd_modul:71,sdk:68,sdk_version:[19,68],seamless:71,search:[48,113,124],sec:[71,87],second:[1,4,7,10,15,17,24,35,36,40,45,46,52,55,57,58,63,64,68,70,75,82,86,87,89,92,93,94,118,120,124,125],section:[118,120],see:[0,1,2,3,6,8,9,24,27,29,31,32,35,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,68,75,84,86,87,91,93,94,95,113,124,125],seem:[51,113],seen:30,segm1_ch1:87,segm1_ch2:87,segm2_ch1:87,segm2_ch2:87,segm:15,segment:[1,36,78,87],select:[3,19,37,68,78,87,113,120],self:[2,3,4,7,16,20,22,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,70,71,74,82,85,87,91,92,93,94,95,113,125],semant:119,semi:113,semicolon:[67,71,73,81,82,86,87],sen:[3,22,81],send:[3,12,13,14,16,37,52,73,75,81,82,86,87,117,118],send_awg_fil:[15,87],send_dc_puls:87,send_pattern:87,send_sequ:87,send_sequence2:87,send_trigg:18,send_waveform:87,send_waveform_to_list:[15,32,87],sendseqxfil:[14,33,87],sendwfmxfil:[14,33,87],sens:[3,113],sens_factor:[3,81],sens_x:22,sensit:[3,17,81],sensor:[72,117],sensorchannel:72,sent:[3,12,15,33,50,58,82,87,116,124],separ:[4,7,23,49,51,57,67,71,73,81,82,86,87,95,119,124,125],seper:[70,87],septemb:23,seq:87,seq_elem:32,seqnam:[33,87],sequanti:65,sequecn:87,sequenc:[7,14,32,40,45,55,57,60,70,87,91,94,117,124],sequence_cfg:87,sequence_length:32,sequence_po:32,sequencelist:[33,87],sequenti:[36,43,125],seqx:[33,87,117],seqx_fil:14,seqxfilefold:87,seri:[3,71,79,83,84,87,111,117],serial:[3,4,9,10,11,12,13,14,15,16,17,18,19,23,24,26,29,30,31,33,35,37,38,39,67,68,70,71,73,81,82,86,87,116],serial_numb:[22,26,73],serialis:87,seriou:29,serv:3,server:[4,19,20,25,36,68,78,124,125],server_err:20,server_nam:[5,19,25,69,125],session:[10,16,46,90,92,113],set:[0,1,2,3,4,5,6,7,8,9,11,15,16,17,19,20,21,22,23,24,25,26,30,32,33,35,37,38,39,43,45,46,49,51,55,56,58,60,61,65,66,67,68,69,70,71,74,75,78,79,80,81,82,84,85,86,87,90,91,92,116,117,119,121,124,125],set_al:70,set_arrai:45,set_b:82,set_cmd:[1,3,4,10,58,59,69,82,125],set_current_folder_nam:87,set_dacs_zero:75,set_default:87,set_ext_trig:84,set_field:80,set_funct:68,set_iq_st:84,set_jumpmod:87,set_level:87,set_measur:[20,22],set_mix_chamber_heater_mod:82,set_mix_chamber_heater_power_rang:82,set_mod:87,set_mode_volt_dc:87,set_mp_method:[19,20,22,25],set_pars:[58,59],set_persist:82,set_point:31,set_pol_dacrack:75,set_pulsemod_sourc:84,set_pulsemod_st:84,set_ramp:21,set_raw:66,set_remote_statu:82,set_sequ:87,set_set_point:31,set_setup_filenam:87,set_smooth:86,set_sqel_event_jump_target_index:87,set_sqel_event_jump_typ:87,set_sqel_event_target_index:[32,87],set_sqel_goto_st:87,set_sqel_goto_target_index:[15,32,87],set_sqel_loopcnt:[32,87],set_sqel_loopcnt_to_inf:[32,87],set_sqel_trigger_wait:[32,87],set_sqel_waveform:[15,32,87],set_statu:84,set_sweep:84,set_titl:[1,32],set_to_fast:82,set_to_slow:82,set_valu:61,set_voltag:86,set_xlabel:15,set_ylim:[15,32],setboth:125,setbothasync:125,setformatt:5,setlevel:[5,31,32,36,39],setpoint:[0,1,6,7,8,9,10,11,12,13,16,19,30,31,37,38,40,45,51,57,69,71,78,82,84,86,87,91,107,124,125],setpoint_arrai:[40,57],setpoint_label:[7,40,57],setpoint_nam:[7,40,57,78],setpoint_unit:[40,57],setsequencetrack:[14,33,87],settabl:[3,4,58,61,116,124],setter:[4,116],settl:[36,113],setup:[30,84,87,95,117,119],setupclass:[66,71,79],setwaveform:[33,87],setx:125,sever:[71,78,82,87,113,116,124],sg384:[66,106],sgs100a:66,shadow:2,shall:35,shape:[0,1,3,7,8,9,10,11,12,13,14,16,17,18,19,23,29,30,31,32,36,38,39,40,45,57,71,78,84,94,124,125],share:[21,118],shared_kwarg:125,shed:9,shell:[119,120],shift:36,ship:[2,36],shortcut:[93,120],shorthand:1,shot:[23,29,104,113,117],should:[3,4,10,13,14,19,24,26,29,30,31,32,33,35,36,37,40,42,45,46,48,49,50,52,54,55,57,58,60,61,62,66,67,68,70,71,73,81,82,84,86,87,95,113,120,124],shouldn:45,show:[1,3,6,8,10,18,19,20,22,25,27,28,35,37,113],show_subprocess_widget:[19,20,22,25],show_window:93,shown:[1,37],side:[32,37,58,73,116,125],sig:36,sig_gen:113,signadyn:71,signal:[10,14,15,31,32,33,39,68,71,78,79,84,85,86,87,107,117,124],signal_hound:66,signal_input1:36,signal_input1_ac:36,signal_input1_diff:36,signal_input1_imped:36,signal_input1_rang:36,signal_input1_sc:36,signal_output1:36,signal_output1_ampdef:36,signal_output1_amplitud:36,signal_output1_autorang:36,signal_output1_en:36,signal_output1_imp50:36,signal_output1_offset:36,signal_output1_on:36,signal_output1_rang:36,signal_to_volt:68,signalhound_usb_sa124b:85,signatur:[32,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,67,87,91,93,94,95],significantli:30,silent:[3,15,71],sim900:86,sim928:[66,107],sim:[4,86,111],similar:[1,4,10,84,87,124],similarli:[28,36,124],simpl:[4,6,7,10,12,17,19,30,31,41,47,50,56,64,94,113,117,119,124],simpler:113,simplest:[4,124],simpli:[2,4,14,33,36,50,58,87],simplifi:[70,113],simul:[111,116,117,119,123,124],simultan:[17,28,70],simultani:80,sin:[14,15,32,33,83],sinc:[1,3,4,9,10,36,37,70,78,82,87,124,125],sine:[14,29,31,33,39],sinesign:33,sing:30,singl:[1,3,7,10,20,22,23,30,40,51,58,60,67,68,70,71,72,74,80,84,87,91,94,104,113,116,117,120,124],single_iq:7,single_set:7,singleiqpair:7,sit:23,site:[1,2,15,16],situat:[10,51,124],six:[27,28,67],size:[1,10,40,46,57,58,68,75,86],skewed_parabola:5,skill:113,skip:[74,113],slack:[108,109,110,113,118,119],slash:47,sleep:[3,13,16,17,18,20,22,25,27,28,31,32,61,64,75,86],slice:[30,60,116],slider:1,slider_demo:1,slightli:[23,106],slope:[16,19,24,27,28,37,74],slot:[21,70,71,86],slot_mode_default:70,slot_nam:86,slow:[15,27,28,74,82,124],slow_external_clock:3,slower:32,slp:38,small:[23,27,28,30,36,67,69,104,113],smaller:[30,86],smart:[82,113],sml:87,smooth_timestep:86,smoothli:86,smr40:66,sms120c:111,smu:3,smua:[3,12,23,87],smub:[3,23,87],snapshot:[0,3,10,19,22,40,42,45,52,53,57,58,63,74,86,87,95,106,109,110,117,124],snapshot_bas:74,snapshot_get:[40,57,58],snapshot_valu:[40,57,58,86],sochat:113,socket:[52,72],soft:87,softwar:[3,24,36,74,78,87,110,113,117,124],software_revis:22,software_triggered_read:13,softwaredownload:26,sohail:113,solut:15,solv:113,some:[0,3,4,8,9,10,15,28,33,35,36,40,50,52,57,58,60,70,71,86,87,113,117,121,124],some_g:8,some_gates_plunger_set:8,somebodi:113,somehow:124,someon:[67,113],someth:[2,9,32,35,36,37,68,71,74,113,121,124],sometim:[3,7,10,36,51,124],somewher:26,soon:[70,113],sophist:68,sort:[32,51],sour1:15,sour:15,sourc:[3,10,19,23,30,35,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,111,113,114,119,124],source1:15,source_mod:35,sourcecod:9,sourcemet:[3,12,87,107],sourcerange_i:23,sourcerange_v:[12,23],sp4t:73,space:[27,28,40,57,58,60,87,113,116],span:[30,75,85],spann:75,spanx:75,spawn:[19,20,22,25],spcerr:[66,76],spdt:73,spdt_base:73,speak:[3,9],spec:4,special:[3,10,40,57,58,113,124],specif:[3,4,19,32,46,67,70,74,75,82,87,113,116,124],specifi:[1,24,26,32,37,40,49,55,57,66,67,71,75,78,79,85,86,87,88,89,94,95,113,121,124],specifiedta:87,spectrum:[66,106,107,111,124],speed:[11,13,30,58,68,124],speedup:109,spend:3,spent:14,spheric:37,spherical_measur:37,spi:75,spi_rack:75,spirack:[75,111],splat:1,split:[13,30,34],spread:118,spyder:120,sqel:87,sql:124,squar:31,squencer:87,sr560:[3,66],sr830:[66,105,108,117],sr860:[18,66,111],sr860m:86,sr865:[66,111],sr86x:66,sr86xbuffer:86,sr86xbufferreadout:86,src:[2,30],srs_sg384:86,srvalid:87,stabl:[63,120],stackoverflow:1,stage:124,stai:[113,125],staircas:10,stale:124,stand:37,standalon:119,standard:[1,3,13,30,58,67,70,71,73,74,81,86,87,119],standardparamet:[1,7,19,22,101,111,116],stanford:[86,108,111],stanford_research:[3,17,18,66],stanford_research_system:[17,18],stanford_sr865:86,start:[0,1,3,8,9,10,11,12,13,16,17,19,22,24,30,33,36,38,39,44,45,46,51,58,60,62,67,68,70,82,84,86,87,89,90,92,113,117,124],start_captur:[18,86],start_freq:38,startcaptur:19,startup:[4,27,28,69,74],stat:[71,79,84],state:[3,9,27,28,29,32,33,36,67,69,70,74,84,87,89,113,116,119,124],statement:[75,113],station1:[20,22],station2:[20,22],station:[5,6,8,9,10,11,15,16,20,22,23,30,36,40,53,55,57,58,86,101,114,124],stationq:119,statu:[34,68,71,74,75,79,82,84,85,86,87],status:86,statuscod:[15,87],std:[12,13,14],stderr:5,stdlib:67,stdout:16,step:[1,3,4,10,11,23,30,33,35,55,58,59,60,75,86,87,88,89,125],step_attenu:[71,79],stepper:82,stepsizen:75,sticker:[26,73],still:[3,4,27,28,32,35,45,113,124],stop:[1,15,17,24,29,30,32,33,36,60,67,84,86,87],stop_captur:[18,86],stop_freq:38,storag:[87,119,124],store:[0,2,40,42,45,46,49,57,58,66,68,87,92,95,109,124],str:[3,8,15,16,40,42,43,44,45,46,47,48,50,52,53,54,57,58,63,65,66,69,70,71,73,74,75,78,81,82,84,86,87,89,90,92],straightforward:[32,124],strang:36,strategi:70,stream:[16,19,36],streamhandl:5,strftime:48,strictli:78,string:[2,3,4,16,20,22,40,42,48,49,50,51,57,58,67,68,69,71,73,75,78,80,81,82,83,84,86,87,92,95,113,116,121,124],strip:[51,84],strive:113,strongli:[1,3,36,113],struct:12,structur:[46,49,68,90,92,116,121,124],struggl:113,stuf:121,stuff:[4,37,82,87,117],stupid:37,style:117,sub:3,subclass:[3,7,36,40,42,49,50,52,57,58,61,63,67,68,73,82,87,116],subject:[113,124],sublim:113,sublimelint:113,submit:[4,125],submodul:[3,9,10,53,76],subplot:[30,31,36,37,94,117],subprocess:[19,20,22,25],subscrib:78,subsequ:62,subset:30,substitut:3,subtract:36,succes:87,success:[15,58],successfulli:[37,67],succinct:113,suddenli:3,suffici:4,suit:[5,71,79,84,88,119],sum:[0,125],summari:117,superclass:[3,87],superconduct:82,suppli:[3,47,49,80,82,107,124],support:[0,1,2,3,8,10,23,24,27,28,30,31,32,35,36,53,54,61,67,71,73,78,81,82,84,86,87,108,109,111,113,121,124],suppos:[67,71,73,81,82,86,87],suppress:[3,22,87],supress:71,sure:[4,11,17,29,36,37,82,87,113,116,120],sv2:60,sv3:60,sv4:60,swap:119,sweep:[0,6,8,10,12,13,16,23,30,36,42,43,58,60,61,65,69,78,82,84,85,87,104,111,116,117,119,123,124],sweep_tim:38,sweep_val:[0,1,125],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[9,10,55],sweepabl:65,sweepdata:36,sweeper:[78,107,117],sweeper_bw:36,sweeper_bwmod:36,sweeper_ord:36,sweeper_param:36,sweeper_samplecount:36,sweeper_start:36,sweeper_stop:36,sweeper_xmap:36,sweeper_xxx:36,sweepfixedvalu:[101,116],sweepvalu:[55,101,114],swept:[9,12,125],switch_to:73,switchchannelbas:73,switchchannelusb:73,symmetr:39,symmetri:37,sync:[20,22,27,28,31,36,71,117,124],sync_delai:28,sync_dur:28,sync_filt:17,sync_output:24,sync_sourc:24,syncchannel:71,synchron:[70,124],syntax:119,synthes:107,sys:[5,16,30],system32:[3,68,85],system:[3,19,40,44,50,57,58,68,82,86,87,95,104,106,121,124],system_id:[3,19,68],t_actual:37,t_set:37,t_start:[11,14,16],t_stop:[11,14,16],tab:[36,51,113,120],tabl:[87,117,121,124],tag:113,tailor:1,take:[0,3,10,14,16,28,29,35,40,41,42,55,57,58,70,74,78,84,87,108,113,116,119,120,125],taken:87,talent:113,talk:[3,81,86,124,125],target:[33,37,60,61,68,87,89],target_curr:37,target_field:37,task:[6,10,16,24,38,55,64,101,105,113,116,124],tcpip0:[3,11,12,13,14,15,16,23,24,29,30,32,33,39,84],tcpip:[39,124],tear:[23,33],tech:119,techniqu:113,technolog:[11,13,16,24,39],tektp:31,tektron:110,tektronix:[3,12,20,22,23,66,107,108,111,117],tektronix_awg5014:[15,32,87],tektronix_awg5200:87,tektronix_awg520:87,tell:[49,51,64,113,124],telnet:73,temp0_0:[27,28],temp2_1:[27,28],temp5_2:[27,28],temperatur:[72,82,107,117],templat:113,temporari:[15,46,92],tempx_i:[27,28],tend:3,tens:113,term:[16,113],termin:[3,4,12,16,19,20,22,25,35,51,52,63,74,80,82,84,89,119,120,124],tesla:[37,82],test:[3,6,8,9,10,11,13,26,35,37,39,48,67,70,71,74,75,79,83,84,87,88,106,111,116,117,119,124],test_:4,test_ami430:37,test_attenu:88,test_attenuation_valid:4,test_awg_fil:32,test_channel_amplitud:71,test_channel_frequ:71,test_channel_offset:71,test_channel_phas:71,test_channel_wave_shap:71,test_chassis_and_slot:71,test_chassis_numb:71,test_clock_frequ:71,test_field_vector:37,test_firmware_vers:[79,88],test_frequ:79,test_hdf5formatt:5,test_init:4,test_instru:[66,113],test_metadata:113,test_on_off:79,test_open_clos:71,test_phas:79,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:79,test_pxi_trigg:71,test_send:87,test_serial_numb:71,test_slot_numb:71,test_snapshot:113,test_suit:66,test_weinschel_8320:4,testagilent_e8527d:79,testcas:66,testfil:15,testhdf5_format:5,testkeysight_m3201a:71,testkeysight_m3300a:71,testmetadat:113,testsd_modul:71,testsweep:[0,10,11,16,20,22],testweinschel_8320:88,text:[3,15,16,83,113,116,124],texttestrunn:5,textual:124,tg_thru_0db:85,tg_thru_20db:85,than:[1,3,4,27,28,30,36,55,58,113,119,124],thank:113,thebrain:113,thei:[2,3,4,6,8,10,19,20,22,25,45,46,55,62,67,68,81,86,87,113,116,121,124],them:[1,2,3,4,7,14,23,27,28,38,45,66,67,71,73,80,81,82,86,87,113,117,120,121,124,125],theme:93,then_act:9,theoret:124,therebi:24,therefor:[3,4,29,39],thermometri:34,theta:37,theta_measur:37,thi:[0,1,2,3,4,6,7,8,9,10,11,13,14,15,16,19,20,22,23,25,27,28,29,30,31,32,33,35,36,37,38,39,40,42,45,46,48,49,50,51,52,53,54,55,57,58,61,63,64,66,67,68,69,70,71,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,92,94,95,101,103,111,113,114,116,119,120,121,123,124,125],thing:[3,10,19,25,29,50,55,60,61,62,64,71,79,88,113,116,118,120,124,125],think:[113,121,124],thinksr:86,third:[39,120,124],those:[4,6,7,45,48,50,116,124],though:[1,3,58,60,61,67,71,73,81,86,87,124],thread:[75,124],thread_map:16,threadpoolexecutor:125,three:[1,7,27,28,33,36,51,60,80,87,124],through:[10,27,28,32,36,45,46,113,120,124,125],throughout:38,thu:[113,124],thursdai:33,tick:[1,19],tight_layout:[1,30,32],tim:24,time:[1,3,7,8,9,10,11,13,14,15,16,17,18,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,39,41,48,49,55,58,60,61,67,70,71,75,78,85,86,87,89,113,117,119,124,125],time_const:17,timebase_posit:[29,39],timebase_rang:[29,39],timebase_scal:29,timeit:[12,13],timeout:[15,16,17,19,20,23,29,32,33,36,38,52,63,71,82,84,86,87],timeout_tick:[19,68],timer:[20,22],timestamp:[119,124],titl:1,tmpfile:[34,82],to_setpoint:82,to_zero:82,tobyt:15,toc:10,todo:[45,71,74,75,78,79,86,113],togeth:[1,6,32,84,124],toggl:21,tolist:[3,4],ton:3,too:[3,30,40,57,58,67,84,113],took:35,tool:[1,113],top:[1,93],toplevel:109,topo:8,tortur:113,tostr:15,total:[3,7,30],touch:113,tps1:31,tps1_scope_measurement_0:31,tps1_scope_measurement_1:31,tps2012:[66,117],tps2012channel:87,tps:31,trace:[1,4,10,30,31,36,68,69,71,78,84,93,94,117],trace_point:38,traceback:[2,16,20,22,119],tracedata:38,tracenotreadi:[69,71,87],tracesetpointschang:71,track:[33,68,70,85,87,124],tracknr:87,trail:[113,120],transer:19,transfer:[15,32,33,87],transfer_offset:[19,68],transform:[37,50,58,64,68,73,82,87],translat:[3,49,78],transmiss:84,trcl:86,treat:[70,95,124],tree:[117,120],trg:[13,16],triangl:33,trig:[36,86,87],trig_engine_j:19,trig_engine_k:19,trig_engine_op_j:19,trig_slope_posit:19,trig_wait:[14,32,33,87],triga:[33,87],trigb:[33,87],trigger:[16,19,24,31,32,36,78,84,87,110,117],trigger_count:13,trigger_delai:[19,68],trigger_displai:29,trigger_edge_slop:[29,39],trigger_edge_sourc:39,trigger_en:39,trigger_engine1:[19,68],trigger_engine2:[19,68],trigger_input_imped:87,trigger_input_polar:87,trigger_input_slop:87,trigger_input_threshold:87,trigger_level1:[19,68],trigger_level2:[19,68],trigger_level:[29,31,39],trigger_mod:86,trigger_oper:[19,68],trigger_slop:16,trigger_slope1:[19,68],trigger_slope2:[19,68],trigger_sourc:[13,16,29,31,87],trigger_source1:[19,68],trigger_source2:[19,68],trigger_typ:[29,31],triton1_thermometri:34,triton:[66,107,117],trival:125,trivial:[1,4,113],trivialdictionari:68,troubleshoot:124,truncat:113,trust:58,truthi:[10,41],ts_end:9,ts_start:9,tst:5,tstart:[20,22],tudelft:75,tune:[75,113],tupl:[1,7,32,36,40,42,45,50,57,74,78,87,93,94],turn:[3,13,23,29,30,35,36,80,82,87,89],turoti:10,tutori:[6,7,9,29,38,117,123],tutorial_sequ:33,twice:14,twini:15,two:[1,3,7,9,10,12,13,14,17,23,26,30,31,32,33,45,58,69,74,78,80,85,86,87,113,117,120,125],twopi:14,txt:[75,87],type:[0,1,2,7,8,9,10,11,12,13,14,16,17,18,19,20,22,23,29,30,31,32,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,66,67,68,71,73,74,75,78,81,86,87,91,93,94,95,109,113,120,121,124,125],typeerror:[16,41,61,87],typic:[45,113,117,124],typo:113,ufh:107,uhf:[78,111,117],uint16:15,unambigu:3,unassign:[27,28],unavail:67,unblock:26,uncanningli:4,uncommit:68,uncondit:87,undefin:[24,67],under:[87,120],underli:[4,73,82,87,116,124],underscor:113,understand:[113,124],undesir:10,undo:87,unfortun:71,unga:[2,121],uni:75,unicorn:8,unif:111,unimport:87,union:[40,42,45,50,53,57,58,60,66,69,73],uniqu:[45,71],unit:[0,3,4,7,9,10,19,22,27,28,36,40,43,45,57,58,65,68,69,75,78,80,82,84,86,89,106,107,113,124,125],unitless:[40,57,58],unittest:[5,66,113],unknown:3,unless:[27,28,45,113],unlik:[33,36,40,57,66],unload:87,unlock:[82,84],unnecessari:7,unrecogn:67,unrel:124,unsav:124,unsign:87,until:[3,32,58,82,124],unus:92,updat:[1,2,4,10,15,16,27,28,29,30,31,33,36,38,40,44,57,58,68,69,74,78,82,84,87,89,93,94,95,110,116,124],update_acquisitionkwarg:[19,68],update_curr:[16,27,28,74],update_display_off:30,update_display_on:30,update_measurement_en:89,update_snapshot:95,upfront:[40,57],upgrad:[36,120],upload:[12,32,33,87,117],upload_awg_fil:15,upon:[1,24,27,28,66,86],uppercas:82,ups:37,upsteam:2,upto:87,url:26,usag:[7,48,61,71,82,87,114,117,123],usb:[3,4,111,117],usb_sa124b:66,usb_spdt:[26,66],use:[0,1,2,3,4,6,7,10,12,14,30,31,32,36,38,39,45,48,50,51,58,60,61,63,64,66,68,71,74,75,79,80,81,82,84,86,87,88,94,113,116,117,118,120,121,123,124,125],use_lock:75,use_thread:[9,16],used:[3,4,7,10,21,23,29,37,40,42,45,48,50,51,57,58,60,61,66,68,71,74,75,78,79,81,82,84,85,86,87,91,95,116,119,124],useful:[1,4,7,36,71,74,113,120,124],user:[1,2,3,9,15,16,20,26,30,32,33,58,63,67,68,78,80,86,87,119,120,121,124],usernam:113,usernot:87,usersadministratordocumentsdevelopmentqcodes_devqcodesinstrumentparamet:18,usersoemdocu:33,usersqcod:36,userwarn:[18,30,36],uses:[1,3,7,58,66,67,85,86,116,121,124],using:[1,3,8,10,23,27,28,32,33,36,37,44,49,51,63,69,71,75,80,85,87,111,113,116,119,120,124],usual:[3,10,39,53,54,74,87,124],util:[0,3,4,5,16,20,22,71,87,101,113,125],utilis:4,utility_freq:71,utopia:113,v11:31,v_amp_in:86,v_in:86,v_out:86,v_rang:[27,28],vaild:44,val:[0,3,4,7,9,10,36,58,59,60,61,68,87,89,125],val_map:[3,58,59],valid:[0,2,3,4,7,16,20,22,30,40,44,50,57,58,60,61,75,87,91,93,101,107,108,109,113,114,121,124,125],validate_al:50,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,9,10,11,12,16,17,19,20,22,23,26,27,28,29,30,32,33,36,37,38,40,43,44,45,48,50,51,55,57,58,60,61,65,66,67,68,69,70,71,74,75,78,80,82,84,86,87,116,124,125],valuabl:[9,113],value_round:75,value_typ:2,valueerror:[3,4,35,42,64,66,71,78,79,87,88],valv:82,vari:[10,38,40,57,124],variabl:[51,58,71,86,87,113,116,117,121,124],variou:[67,71,73,81,86,87,113,116],vbw:85,vector:[37,80,124],vendor:[3,4,9,10,17,19,22,23,38,67,68,71,73,81,82,86,87],ver1:17,verbos:[5,10,66,69,71,74,84,87,113],verbose_channel:10,veri:[4,27,28,36,68,71,74,124],verifi:[3,35,37,86],vernier:86,versa:[23,36,37],version:[2,3,7,8,10,15,29,31,67,68,70,71,74,75,79,82,84,85,86,87,105,119,120,125],versu:[87,117],vertic:[31,36,84,117],vi_error_rsrc_nfound:124,vi_error_tmo:16,via:[1,3,8,28,33,36,53,54,72,80,81,86,87,95,111,117,120,124],vibuf:16,vice:[23,36],videobandwidth:85,view:[29,30,113],vipuint32:16,virtual:[3,80,81,84,86,125],virtualivvi:125,vis:37,visa:[3,4,15,16,32,58,63,67,69,70,71,72,73,74,75,79,81,82,83,84,86,87,88,89,124],visa_handl:[15,16,63,70,82],visainstru:[4,69,70,71,72,74,75,79,82,83,84,86,87,88,89,101,111,116,117,124],visaioerror:16,visalib:[4,16,63],visess:16,visibl:[27,28],vision:113,visit:113,visual:119,visualis:32,viuint32:16,viwrit:16,vna:[30,38,84,85],vna_:30,vna_output_power_set:38,vna_paramet:[30,84],vna_s11:30,vna_s11_magnitud:30,vna_s11_phas:30,vna_s11_power_set:30,vna_s11_trac:30,vna_s12_trac:30,vna_s13_trac:30,vna_s14_trac:30,vna_s21_trac:30,vna_s22_trac:30,vna_s23_trac:30,vna_s24_trac:30,vna_s31_trac:30,vna_s32_trac:30,vna_s33_trac:30,vna_s34_trac:30,vna_s41_trac:30,vna_s42_trac:30,vna_s43_trac:30,vna_s44_trac:30,vna_trac:38,vogel:113,volatg:35,volt:[3,10,11,12,13,20,22,23,35,36,68,70,75,86,87,89],volt_0:22,volt_1:22,volt_:86,volt_set:22,voltag:[3,4,7,8,9,10,11,12,13,21,23,27,28,35,58,66,70,71,74,75,81,86,87,89,107,108,116,124],voltage_limit:35,voltage_rang:35,voltage_range_statu:74,voltage_raw:[3,81,86],voltagedict:86,voltagedivid:66,voltageparamet:86,voltmet:[71,124],volunt:113,vpp:24,vrang:[3,16,27,28,74],vsd:6,w8320_1:3,wai:[1,2,3,4,6,10,17,19,32,36,42,58,74,87,93,113,124,125],wait:[4,10,13,15,32,38,50,55,58,69,80,82,87,101,116,124,125],wait_l:15,wait_trigg:87,wait_valu:87,walk:125,wall:30,want:[0,1,2,3,6,21,29,30,31,36,37,39,40,46,57,66,67,68,74,113,114,116,118,120,121,123,124,125],warn:[2,3,18,29,30,32,36,37,55,67,68,78,106,121],wav:[15,74],wave:[14,15,29,31,39],waveform:[7,24,29,39,71,79,83,87,107,111,117,124],waveform_nam:87,waveformgenerator_33xxx:71,waveformlib:15,waveformlist:[33,87],web:[36,78],week:[113,118],weight:2,wein_sim:4,weinschel:[3,4,66],weinschel_8320:[3,66,117],welcom:[113,118],well:[1,4,6,29,36,42,49,67,70,71,73,79,81,82,86,87,88,113,124],went:37,were:[45,46,58,68,103],wf_dummi:15,wfm001ch1:87,wfm002ch1:87,wfm1:87,wfm1ch1:87,wfm1ch2:87,wfm2:87,wfm2ch1:87,wfm2ch2:87,wfm:[14,32,33,87],wfm_ch1_n1:33,wfm_ch1_n2:33,wfm_ch2_n1:33,wfm_ch2_n2:33,wfmch1pos1:87,wfmch1pos2:87,wfmch2pos1:87,wfmname:[15,32,87],wfmx:[14,33,87],wfmx_file:[14,33],wfmxfilefold:87,wfname_l:[15,87],wfs1:87,wfs2:87,wfs:87,what:[2,9,10,27,28,32,36,37,52,55,57,60,61,63,70,82,87,89,101,113,117,121,124,125],whatev:[13,68],wheel:113,when:[1,3,4,7,8,9,23,24,27,28,30,31,32,35,37,40,41,42,45,48,57,58,61,62,66,67,68,70,71,74,75,78,79,81,86,87,88,92,113,119,121,124,125],whenev:[86,87,124],where:[3,4,7,8,10,27,28,29,33,40,46,49,57,60,61,68,70,71,75,78,81,82,86,87,90,92,93,113,124,125],wherea:13,whether:[21,29,49,51,52,58,74,80,83,87,113,120,124],which:[1,2,3,4,6,7,8,10,14,30,32,36,37,40,42,44,45,46,48,49,51,54,55,57,58,60,62,66,67,68,71,74,80,82,84,86,87,90,92,95,113,116,120,121,124,125],whish:0,white:[29,93,113],whitespac:51,who:[113,118],whole:[3,6,7,51,57,81,86,113,116,124],whose:[45,86,95,124,125],why:[36,113],widget:[1,19,20,22,25,105],width:[93,94],william:[9,15,16,36,113],williamhpnielsen:[74,86],win32:67,win:2,window:[3,19,20,22,25,30,68,82,85,87,94,110,120],window_titl:93,windowtitl:22,wish:87,with_bg_task:[1,10,16,38],within:[1,3,19,39,42,45,62,64,68,78,113,119,124],without:[21,35,37,73,84,109,117,121,124],won:30,wonder:36,word:[117,118],work:[2,3,4,6,19,25,35,46,47,71,75,79,83,84,86,87,88,90,92,113,119,120,121,124,125],workflow:[117,119],world:[68,113,119],worri:35,wors:113,worthwhil:9,would:[1,2,7,19,20,22,25,48,71,84,113,118,124],wouldn:4,wrap:[7,36,47,73,82,87,124],wrapper:[69,75,82,84],write:[2,3,4,8,13,15,16,20,24,46,49,50,51,52,63,67,70,73,74,75,82,86,87,89,92,113,123,124],write_confirm:52,write_copi:124,write_metadata:49,write_modul:86,write_period:[46,92],write_pin:67,write_port:67,write_raw:[16,82,87],written:[1,51,68,71,82,87],wrong:[35,37,70,113],ww2:26,x_actn:25,x_fld:25,x_fldc:25,x_length:1,x_offset:17,x_rate:25,x_setpoint:25,x_val:[0,125],xlabel:37,xml:[87,113],xrm:36,xsp4t:111,xxx:70,y_length:1,y_offset:17,y_val:[0,125],yai:105,yaml:117,yeah:22,year:113,yes:[87,124],yet:[33,36,39,49,71,113,124],yield:[4,55,86],ylabel:37,yml:120,yokogawa:[66,106,111,117],yolo:2,you:[0,1,2,3,4,6,7,8,9,10,23,26,29,30,31,32,36,37,39,40,44,45,46,47,49,50,55,57,58,60,61,66,68,74,81,86,87,90,92,94,114,116,117,118,120,121,123,124,125],your:[3,4,9,10,36,39,44,50,66,67,71,73,81,86,87,113,117,118,120,121,124,125],yourself:[9,68,86],yrm:36,yscale:36,z_val:[0,125],zero:[3,14,15,27,28,32,33,37,39,40,57,58,75,78,82,87],zip:[15,16,37],ziuhfli:[36,66],ziuhfli_rrm:36,ziuhfli_sig:36,ziuhfli_xrm:36,ziuhfli_yrm:36,zn20:117,znb20:66,znb4:84,znb8:[30,84,109],znb:[30,66],znbchannel:84,zone:37,zoom:78,zurich:36},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","Datasaving Examples","Measure without a Loop","Parameters in QCoDeS","The Location Formatter","The Snapshot","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark","Benchmark of Keysight 34465A","Benchmark of waveform upload to Tektronix AWG70002A","Benchmark of waveform upload to Tektronix AWG5014C","QDac and Keysight 34465 sync and buffer","QCoDeS example with SR830","Lets capture by sending triggers. We use the IVVI to send triggers.","Qcodes example ATS_ONWORK","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Example for Minicircuits Switch Boxes controlled via USB","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","QCoDeS Example with Tektronix AWG70002A","Qcodes example with Triton","Qcodes example with Yokogawa GS200/GS210","QCoDeS Example with ZI UHF-LI","QCoDeS example with AMI430","Qcodes example with HP8753D","Example Notebook for Keysight Infiniium Oscilloscopes","qcodes.ArrayParameter","qcodes.BreakIf","qcodes.ChannelList","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.InstrumentChannel","qcodes.Loop","qcodes.ManualParameter","qcodes.MultiParameter","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.Advantech package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.HP package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.Lakeshore package","qcodes.instrument_drivers.Minicircuits package","qcodes.instrument_drivers.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelog for QCoDeS 0.1.9","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":12,"33500b":24,"34400a":20,"34411a":11,"34465a":[11,13],"break":[104,105,106,107,111],"class":[3,101,102,103],"default":121,"function":[33,50,101,102,103],"import":[10,11,12,32,39],"new":[104,105,106,107,108,109,110,111,113],"public":103,"switch":26,"while":38,ATS:68,IPS:25,Not:4,THE:31,THERE:32,That:4,The:[4,8,9,10],Using:[2,24,36,120,121],abort:122,acquir:[31,38],acquisit:[17,29,31,39],action:[8,10,103],adding:3,advantech:67,aggreg:0,agil:[11,20,79],agilent_34400a:79,alazartech:68,all:6,american_magnet:80,ami430:[37,80],approach:15,arrai:6,arrayparamet:[7,40],async:125,ats9870:68,ats_acquisition_control:68,ats_onwork:19,attent:[27,28],avanc:125,averag:29,awg5014:[32,87],awg5014c:15,awg5200:87,awg520:87,awg70000a:87,awg70002a:[14,33,87],awg:[32,33],awgfilepars:87,base:3,base_spdt:73,basic:[10,23,24,27,28,36,117],benchmark:[12,13,14,15,16,30,117],bonu:4,box:26,breakif:41,buffer:[16,17],bug:113,build:14,burst:24,can:10,captur:18,caution:36,chang:[2,104,105,106,107,111],changelog:[104,105,106,107,108,109,110,111,112],channel:[3,27,28,30],channellist:42,chat:118,clever:113,code:[113,115],combin:[0,65,125],combinedparamet:43,command:96,commit:113,commun:114,comprehens:1,config:[2,44,103,121],configur:[2,121],congratul:4,cont:29,content:[10,32,36,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,113],continu:29,contribut:113,control:26,core:2,creat:[3,4,39],curv:[23,31],custom:[2,3],d5a:75,data:[5,10,39,103],dataarrai:45,dataformat:5,datasav:5,dataset:[46,124],decadac:[21,70],deferred_oper:97,defin:10,demo:6,demodul:36,depend:39,develop:113,devic:66,dg4000:83,diskio:47,dll:3,driver:[3,117,125],dummi:5,dynam:3,e8267c:79,e8527d:79,error:24,event:1,exampl:[3,4,5,10,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,117,124],experi:2,f1d:75,familiar:113,faq:122,fast:23,featur:113,file:[4,14,32,121],fix:[104,105,106,107],format:113,formatloc:48,formatt:[8,49],from:[5,31,120],gener:[5,15,33],get:[12,13,32,118,120],git:113,github:120,global:10,gnuplotformat:51,gs200:[35,89],gs210:35,guid:[114,123],handl:[1,24],harvard:70,help:118,helper:98,hierarchi:116,horizont:29,hour:118,how:[1,4,122],hp33210a:79,hp8133a:69,hp8753d:[38,69],hp_83650a:69,ilm200:82,improv:[104,105,106,107,108,109,110,111],includ:4,individu:36,infiniium:[39,71],initialis:[12,32],input:[29,36],instal:120,instanti:[6,10],instrument:[3,4,5,6,9,10,39,53,103,116,124,125],instrument_driv:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],instrumentchannel:54,interact:10,interfac:1,introduct:124,involv:3,ipinstru:52,ips120:82,ithaco:[22,81],ithaco_1211:81,ivvi:[18,75],keithlei:23,keithley_2000:87,keithley_2400:87,keithley_2600:87,keithley_2600_channel:87,keithley_2700:87,kelvinox:82,keysight:[11,13,16,24,39,71],keysight_33500b:71,keysight_33500b_channel:71,keysight_34465a:71,keysight_e8267d:71,keysightagilent_33xxx:71,lakeshor:72,latest:120,lazi:32,let:18,linkag:116,list:[17,32,33],live:10,load:10,load_data:90,locat:[8,10],loop:[5,6,9,10,11,55,103,124],m3201a:71,m3300a:71,magnet:25,make:[32,33],manual:3,manualparamet:56,matplot:[1,94],matplotlib:1,measur:[6,9,10,36,38,91,103,122,124,125],mercuri:25,mercuryip:82,messag:113,meta:125,metadata:99,minicircuit:[26,73],misc:103,mode:[24,32],model_336:72,modul:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],more:[3,118,121],multiparamet:[7,57],multipl:10,n51x1:71,need:6,new_data:92,note:113,notebook:39,nplc:12,object:116,offic:118,one:11,onli:6,oper:[23,33],organ:3,oscilloscop:[29,31,39],out:29,output:[6,10,36],overview:[27,28,124],oxford:82,packag:[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89],paramet:[0,3,4,7,9,17,58,116,124,125],part:11,pcie_1751:67,phase:119,plan:119,plot:[1,10,93,94,103],pre:13,predefin:30,prepar:39,prerequisit:36,privat:102,project:119,provid:10,pull:113,push:113,py_head:77,pyqtgraph:93,pyvisa:4,qcmatplotlib:94,qcode:[2,3,7,10,11,17,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,104,105,106,107,108,109,110,111,117,119,120,121,122],qdac:[16,27,28,74],qdac_channel:[28,74],qdev:74,qtplot:[1,93],qutech:75,raw:11,rc_sp4t:73,rc_spdt:73,read:[11,29],realli:113,record:29,reg:77,releas:120,remov:3,report:113,request:113,requir:120,respons:124,result:[12,13],rigol:83,rohd:[29,30],rohde_schwarz:84,rough:116,rto1000:84,rto:29,run:[5,29,32,113,122],s5i:75,sampl:36,save:[2,121],schwarz:[29,30],scope:36,script:12,send:[18,32,33],sensor:[27,28],sequenc:33,seqx:14,seri:29,set:[10,12,13,27,28,29,31,36],setup:[11,39,113],sg384:86,sgs100a:84,shot:16,signal:[29,36],signal_hound:85,sim928:86,simpl:[0,1,3],simul:[3,4,125],singl:[16,29,38],smr40:84,snapshot:9,softwar:13,some:32,sourc:115,spcerr:77,spectrum:[76,77],sr560:86,sr830:[17,86],sr860:86,sr865:86,sr86x:86,standardparamet:59,stanford_research:86,start:[5,120],station:[95,103,116],stuff:16,style:[33,113],submodul:[66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89],subpackag:[66,76],subplot:1,summari:13,sweep:[1,9,11,38,125],sweeper:36,sweepfixedvalu:60,sweepvalu:[61,116],sync:16,tabl:[10,32,36],task:62,tektronix:[14,15,31,32,33,87],temperatur:[27,28],test:[4,5,66,113],test_suit:[71,79,88],them:32,time:12,todo:[55,61,82,84,85,87,116,121,125],tps2012:[31,87],trace:[29,38,39],trigger:[13,18,29,39],triton:[34,82],tutori:[10,125],two:11,typic:10,uhf:36,updat:[120,121],upload:[14,15],usag:[24,27,28,36,113,122],usb:26,usb_sa124b:85,usb_spdt:73,use:18,user:123,using:117,util:[96,97,98,99,100,103],valid:[100,116],valu:121,variabl:2,versu:11,vertic:29,via:[26,32],visainstru:[3,63],wait:64,waveform:[14,15,32,33],weinschel:88,weinschel_8320:[4,88],what:[3,4],without:[6,30],word:36,workflow:10,write:125,yaml:4,yokogawa:[35,89],you:113,your:2,ziuhfli:78,zn20:30,znb20:84,znb:84}})
\ No newline at end of file
|