[docs]classDacReader:@staticmethoddef_dac_parse(resp):"""
- Parses responses from the DAC. They should take the form of "<cmd><resp>!"
- This command returns the value of resp.
+ Parses responses from the DAC. They should take the form of
+ "<cmd><resp>!" This command returns the value of resp. """resp=resp.strip()ifresp[-1]!="!":
- raiseDACException("Unexpected terminator on response: {}. Should end with \"!\"".format(resp))
+ raiseDACException(f'Unexpected terminator on response: {resp}. '
+ f'Should end with "!"')returnresp.strip()[1:-1]def_dac_v_to_code(self,volt):
@@ -214,7 +219,7 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
resp =self.ask_raw("B{};".format(self._slot))ifint(self._dac_parse(resp))!=self._slot:raiseDACException("Unexpected return from DAC when setting slot: "
- "{}. DAC slot may not have been set.".format(resp))
+ f"{resp}. DAC slot may not have been set.")def_set_channel(self):"""
@@ -222,10 +227,12 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
"""
resp=self.ask_raw("B{};C{};".format(self._slot,self._channel))ifresp.strip()!="B{}!C{}!".format(self._slot,self._channel):
- raiseDACException("Unexpected return from DAC when setting channel: "
- "{}. DAC channel may not have been set.".format(resp))
+ raiseDACException(f"Unexpected return from DAC when setting "
+ f"channel: {resp}. DAC channel may not have "
+ f"been set.")
- def_query_address(self,addr,count=1,versa_eeprom=False):
+ def_query_address(self,addr:int,count:int=1,
+ versa_eeprom:bool=False):""" Query the value at the dac address given.
@@ -234,7 +241,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
count (int): The number of bytes to query.
- versa_eeprom(bool): do we want to read from the versadac (slot) EEPROM
+ versa_eeprom(bool): do we want to read from the versadac
+ (slot) EEPROM """# Check if we actually have anything to queryifcount==0:
@@ -258,15 +266,18 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
val =0foriinrange(count):# Set DAC to point to address
- ret=int(self._dac_parse(self.ask_raw("A{};".format(addr))))
+ ret=int(self._dac_parse(
+ self.ask_raw(f"A{addr};")))# type: ignoreifret!=addr:
- raiseDACException("Failed to set EEPROM address {}.".format(addr))
- val+=int(self._dac_parse(self.ask_raw(query_command)))<<(32*(count-i-1))
+ raiseDACException(f"Failed to set EEPROM address {addr}.")
+ val+=int(self._dac_parse(self.ask_raw(# type: ignore
+ query_command)))<<(32*(count-i-1))addr+=1returnval
- def_write_address(self,addr,val,versa_eeprom=False):
+ def_write_address(self,addr:int,val:int,
+ versa_eeprom:bool=False)->None:""" Write a value to a given DAC address
@@ -275,7 +286,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
val (int): The value to write.
- versa_eeprom(bool): do we want to read from the versadac (slot) EEPROM
+ versa_eeprom(bool): do we want to read
+ from the versadac (slot) EEPROM """# Validate addressaddr=int(addr)
@@ -285,11 +297,12 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
# Validate value
val=int(val)ifval<0orval>=2**32:
- raiseDACException("Writing invalid value ({}) to address {}.".format(val,addr))
+ raiseDACException(f"Writing invalid value "
+ f"({val}) to address {addr}.")# Choose a poke command depending on whether we are querying a
- # VERSADAC eeprom or main memory. If we are writing to a versadac channel
- # we must also set the slot
+ # VERSADAC eeprom or main memory. If we are writing to a versadac
+ # channel we must also set the slotifversa_eeprom:query_command="e;"write_command="E"
@@ -300,13 +313,15 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
# Write the value to the DAC
# Set DAC to point to address
- ret=int(self._dac_parse(self.ask_raw("A{};".format(addr))))
+ ret=int(self._dac_parse(self.ask_raw(f"A{addr};")))# type: ignoreifret!=addr:raiseDACException("Failed to set EEPROM address {}.".format(addr))
- self.ask_raw("{}{};".format(write_command,val))
+ self.ask_raw("{}{};".format(write_command,val))# type: ignore# Check the write was successful
- ifint(self._dac_parse(self.ask_raw(query_command)))!=val:
- raiseDACException("Failed to write value ({}) to address {}.".format(val,addr))
+ ifint(self._dac_parse(
+ self.ask_raw(query_command)))!=val:# type: ignore
+ raiseDACException(f"Failed to write value ({val}) to "
+ f"address {addr}.")
Source code for qcodes.instrument_drivers.Harvard.Decadac
# Validate slot and channel values
self._CHANNEL_VAL.validate(channel)self._channel=channel
- self._slot=self._parent._slot
+ self._slot=self.parent._slot# Calculate base address for querying channel parameters# Note that the following values can be found using these offsets
@@ -338,49 +353,73 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
self.max_val=max_val# Add channel parameters
- # Note we will use the older addresses to read the value from the dac rather than the newer
- # 'd' command for backwards compatibility
+ # Note we will use the older addresses to read the value from the dac
+ # rather than the newer 'd' command for backwards compatibilityself._volt_val=vals.Numbers(self.min_val,self.max_val)
- self.add_parameter("volt",get_cmd=partial(self._query_address,self._base_addr+9,1),
+ self.add_parameter("volt",get_cmd=partial(self._query_address,
+ self._base_addr+9,1),get_parser=self._dac_code_to_v,
- set_cmd=self._set_dac,set_parser=self._dac_v_to_code,vals=self._volt_val,
- label="channel {}".format(channel+self._slot*4),unit="V")
- # The limit commands are used to sweep dac voltages. They are not safety features.
- self.add_parameter("lower_ramp_limit",get_cmd=partial(self._query_address,self._base_addr+5),
+ set_cmd=self._set_dac,
+ set_parser=self._dac_v_to_code,vals=self._volt_val,
+ label="channel {}".format(channel+self._slot*4),
+ unit="V")
+ # The limit commands are used to sweep dac voltages. They are not
+ # safety features.
+ self.add_parameter("lower_ramp_limit",
+ get_cmd=partial(self._query_address,
+ self._base_addr+5),get_parser=self._dac_code_to_v,
- set_cmd="L{};",set_parser=self._dac_v_to_code,vals=self._volt_val,
+ set_cmd="L{};",set_parser=self._dac_v_to_code,
+ vals=self._volt_val,label="Lower_Ramp_Limit",unit="V")
- self.add_parameter("upper_ramp_limit",get_cmd=partial(self._query_address,self._base_addr+4),
+ self.add_parameter("upper_ramp_limit",
+ get_cmd=partial(self._query_address,
+ self._base_addr+4),get_parser=self._dac_code_to_v,
- set_cmd="U{};",set_parser=self._dac_v_to_code,vals=self._volt_val,
+ set_cmd="U{};",set_parser=self._dac_v_to_code,
+ vals=self._volt_val,label="Upper_Ramp_Limit",unit="V")
- self.add_parameter("update_period",get_cmd=partial(self._query_address,self._base_addr),
- get_parser=int,set_cmd="T{};",set_parser=int,vals=vals.Ints(50,65535),
+ self.add_parameter("update_period",
+ get_cmd=partial(self._query_address,
+ self._base_addr),
+ get_parser=int,set_cmd="T{};",set_parser=int,
+ vals=vals.Ints(50,65535),label="Update_Period",unit="us")
- self.add_parameter("slope",get_cmd=partial(self._query_address,self._base_addr+6,2),
- get_parser=int,set_cmd="S{};",set_parser=int,vals=vals.Ints(-(2**32),2**32),
+ self.add_parameter("slope",get_cmd=partial(self._query_address,
+ self._base_addr+6,2),
+ get_parser=int,set_cmd="S{};",set_parser=int,
+ vals=vals.Ints(-(2**32),2**32),label="Ramp_Slope")
- # Manual parameters to control whether DAC channels should ramp to voltages or jump
+ # Manual parameters to control whether DAC channels should ramp to
+ # voltages or jumpself._ramp_val=vals.Numbers(0,10)
- self.add_parameter("enable_ramp",get_cmd=None,set_cmd=None,initial_value=False,
+ self.add_parameter("enable_ramp",get_cmd=None,set_cmd=None,
+ initial_value=False,vals=vals.Bool())
- self.add_parameter("ramp_rate",get_cmd=None,set_cmd=None,initial_value=0.1,
+ self.add_parameter("ramp_rate",get_cmd=None,set_cmd=None,
+ initial_value=0.1,vals=self._ramp_val,unit="V/s")# Add ramp function to the list of functions
- self.add_function("ramp",call_cmd=self._ramp,args=(self._volt_val,self._ramp_val))
+ self.add_function("ramp",call_cmd=self._ramp,args=(self._volt_val,
+ self._ramp_val))
- # If we have access to the VERSADAC (slot) EEPROM, we can set the inital
- # value of the channel.
+ # If we have access to the VERSADAC (slot) EEPROM, we can set the
+ # initial value of the channel.# NOTE: these values will be overwritten by a K3 calibration
- ifself._parent._VERSA_EEPROM_available:
+ ifself.parent._VERSA_EEPROM_available:_INITIAL_ADDR=[6,8,32774,32776]self.add_parameter("initial_value",
- get_cmd=partial(self._query_address,_INITIAL_ADDR[self._channel],versa_eeprom=True),
+ get_cmd=partial(self._query_address,
+ _INITIAL_ADDR[self._channel],
+ versa_eeprom=True),get_parser=self._dac_code_to_v,
- set_cmd=partial(self._write_address,_INITIAL_ADDR[self._channel],versa_eeprom=True),
- set_parser=self._dac_v_to_code,vals=vals.Numbers(self.min_val,self.max_val))
+ set_cmd=partial(self._write_address,
+ _INITIAL_ADDR[self._channel],
+ versa_eeprom=True),
+ set_parser=self._dac_v_to_code,
+ vals=vals.Numbers(self.min_val,self.max_val))def_ramp(self,val,rate,block=True):"""
@@ -394,17 +433,21 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
block (bool): Should the call block until the ramp is complete?
"""
- # We need to know the current dac value (in raw units), as well as the update rate
+ # We need to know the current dac value (in raw units), as well as the
+ # update ratec_volt=self.volt.get()# Current Voltage
- ifc_volt==val:# If we are already at the right voltage, we don't need to ramp
+ ifc_volt==val:
+ # If we are already at the right voltage, we don't need to rampreturnc_val=self._dac_v_to_code(c_volt)# Current voltage in DAC unitse_val=self._dac_v_to_code(val)# Endpoint in DAC units
- t_rate=1/(self.update_period.get()*1e-6)# Number of refreshes per second
- secs=abs((c_volt-val)/rate)# Number of seconds to ramp
+ # Number of refreshes per second
+ t_rate=1/(self.update_period.get()*1e-6)
+ # Number of seconds to ramp
+ secs=abs((c_volt-val)/rate)
- # The formula to calculate the slope is: Number of DAC steps divided by the number of time
- # steps in the ramp multiplied by 65536
+ # The formula to calculate the slope is: Number of DAC steps divided by
+ # the number of time steps in the ramp multiplied by 65536slope=int(((e_val-c_val)/(t_rate*secs))*65536)# Now let's set up our limits and ramo slope
@@ -466,29 +509,33 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
self._slot=slot# Store whether we have access to the VERSADAC EEPROM
- self._VERSA_EEPROM_available=self._parent._VERSA_EEPROM_available
+ self._VERSA_EEPROM_available=self.parent._VERSA_EEPROM_available# Create a list of channels in the slotchannels=ChannelList(self,"Slot_Channels",parent.DAC_CHANNEL_CLASS)foriinrange(4):
- channels.append(parent.DAC_CHANNEL_CLASS(self,"Chan{}".format(i),i,
- min_val=min_val,max_val=max_val))
+ channels.append(parent.DAC_CHANNEL_CLASS(self,"Chan{}".format(i),
+ i,min_val=min_val,
+ max_val=max_val))self.add_submodule("channels",channels)# Set the slot mode. Valid modes are:
- # Off: Channel outputs are disconnected from the input, grounded with 10MOhm.
- # Fine: 2-channel mode. Channels 0 and 1 are output, use 2 and 3 for fine
- # adjustment of Channels 0 and 1 respectively
+ # Off: Channel outputs are disconnected from the input, grounded
+ # with 10MOhm.
+ # Fine: 2-channel mode. Channels 0 and 1 are output, use 2 and 3
+ # for fine adjustment of Channels 0 and 1 respectively# Coarse: All 4 channels are used as output
- # FineCald: Calibrated 2-channel mode, with 0 and 1 output, 2 and 3 used
- # automatically for fine adjustment. This mode only works for calibrated
- # DecaDAC's
- # Unfortunately there is no known way of reading the slot mode hence this will be
- # set in initialization
- ifself._parent._cal_supported:
+ # FineCald: Calibrated 2-channel mode, with 0 and 1 output, 2 and 3
+ # used automatically for fine adjustment. This mode only works
+ # for calibrated DecaDAC's
+ #
+ # Unfortunately there is no known way of reading the slot mode hence
+ # this will be set in initialization
+ ifself.parent._cal_supported:slot_modes={"Off":0,"Fine":1,"Coarse":2,"FineCald":3}else:slot_modes={"Off":0,"Fine":1,"Coarse":2}
- self.add_parameter('slot_mode',get_cmd="m;",get_parser=self._dac_parse,set_cmd="M{};",
+ self.add_parameter('slot_mode',get_cmd="m;",
+ get_parser=self._dac_parse,set_cmd="M{};",val_mapping=slot_modes)# Enable all slots in coarse mode.
@@ -514,8 +561,6 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
[docs]classDecadac(VisaInstrument,DacReader):""" The qcodes driver for the Decadac.
- Each slot on the Deacadac is to be treated as a seperate
- four-channel instrument. Tested with a Decadec firmware revion number 14081 (Decadac 139).
@@ -533,24 +578,25 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
DAC_CHANNEL_CLASS =DacChannelDAC_SLOT_CLASS=DacSlot
- def__init__(self,name,address,min_val=-5,max_val=5,**kwargs):
+ def__init__(self,name:str,address:str,
+ min_val:number=-5,max_val:number=5,
+ **kwargs)->None:"""
- Creates an instance of the Decadac instrument corresponding to one slot
- on the physical instrument.
+ Creates an instance of the Decadac instruments Args:
- name (str): What this instrument is called locally.
+ name: What this instrument is called locally.
- port (str): The address of the DAC. For a serial port this is ASRLn::INSTR
- where n is replaced with the address set in the VISA control panel.
- Baud rate and other serial parameters must also be set in the VISA control
- panel.
+ address: The address of the DAC. For a serial port this
+ is ASRLn::INSTR where n is replaced with the address set in the
+ VISA control panel. Baud rate and other serial parameters must
+ also be set in the VISA control panel.
- min_val (number): The minimum value in volts that can be output by the DAC.
+ min_val: The minimum value in volts that can be output by the DAC. This value should correspond to the DAC code 0.
- max_val (number): The maximum value in volts that can be output by the DAC.
+ max_val: The maximum value in volts that can be output by the DAC. This value should correspond to the DAC code 65536. """
@@ -561,10 +607,12 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
[docs]defset_all(self,volt:float)->None:"""
- Set all dac channels to a specific voltage. If channels are set to ramp then the ramps
- will occur in sequence, not simultaneously.
+ Set all dac channels to a specific voltage. If channels are set to ramp
+ then the ramps will occur in sequence, not simultaneously. Args: volt(float): The voltage to set all gates to.
@@ -586,9 +634,10 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
[docs]deframp_all(self,volt,ramp_rate):"""
- Ramp all dac channels to a specific voltage at the given rate simultaneously. Note
- that the ramps are not synchronized due to communications time and DAC ramps starting
- as soon as the commands are in.
+ Ramp all dac channels to a specific voltage at the given rate
+ simultaneously. Note that the ramps are not synchronized due to
+ communications time and DAC ramps starting as soon as the commands are
+ in. Args: volt(float): The voltage to ramp all channels to.
@@ -607,8 +656,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
[docs]defget_idn(self):"""
- Attempt to identify the dac. Since we don't have standard SCPI commands, ``*IDN`` will
- do nothing on this DAC.
+ Attempt to identify the dac. Since we don't have standard SCPI
+ commands, ``*IDN`` will do nothing on this DAC. Returns: A dict containing a serial and hardware version
@@ -619,8 +668,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
[docs]defconnect_message(self,idn_param='IDN',begin_time=None):"""
- Print a connect message, taking into account the lack of a standard ``*IDN`` on
- the Harvard DAC
+ Print a connect message, taking into account the lack of a standard
+ ``*IDN`` on the Harvard DAC Args: begin_time (number): time.time() when init started.
@@ -641,7 +690,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
def _feature_detect(self):"""
- Detect which features are available on the DAC by querying various parameters.
+ Detect which features are available on the DAC by querying various
+ parameters. """# Check whether EEPROM is installed
@@ -676,8 +726,8 @@
Source code for qcodes.instrument_drivers.Harvard.Decadac
except DACException:self._cal_supported=False
- # Finally try and read the DAC version and S/N. This is only possible if the EEPROM
- # is queryable.
+ # Finally try and read the DAC version and S/N.
+ # This is only possible if the EEPROM is queryable.ifself._EEPROM_available:self.version=self._query_address(1107296266)self.serial_no=self._query_address(1107296264)
diff --git a/_notebooks/DataSet/Benchmarking.html b/_notebooks/DataSet/Benchmarking.html
index e6430b2fabb..fe5d7215299 100644
--- a/_notebooks/DataSet/Benchmarking.html
+++ b/_notebooks/DataSet/Benchmarking.html
@@ -250,8 +250,8 @@
# Or we might want to simply get as many points as possible in 10 s
+
# Or we might want to simply get as many points as possible in 10 s# randomly sampling the region between 0 V and 10 V (for the setpoint axis)fromtimeimportmonotonic,sleep
@@ -394,7 +394,7 @@
# or even perform an adaptive sweep... ooohh...## This example is a not-very-clever toy model example,# but it nicely shows a semi-realistic measurement that the old qc.Loop
@@ -560,7 +560,7 @@
As we can see there the time to setup and and close the experiment is
+
As we can see there the time to setup and and close the experiment is
approximately 0.4 sec. At small array sizes the difference between
inserting as arrays and inserting row by row is therefore relatively
unimportant. At larger array sizes above 10000 points or so the cost of
@@ -362,7 +362,7 @@
However, as we increase the length of the experimenter as seen here by
+
However, as we increase the length of the experimenter as seen here by
repeating the insertion 100 times we see a big difference between
inserting row by row and inserting as a binary blob
diff --git a/_notebooks/DataSet/Load old data.html b/_notebooks/DataSet/Load old data.html
index 8d4e8d67536..f8c99da2da4 100644
--- a/_notebooks/DataSet/Load old data.html
+++ b/_notebooks/DataSet/Load old data.html
@@ -223,7 +223,7 @@
Using the returned axis, we can e.g. change the plot linewidth and
+
Using the returned axis, we can e.g. change the plot linewidth and
color. We refer to the matplotlib documentation for details on
matplotlib plot customization.
diff --git a/_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.html b/_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.html
index 1cdd51ec2cb..401449cdc28 100644
--- a/_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.html
+++ b/_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.html
@@ -273,14 +273,13 @@
At step 12: The voltage exceeded the limit 5 times!
-At step 25: The voltage exceeded the limit 5 times!
-At step 43: The voltage exceeded the limit 5 times!
-At step 60: The voltage exceeded the limit 5 times!
-At step 75: The voltage exceeded the limit 5 times!
-At step 95: The voltage exceeded the limit 5 times!
-At step 120: The voltage exceeded the limit 5 times!
-At step 133: The voltage exceeded the limit 5 times!
+
At step 26: The voltage exceeded the limit 5 times!
+At step 53: The voltage exceeded the limit 5 times!
+At step 61: The voltage exceeded the limit 5 times!
+At step 83: The voltage exceeded the limit 5 times!
+At step 105: The voltage exceeded the limit 5 times!
+At step 122: The voltage exceeded the limit 5 times!
+At step 139: The voltage exceeded the limit 5 times!
diff --git a/_notebooks/driver_examples/QCodes example with SR830.html b/_notebooks/driver_examples/QCodes example with SR830.html
index dc1bd351bb3..e86ae0d81e3 100644
--- a/_notebooks/driver_examples/QCodes example with SR830.html
+++ b/_notebooks/driver_examples/QCodes example with SR830.html
@@ -106,7 +106,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html
index 63e9b40e37b..5383ad2706b 100644
--- a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html
+++ b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Alazar 9360.html b/_notebooks/driver_examples/Qcodes example with Alazar 9360.html
index ca5361d8487..b3a041feacb 100644
--- a/_notebooks/driver_examples/Qcodes example with Alazar 9360.html
+++ b/_notebooks/driver_examples/Qcodes example with Alazar 9360.html
@@ -28,7 +28,7 @@
-
+
@@ -102,7 +102,6 @@
The most used feature of the Decadac is its voltage output capability.
-There are four parameters corresponding to the channels, i.e.
-deca.ch0_voltage, deca.ch1_voltage, etc.
-
deca.ch0_voltage.set(1)
-deca.ch0_voltage.get()
-
-
-
The Decadac has a global setting (i.e. shared by all channels and
-slots) controlling whether the voltages jump or gradually ramp to the
-set voltage.
-
deca.set_ramping(True,time=1000)# time in ms
-deca.ch0_voltage.set(0)
-deca.set_ramping(False)
-
-
-
The precision of the Decadac may be rather poor, so one might want to
-apply a correctional offset to each channel.
It is possible to toggle the Decadac output ON/OFF without changing
-anything else.
-
deca.mode.set(0)# 0: output off, 1: output on
-
-
-
deca.close()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/_notebooks/driver_examples/Qcodes example with Ithaco.html b/_notebooks/driver_examples/Qcodes example with Ithaco.html
index 997f8955e72..dc8b6134efa 100644
--- a/_notebooks/driver_examples/Qcodes example with Ithaco.html
+++ b/_notebooks/driver_examples/Qcodes example with Ithaco.html
@@ -29,7 +29,7 @@
-
+
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html
index 808d00ad5de..f43da6dc263 100644
--- a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html
+++ b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html
index 9a33aaf92c4..2c640f2e9c8 100644
--- a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html
+++ b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Lakeshore 325.html b/_notebooks/driver_examples/Qcodes example with Lakeshore 325.html
index 9390f56d383..645eaed7fe8 100644
--- a/_notebooks/driver_examples/Qcodes example with Lakeshore 325.html
+++ b/_notebooks/driver_examples/Qcodes example with Lakeshore 325.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.html b/_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.html
index 86e22bc1dc3..3dffcd1071f 100644
--- a/_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.html
+++ b/_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Mercury iPS.html b/_notebooks/driver_examples/Qcodes example with Mercury iPS.html
index 021ed610186..0369904d2ec 100644
--- a/_notebooks/driver_examples/Qcodes example with Mercury iPS.html
+++ b/_notebooks/driver_examples/Qcodes example with Mercury iPS.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).html b/_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).html
index 217368135fe..531aff71042 100644
--- a/_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).html
+++ b/_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Newport AG-UC8.html b/_notebooks/driver_examples/Qcodes example with Newport AG-UC8.html
index b192425517b..4decbbe4170 100644
--- a/_notebooks/driver_examples/Qcodes example with Newport AG-UC8.html
+++ b/_notebooks/driver_examples/Qcodes example with Newport AG-UC8.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with QDac.html b/_notebooks/driver_examples/Qcodes example with QDac.html
index c088fc89b89..77fd81f1276 100644
--- a/_notebooks/driver_examples/Qcodes example with QDac.html
+++ b/_notebooks/driver_examples/Qcodes example with QDac.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with QDac_channels.html b/_notebooks/driver_examples/Qcodes example with QDac_channels.html
index ff2e80fad35..85f18f7ba2f 100644
--- a/_notebooks/driver_examples/Qcodes example with QDac_channels.html
+++ b/_notebooks/driver_examples/Qcodes example with QDac_channels.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with R&S HMC8043.html b/_notebooks/driver_examples/Qcodes example with R&S HMC8043.html
index a8b24c574a6..761afc05a6f 100644
--- a/_notebooks/driver_examples/Qcodes example with R&S HMC8043.html
+++ b/_notebooks/driver_examples/Qcodes example with R&S HMC8043.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Rigol DP832.html b/_notebooks/driver_examples/Qcodes example with Rigol DP832.html
index cf802f1a356..1d708d02454 100644
--- a/_notebooks/driver_examples/Qcodes example with Rigol DP832.html
+++ b/_notebooks/driver_examples/Qcodes example with Rigol DP832.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html
index b00faf84a5d..2a9865ff38c 100644
--- a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html
+++ b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html
index c07d28b3308..0a3c6f44446 100644
--- a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html
+++ b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Signal Hound USB-SA124B.html b/_notebooks/driver_examples/Qcodes example with Signal Hound USB-SA124B.html
index 5ab45820372..27b3a00950a 100644
--- a/_notebooks/driver_examples/Qcodes example with Signal Hound USB-SA124B.html
+++ b/_notebooks/driver_examples/Qcodes example with Signal Hound USB-SA124B.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with TPS2012.html b/_notebooks/driver_examples/Qcodes example with TPS2012.html
index 7d9bf43574a..3b945e11ac2 100644
--- a/_notebooks/driver_examples/Qcodes example with TPS2012.html
+++ b/_notebooks/driver_examples/Qcodes example with TPS2012.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html
index 58151d738b2..ea9e15260da 100644
--- a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html
+++ b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.html b/_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.html
index ad3691b70f5..f8cc37913e8 100644
--- a/_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.html
+++ b/_notebooks/driver_examples/Qcodes example with Tektronix AWG70002A.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Triton.html b/_notebooks/driver_examples/Qcodes example with Triton.html
index 1e2a8281fe2..caf4e5d0bc1 100644
--- a/_notebooks/driver_examples/Qcodes example with Triton.html
+++ b/_notebooks/driver_examples/Qcodes example with Triton.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html b/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html
index 5347e32a3e2..5a8f45ae707 100644
--- a/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html
+++ b/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html
@@ -102,7 +102,6 @@
diff --git a/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html b/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html
index ba5ec9f1440..39506cdfca8 100644
--- a/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html
+++ b/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html
@@ -102,7 +102,6 @@
The qcodes driver for the Decadac.
-Each slot on the Deacadac is to be treated as a seperate
-four-channel instrument.
+
The qcodes driver for the Decadac.
Tested with a Decadec firmware revion number 14081 (Decadac 139).
The message strategy is the following: always keep the queue empty, so
that self.visa_handle.ask(XXX) will return the answer to XXX and not
@@ -285,21 +283,20 @@
name (str) – What this instrument is called locally.
-
port (str) – The address of the DAC. For a serial port this is ASRLn::INSTR
-where n is replaced with the address set in the VISA control panel.
-Baud rate and other serial parameters must also be set in the VISA control
-panel.
-
min_val (number) – The minimum value in volts that can be output by the DAC.
+
name – What this instrument is called locally.
+
address – The address of the DAC. For a serial port this
+is ASRLn::INSTR where n is replaced with the address set in the
+VISA control panel. Baud rate and other serial parameters must
+also be set in the VISA control panel.
+
min_val – The minimum value in volts that can be output by the DAC.
This value should correspond to the DAC code 0.
-
max_val (number) – The maximum value in volts that can be output by the DAC.
+
max_val – The maximum value in volts that can be output by the DAC.
This value should correspond to the DAC code 65536.
Ramp all dac channels to a specific voltage at the given rate simultaneously. Note
-that the ramps are not synchronized due to communications time and DAC ramps starting
-as soon as the commands are in.
+
Ramp all dac channels to a specific voltage at the given rate
+simultaneously. Note that the ramps are not synchronized due to
+communications time and DAC ramps starting as soon as the commands are
+in.
diff --git a/objects.inv b/objects.inv
index 506206d2c94..18d07177bf8 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/searchindex.js b/searchindex.js
index c053dbc6947..f3e6ab06676 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/DataSet/Benchmarking","_notebooks/DataSet/Dataset Context Manager","_notebooks/DataSet/Dataset Performance","_notebooks/DataSet/Implementing_doND_using_the_dataset","_notebooks/DataSet/Load old data","_notebooks/DataSet/Offline Plotting Tutorial","_notebooks/DataSet/Paramtypes explained","_notebooks/DataSet/Pedestrian example of subscribing to a DataSet","_notebooks/DataSet/Real_instruments/Example Measurements with Real Instruments","_notebooks/DataSet/The Experiment Container","_notebooks/DataSet/example-creation","_notebooks/DataSet/subscriber json exporter","_notebooks/Datasaving examples","_notebooks/Logfile parsing","_notebooks/Main","_notebooks/Measure without a Loop","_notebooks/Parameters","_notebooks/Scaled Parameter","_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 Rigol DG1062","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Alazar 9360","_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 Lakeshore 325","_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control","_notebooks/driver_examples/Qcodes example with Mercury iPS","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT)","_notebooks/driver_examples/Qcodes example with Newport AG-UC8","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with R&S HMC8043","_notebooks/driver_examples/Qcodes example with Rigol DP832","_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 Signal Hound USB-SA124B","_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+broadbean_example_with_Tektronix_AWG5208","_notebooks/driver_examples/Qcodes_example_with_AMI430","_notebooks/driver_examples/Qcodes_example_with_HP8753D","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope","_notebooks/driver_examples/Qcodes_example_with_Keysight_Network_Analyzer","_notebooks/plotting/auto_color_scale","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.Newport","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.rigol.private","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.rohde_schwarz.private","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.10","changes/0.1.11","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","dataset/dataset_design","dataset/index","dataset/interdependentparams","dataset/introduction","dataset/spec","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:55,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/DataSet/Benchmarking.rst","_notebooks/DataSet/Dataset Context Manager.rst","_notebooks/DataSet/Dataset Performance.rst","_notebooks/DataSet/Implementing_doND_using_the_dataset.rst","_notebooks/DataSet/Load old data.rst","_notebooks/DataSet/Offline Plotting Tutorial.rst","_notebooks/DataSet/Paramtypes explained.rst","_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.rst","_notebooks/DataSet/Real_instruments/Example Measurements with Real Instruments.rst","_notebooks/DataSet/The Experiment Container.rst","_notebooks/DataSet/example-creation.rst","_notebooks/DataSet/subscriber json exporter.rst","_notebooks/Datasaving examples.rst","_notebooks/Logfile parsing.rst","_notebooks/Main.rst","_notebooks/Measure without a Loop.rst","_notebooks/Parameters.rst","_notebooks/Scaled Parameter.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 Rigol DG1062.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 with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Alazar 9360.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 Lakeshore 325.rst","_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.rst","_notebooks/driver_examples/Qcodes example with Mercury iPS.rst","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).rst","_notebooks/driver_examples/Qcodes example with Newport AG-UC8.rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with R&S HMC8043.rst","_notebooks/driver_examples/Qcodes example with Rigol DP832.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 Signal Hound USB-SA124B.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+broadbean_example_with_Tektronix_AWG5208.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","_notebooks/driver_examples/Qcodes_example_with_Keysight_Network_Analyzer.rst","_notebooks/plotting/auto_color_scale.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.Newport.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.rigol.private.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.private.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.10.rst","changes/0.1.11.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","dataset/dataset_design.rst","dataset/index.rst","dataset/interdependentparams.rst","dataset/introduction.rst","dataset/spec.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__:[65,1,1,""]},"qcodes.BreakIf":{__init__:[66,1,1,""]},"qcodes.ChannelList":{__init__:[67,1,1,""]},"qcodes.CombinedParameter":{__init__:[68,1,1,""]},"qcodes.Config":{__init__:[69,1,1,""],config_file_name:[69,2,1,""],current_config:[69,2,1,""],current_config_path:[69,2,1,""],current_schema:[69,2,1,""],cwd_file_name:[69,2,1,""],default_file_name:[69,2,1,""],env_file_name:[69,2,1,""],home_file_name:[69,2,1,""],schema_cwd_file_name:[69,2,1,""],schema_default_file_name:[69,2,1,""],schema_env_file_name:[69,2,1,""],schema_file_name:[69,2,1,""],schema_home_file_name:[69,2,1,""]},"qcodes.DataArray":{__init__:[70,1,1,""]},"qcodes.DataSet":{__init__:[71,1,1,""],background_functions:[71,2,1,""]},"qcodes.DiskIO":{__init__:[72,1,1,""]},"qcodes.FormatLocation":{__init__:[73,1,1,""]},"qcodes.Formatter":{__init__:[74,1,1,""]},"qcodes.Function":{__init__:[75,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[76,1,1,""]},"qcodes.IPInstrument":{__init__:[77,1,1,""]},"qcodes.Instrument":{__init__:[78,1,1,""],functions:[78,2,1,""],name:[78,2,1,""],parameters:[78,2,1,""],submodules:[78,2,1,""]},"qcodes.InstrumentChannel":{__init__:[79,1,1,""],functions:[79,2,1,""],name:[79,2,1,""],parameters:[79,2,1,""]},"qcodes.Loop":{__init__:[80,1,1,""]},"qcodes.ManualParameter":{__init__:[81,1,1,""]},"qcodes.MultiParameter":{__init__:[82,1,1,""]},"qcodes.Parameter":{__init__:[83,1,1,""]},"qcodes.StandardParameter":{__init__:[84,1,1,""]},"qcodes.SweepFixedValues":{__init__:[85,1,1,""]},"qcodes.SweepValues":{__init__:[86,1,1,""]},"qcodes.Task":{__init__:[87,1,1,""]},"qcodes.VisaInstrument":{__init__:[88,1,1,""],visa_handle:[88,2,1,""]},"qcodes.Wait":{__init__:[89,1,1,""]},"qcodes.instrument_drivers":{Advantech:[92,4,0,"-"],AlazarTech:[93,4,0,"-"],HP:[94,4,0,"-"],Harvard:[95,4,0,"-"],Keysight:[96,4,0,"-"],Lakeshore:[97,4,0,"-"],Minicircuits:[98,4,0,"-"],Newport:[99,4,0,"-"],QDev:[100,4,0,"-"],QuTech:[101,4,0,"-"],Spectrum:[102,4,0,"-"],ZI:[104,4,0,"-"],agilent:[105,4,0,"-"],american_magnetics:[106,4,0,"-"],devices:[91,4,0,"-"],ithaco:[107,4,0,"-"],oxford:[108,4,0,"-"],rigol:[109,4,0,"-"],rohde_schwarz:[111,4,0,"-"],signal_hound:[113,4,0,"-"],stanford_research:[114,4,0,"-"],tektronix:[115,4,0,"-"],test:[91,4,0,"-"],weinschel:[116,4,0,"-"],yokogawa:[117,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[92,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[92,0,1,""],DAQNaviException:[92,5,1,""],DAQNaviWarning:[92,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[92,2,1,""],check:[92,1,1,""],close:[92,1,1,""],get_idn:[92,1,1,""],port_count:[92,1,1,""],read_pin:[92,1,1,""],read_port:[92,1,1,""],write_pin:[92,1,1,""],write_port:[92,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9360:[93,4,0,"-"],ATS9870:[93,4,0,"-"],ATS:[93,4,0,"-"],ATS_acquisition_controllers:[93,4,0,"-"],utils:[93,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[93,0,1,""],AlazarTech_ATS:[93,0,1,""],Buffer:[93,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[93,2,1,""],buffer_done_callback:[93,1,1,""],handle_buffer:[93,1,1,""],post_acquire:[93,1,1,""],pre_acquire:[93,1,1,""],pre_start_capture:[93,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[93,1,1,""],channels:[93,2,1,""],clear_buffers:[93,1,1,""],config:[93,1,1,""],dll_path:[93,2,1,""],find_boards:[93,6,1,""],get_board_info:[93,6,1,""],get_idn:[93,1,1,""],get_num_channels:[93,7,1,""],get_sample_rate:[93,1,1,""],signal_to_volt:[93,1,1,""],sync_settings_to_card:[93,1,1,""],syncing:[93,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[93,1,1,""],free_mem:[93,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9360":{AlazarTech_ATS9360:[93,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9360.AlazarTech_ATS9360":{samples_divisor:[93,2,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[93,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[93,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[93,1,1,""],fit:[93,1,1,""],handle_buffer:[93,1,1,""],post_acquire:[93,1,1,""],pre_acquire:[93,1,1,""],pre_start_capture:[93,1,1,""],update_acquisitionkwargs:[93,1,1,""]},"qcodes.instrument_drivers.AlazarTech.utils":{TraceParameter:[93,0,1,""]},"qcodes.instrument_drivers.AlazarTech.utils.TraceParameter":{set_raw:[93,1,1,""],synced_to_card:[93,2,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[94,4,0,"-"],HP8753D:[94,4,0,"-"],HP_83650A:[94,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[94,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[94,0,1,""],HP8753DTrace:[94,0,1,""],HPIntParser:[94,3,1,""],TraceNotReady:[94,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[94,1,1,""],reset:[94,1,1,""],run_N_times:[94,1,1,""],run_continously:[94,1,1,""],startup:[94,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[94,1,1,""],prepare_trace:[94,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[94,0,1,""],parsestr:[94,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[94,1,1,""],print_modstatus:[94,1,1,""],reset:[94,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[95,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[95,5,1,""],DacChannel:[95,0,1,""],DacReader:[95,0,1,""],DacSlot:[95,0,1,""],Decadac:[95,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[95,1,1,""],write:[95,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[95,2,1,""],ask:[95,1,1,""],write:[95,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[95,2,1,""],DAC_SLOT_CLASS:[95,2,1,""],__repr__:[95,1,1,""],_ramp_state:[95,2,1,""],_ramp_time:[95,2,1,""],connect_message:[95,1,1,""],get_idn:[95,1,1,""],ramp_all:[95,1,1,""],set_all:[95,1,1,""],write:[95,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[96,4,0,"-"],KeysightAgilent_33XXX:[96,4,0,"-"],Keysight_33500B:[96,4,0,"-"],Keysight_33500B_channels:[96,4,0,"-"],Keysight_34460A:[96,4,0,"-"],Keysight_34461A:[96,4,0,"-"],Keysight_34465A:[96,4,0,"-"],Keysight_34470A:[96,4,0,"-"],Keysight_B2962A:[96,4,0,"-"],Keysight_E8267D:[96,4,0,"-"],Keysight_N5183B:[96,4,0,"-"],M3201A:[96,4,0,"-"],M3300A:[96,4,0,"-"],N51x1:[96,4,0,"-"],N5230C:[96,4,0,"-"],N5245A:[96,4,0,"-"],N52xx:[96,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[96,0,1,""],InfiniiumChannel:[96,0,1,""],MeasurementSubsystem:[96,0,1,""],RawTrace:[96,0,1,""],TraceNotReady:[96,5,1,""],TraceSetPointsChanged:[96,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[96,1,1,""],prepare_curvedata:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[96,0,1,""],SyncChannel:[96,0,1,""],WaveformGenerator_33XXX:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[96,0,1,""],Keysight_33500B_Channels:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34460A":{Keysight_34460A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34461A":{Keysight_34461A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{Keysight_34465A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34470A":{Keysight_34470A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_B2962A":{B2962A:[96,0,1,""],B2962AChannel:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_B2962A.B2962A":{get_idn:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[96,0,1,""],parse_on_off:[96,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[96,1,1,""],on:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[96,0,1,""],M3300A_DIG:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.N5230C":{N5230C:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.N5245A":{N5245A:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.N52xx":{FormattedSweep:[96,0,1,""],PNABase:[96,0,1,""],PNAPort:[96,0,1,""],PNASweep:[96,0,1,""],PNATrace:[96,0,1,""],PNAxBase:[96,0,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.FormattedSweep":{get_raw:[96,1,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNABase":{averages_off:[96,1,1,""],averages_on:[96,1,1,""],get_options:[96,1,1,""],reset_averages:[96,1,1,""],traces:[96,2,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNASweep":{setpoints:[96,2,1,""],shape:[96,2,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNATrace":{ask:[96,1,1,""],parse_paramstring:[96,7,1,""],run_sweep:[96,1,1,""],write:[96,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_325:[97,4,0,"-"],Model_336:[97,4,0,"-"],Model_372:[97,4,0,"-"],lakeshore_base:[97,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_325":{Model_325:[97,0,1,""],Model_325_Curve:[97,0,1,""],Model_325_Heater:[97,0,1,""],Model_325_Sensor:[97,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325":{upload_curve:[97,1,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325_Curve":{get_data:[97,1,1,""],set_data:[97,1,1,""],temperature_key:[97,2,1,""],valid_sensor_units:[97,2,1,""],validate_datadict:[97,6,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325_Sensor":{curve:[97,2,1,""],decode_sensor_status:[97,1,1,""],sensor_status_codes:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[97,0,1,""],Model_336_Channel:[97,0,1,""],Output_336_CurrentSource:[97,0,1,""],Output_336_VoltageSource:[97,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Model_336":{CHANNEL_CLASS:[97,2,1,""],channel_name_command:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Model_336_Channel":{SENSOR_STATUSES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Output_336_CurrentSource":{MODES:[97,2,1,""],RANGES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Output_336_VoltageSource":{MODES:[97,2,1,""],RANGES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372":{Model_372:[97,0,1,""],Model_372_Channel:[97,0,1,""],Output_372:[97,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Model_372":{CHANNEL_CLASS:[97,2,1,""],channel_name_command:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Model_372_Channel":{SENSOR_STATUSES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Output_372":{MODES:[97,2,1,""],POLARITIES:[97,2,1,""],RANGES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base":{BaseOutput:[97,0,1,""],BaseSensorChannel:[97,0,1,""],LakeshoreBase:[97,0,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.BaseOutput":{MODES:[97,2,1,""],RANGES:[97,2,1,""],set_range_from_temperature:[97,1,1,""],set_setpoint_and_range:[97,1,1,""],wait_until_set_point_reached:[97,1,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.BaseSensorChannel":{SENSOR_STATUSES:[97,2,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.LakeshoreBase":{CHANNEL_CLASS:[97,2,1,""],channel_name_command:[97,2,1,""]},"qcodes.instrument_drivers.Minicircuits":{Base_SPDT:[98,4,0,"-"],RC_SP4T:[98,4,0,"-"],RC_SPDT:[98,4,0,"-"],RUDAT_13G_90:[98,4,0,"-"],USBHIDMixin:[98,4,0,"-"],USB_SPDT:[98,4,0,"-"]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT":{SPDT_Base:[98,0,1,""],SwitchChannelBase:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT.SPDT_Base":{CHANNEL_CLASS:[98,2,1,""],add_channels:[98,1,1,""],all:[98,1,1,""],get_number_of_channels:[98,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T":{MC_channel:[98,0,1,""],RC_SP4T:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T.RC_SP4T":{ask:[98,1,1,""],get_idn:[98,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT":{MC_channel:[98,0,1,""],RC_SPDT:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT.RC_SPDT":{ask:[98,1,1,""],get_idn:[98,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90":{RUDAT_13G_90:[98,0,1,""],RUDAT_13G_90_USB:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90.RUDAT_13G_90":{get_idn:[98,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90.RUDAT_13G_90_USB":{product_id:[98,2,1,""],vendor_id:[98,2,1,""]},"qcodes.instrument_drivers.Minicircuits.USBHIDMixin":{MiniCircuitsHIDMixin:[98,0,1,""],USBHIDMixin:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USBHIDMixin.USBHIDMixin":{ask_raw:[98,1,1,""],close:[98,1,1,""],enumerate_devices:[98,6,1,""],product_id:[98,2,1,""],vendor_id:[98,2,1,""],write_raw:[98,1,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT":{SwitchChannelUSB:[98,0,1,""],USB_SPDT:[98,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT.USB_SPDT":{CHANNEL_CLASS:[98,2,1,""],PATH_TO_DRIVER:[98,2,1,""],get_idn:[98,1,1,""]},"qcodes.instrument_drivers.Newport":{AG_UC8:[99,4,0,"-"]},"qcodes.instrument_drivers.Newport.AG_UC8":{Newport_AG_UC8:[99,0,1,""],Newport_AG_UC8_Axis:[99,0,1,""],Newport_AG_UC8_Channel:[99,0,1,""],Newport_AG_UC8_ErrorCode:[99,5,1,""],Newport_AG_UC8_Exception:[99,5,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8":{ask_channel:[99,1,1,""],command_delay:[99,2,1,""],default_timeout:[99,2,1,""],get_idn:[99,1,1,""],get_last_error:[99,1,1,""],reset:[99,1,1,""],reset_delay:[99,2,1,""],slow_command_timeout:[99,2,1,""],write:[99,1,1,""],write_channel:[99,1,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8_Axis":{SPEED_TABLE:[99,2,1,""],jog:[99,1,1,""],measure_position:[99,1,1,""],move_abs:[99,1,1,""],move_limit:[99,1,1,""],move_rel:[99,1,1,""],stop:[99,1,1,""],zero_position:[99,1,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8_Channel":{ask:[99,1,1,""],write:[99,1,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[100,4,0,"-"],QDac_channels:[100,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[100,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[100,1,1,""],max_status_age:[100,2,1,""],print_overview:[100,1,1,""],printslopes:[100,1,1,""],read:[100,1,1,""],read_state:[100,1,1,""],snapshot_base:[100,1,1,""],voltage_range_status:[100,2,1,""],write:[100,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[100,0,1,""],QDacChannel:[100,0,1,""],QDacMultiChannelParameter:[100,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[100,1,1,""],max_status_age:[100,2,1,""],print_overview:[100,1,1,""],printslopes:[100,1,1,""],read:[100,1,1,""],read_state:[100,1,1,""],snapshot_base:[100,1,1,""],voltage_range_status:[100,2,1,""],write:[100,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[100,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[100,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[101,4,0,"-"],D5a:[101,4,0,"-"],F1d:[101,4,0,"-"],IVVI:[101,4,0,"-"],S5i:[101,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[101,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[101,1,1,""],get_filter_value:[101,1,1,""],get_mode:[101,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[101,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[101,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[101,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[101,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[101,2,1,""],Halfrange:[101,2,1,""],adjust_parameter_validator:[101,1,1,""],ask:[101,1,1,""],get_all:[101,1,1,""],get_idn:[101,1,1,""],get_pol_dac:[101,1,1,""],read:[101,1,1,""],round_dac:[101,1,1,""],set_dacs_zero:[101,1,1,""],set_parameter_bounds:[101,1,1,""],set_pol_dacrack:[101,1,1,""],write:[101,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[101,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[103,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[103,4,0,"-"],spcerr:[103,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[103,3,1,""],GIGA_B:[103,3,1,""],KILO:[103,3,1,""],KILO_B:[103,3,1,""],MEGA:[103,3,1,""],MEGA_B:[103,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[104,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[104,0,1,""],Scope:[104,0,1,""],Sweep:[104,0,1,""],ZIUHFLI:[104,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[104,1,1,""],get:[104,1,1,""],names:[104,2,1,""],post_trigger_actions:[104,2,1,""],prepare_scope:[104,1,1,""],setpoint_names:[104,2,1,""],setpoints:[104,2,1,""],shapes:[104,2,1,""],units:[104,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[104,1,1,""],get:[104,1,1,""],names:[104,2,1,""],setpoint_names:[104,2,1,""],setpoints:[104,2,1,""],shapes:[104,2,1,""],units:[104,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[104,7,1,""],add_signal_to_sweeper:[104,1,1,""],close:[104,1,1,""],print_sweeper_settings:[104,1,1,""],remove_signal_from_sweeper:[104,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[105,4,0,"-"],E8267C:[105,4,0,"-"],E8527D:[105,4,0,"-"],HP33210A:[105,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[105,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[105,1,1,""],display_clear:[105,1,1,""],init_measurement:[105,1,1,""],reset:[105,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[105,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[105,7,1,""],rad_to_deg:[105,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[105,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[105,1,1,""],off:[105,1,1,""],on:[105,1,1,""],parse_on_off:[105,1,1,""],rad_to_deg:[105,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[105,0,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[106,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[106,0,1,""],AMI430Exception:[106,5,1,""],AMI430SwitchHeater:[106,0,1,""],AMI430Warning:[106,5,1,""],AMI430_3D:[106,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{ramp_to:[106,1,1,""],set_field:[106,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430SwitchHeater":{check_enabled:[106,1,1,""],check_state:[106,1,1,""],disable:[106,1,1,""],enable:[106,1,1,""],off:[106,1,1,""],on:[106,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[91,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[91,1,1,""],get_raw:[91,1,1,""],set_raw:[91,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[107,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[107,0,1,""],Ithaco_1211:[107,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[107,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[107,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[108,4,0,"-"],IPS120:[108,4,0,"-"],MercuryiPS_VISA:[108,4,0,"-"],kelvinox:[108,4,0,"-"],mercuryiPS:[108,4,0,"-"],triton:[108,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[108,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[108,1,1,""],get_all:[108,1,1,""],get_idn:[108,1,1,""],local:[108,1,1,""],remote:[108,1,1,""],set_remote_status:[108,1,1,""],set_to_fast:[108,1,1,""],set_to_slow:[108,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[108,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[108,1,1,""],examine:[108,1,1,""],get_all:[108,1,1,""],get_changed:[108,1,1,""],get_idn:[108,1,1,""],heater_off:[108,1,1,""],heater_on:[108,1,1,""],hold:[108,1,1,""],identify:[108,1,1,""],leave_persistent_mode:[108,1,1,""],local:[108,1,1,""],remote:[108,1,1,""],run_to_field:[108,1,1,""],run_to_field_wait:[108,1,1,""],set_persistent:[108,1,1,""],to_setpoint:[108,1,1,""],to_zero:[108,1,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA":{MercurySlavePS:[108,0,1,""],MercuryiPS:[108,0,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA.MercurySlavePS":{ramp_to_target:[108,1,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA.MercuryiPS":{ask:[108,1,1,""],ramp:[108,1,1,""],set_new_field_limits:[108,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[108,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[108,1,1,""],get_all:[108,1,1,""],get_idn:[108,1,1,""],identify:[108,1,1,""],local:[108,1,1,""],remote:[108,1,1,""],rotate_Nvalve:[108,1,1,""],set_mix_chamber_heater_mode:[108,1,1,""],set_mix_chamber_heater_power_range:[108,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[108,0,1,""],MercuryiPSArray:[108,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[108,1,1,""],rtos:[108,1,1,""],to_zero:[108,1,1,""],write:[108,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[108,1,1,""],set:[108,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[108,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[108,1,1,""],set_B:[108,1,1,""]},"qcodes.instrument_drivers.rigol":{"private":[110,4,0,"-"],DG1062:[109,4,0,"-"],DG4000:[109,4,0,"-"],DP821:[109,4,0,"-"],DP831:[109,4,0,"-"],DP832:[109,4,0,"-"],DS4000:[109,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG1062":{DG1062:[109,0,1,""],DG1062Burst:[109,0,1,""],DG1062Channel:[109,0,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062":{waveforms:[109,2,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062Burst":{trigger:[109,1,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062Channel":{apply:[109,1,1,""],current_waveform:[109,1,1,""],max_impedance:[109,2,1,""],min_impedance:[109,2,1,""],waveform_params:[109,2,1,""],waveforms:[109,2,1,""]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[109,0,1,""],clean_string:[109,3,1,""],is_number:[109,3,1,""],parse_multiple_outputs:[109,3,1,""],parse_single_output:[109,3,1,""],parse_string_output:[109,3,1,""]},"qcodes.instrument_drivers.rigol.DP821":{RigolDP821:[109,0,1,""]},"qcodes.instrument_drivers.rigol.DP831":{RigolDP831:[109,0,1,""]},"qcodes.instrument_drivers.rigol.DP832":{RigolDP832:[109,0,1,""]},"qcodes.instrument_drivers.rigol.DS4000":{DS4000:[109,0,1,""],RigolDS4000Channel:[109,0,1,""],ScopeArray:[109,0,1,""],TraceNotReady:[109,5,1,""]},"qcodes.instrument_drivers.rigol.DS4000.ScopeArray":{get_preamble:[109,1,1,""],get_raw:[109,1,1,""],prepare_curvedata:[109,1,1,""]},"qcodes.instrument_drivers.rigol.private":{DP8xx:[110,4,0,"-"]},"qcodes.instrument_drivers.rigol.private.DP8xx":{RigolDP8xxChannel:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{"private":[112,4,0,"-"],HMC8041:[111,4,0,"-"],HMC8042:[111,4,0,"-"],HMC8043:[111,4,0,"-"],RTE1000:[111,4,0,"-"],RTO1000:[111,4,0,"-"],SGS100A:[111,4,0,"-"],SMR40:[111,4,0,"-"],ZNB20:[111,4,0,"-"],ZNB:[111,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.HMC8041":{RohdeSchwarzHMC8041:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.HMC8042":{RohdeSchwarzHMC8042:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.HMC8043":{RohdeSchwarzHMC8043:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[111,0,1,""],ScopeChannel:[111,0,1,""],ScopeTrace:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.RTO1000":{run_cont:[111,1,1,""],run_single:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get_raw:[111,1,1,""],prepare_trace:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{get_parser_on_off:[111,1,1,""],off:[111,1,1,""],on:[111,1,1,""],set_parser_on_off:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[111,1,1,""],do_get_power:[111,1,1,""],do_get_pulse_delay:[111,1,1,""],do_get_status:[111,1,1,""],do_get_status_of_ALC:[111,1,1,""],do_get_status_of_modulation:[111,1,1,""],do_set_frequency:[111,1,1,""],do_set_power:[111,1,1,""],do_set_pulse_delay:[111,1,1,""],do_set_status:[111,1,1,""],do_set_status_of_ALC:[111,1,1,""],do_set_status_of_modulation:[111,1,1,""],get_all:[111,1,1,""],off:[111,1,1,""],off_modulation:[111,1,1,""],on:[111,1,1,""],on_modulation:[111,1,1,""],reset:[111,1,1,""],set_ext_trig:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[111,0,1,""],FrequencySweepMagPhase:[111,0,1,""],ZNB:[111,0,1,""],ZNBChannel:[111,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[111,1,1,""],get_raw:[111,1,1,""],set_sweep:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get_raw:[111,1,1,""],set_sweep:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{CHANNEL_CLASS:[111,2,1,""],add_channel:[111,1,1,""],clear_channels:[111,1,1,""],display_grid:[111,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.private":{HMC804x:[112,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.private.HMC804x":{RohdeSchwarzHMC804xChannel:[112,0,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[113,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{Constants:[113,0,1,""],ExternalRefParameter:[113,0,1,""],FrequencySweep:[113,0,1,""],ScaleParameter:[113,0,1,""],SignalHound_USB_SA124B:[113,0,1,""],SweepTraceParameter:[113,0,1,""],TraceParameter:[113,0,1,""],saStatus:[113,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.Constants":{SA_MAX_DEVICES:[113,2,1,""],TG_THRU_0DB:[113,2,1,""],TG_THRU_20DB:[113,2,1,""],sa124_MAX_FREQ:[113,2,1,""],sa124_MIN_FREQ:[113,2,1,""],sa44_MAX_FREQ:[113,2,1,""],sa44_MIN_FREQ:[113,2,1,""],saDeviceTypeNone:[113,2,1,""],saDeviceTypeSA124A:[113,2,1,""],saDeviceTypeSA124B:[113,2,1,""],saDeviceTypeSA44:[113,2,1,""],saDeviceTypeSA44B:[113,2,1,""],sa_AUDIO:[113,2,1,""],sa_AUDIO_AM:[113,2,1,""],sa_AUDIO_CW:[113,2,1,""],sa_AUDIO_FM:[113,2,1,""],sa_AUDIO_LSB:[113,2,1,""],sa_AUDIO_USB:[113,2,1,""],sa_AUTO_ATTEN:[113,2,1,""],sa_AUTO_GAIN:[113,2,1,""],sa_AVERAGE:[113,2,1,""],sa_BYPASS:[113,2,1,""],sa_IDLE:[113,2,1,""],sa_IQ:[113,2,1,""],sa_IQ_SAMPLE_RATE:[113,2,1,""],sa_LIN_FULL_SCALE:[113,2,1,""],sa_LIN_SCALE:[113,2,1,""],sa_LOG_FULL_SCALE:[113,2,1,""],sa_LOG_SCALE:[113,2,1,""],sa_LOG_UNITS:[113,2,1,""],sa_MAX_ATTEN:[113,2,1,""],sa_MAX_GAIN:[113,2,1,""],sa_MAX_IQ_DECIMATION:[113,2,1,""],sa_MAX_RBW:[113,2,1,""],sa_MAX_REF:[113,2,1,""],sa_MAX_RT_RBW:[113,2,1,""],sa_MIN_IQ_BANDWIDTH:[113,2,1,""],sa_MIN_MAX:[113,2,1,""],sa_MIN_RBW:[113,2,1,""],sa_MIN_RT_RBW:[113,2,1,""],sa_MIN_SPAN:[113,2,1,""],sa_POWER_UNITS:[113,2,1,""],sa_REAL_TIME:[113,2,1,""],sa_REF_EXTERNAL_IN:[113,2,1,""],sa_REF_INTERNAL_OUT:[113,2,1,""],sa_REF_UNUSED:[113,2,1,""],sa_SWEEPING:[113,2,1,""],sa_TG_SWEEP:[113,2,1,""],sa_VOLT_UNITS:[113,2,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.ExternalRefParameter":{set_raw:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.FrequencySweep":{get:[113,1,1,""],get_raw:[113,1,1,""],set_sweep:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.ScaleParameter":{set_raw:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[113,1,1,""],abort:[113,1,1,""],check_for_error:[113,7,1,""],close:[113,1,1,""],configure:[113,1,1,""],dll_path:[113,2,1,""],get_idn:[113,1,1,""],openDevice:[113,1,1,""],preset:[113,1,1,""],sync_parameters:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SweepTraceParameter":{set_raw:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.TraceParameter":{set_raw:[113,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.saStatus":{saBandwidthClamped:[113,2,1,""],saBandwidthErr:[113,2,1,""],saCompressionWarning:[113,2,1,""],saDeviceNotConfiguredErr:[113,2,1,""],saDeviceNotFoundErr:[113,2,1,""],saDeviceNotIdleErr:[113,2,1,""],saDeviceNotOpenErr:[113,2,1,""],saExternalReferenceNotFound:[113,2,1,""],saFrequencyRangeErr:[113,2,1,""],saInternetErr:[113,2,1,""],saInvalidDetectorErr:[113,2,1,""],saInvalidDeviceErr:[113,2,1,""],saInvalidModeErr:[113,2,1,""],saInvalidParameterErr:[113,2,1,""],saInvalidScaleErr:[113,2,1,""],saNoCorrections:[113,2,1,""],saNoError:[113,2,1,""],saNotConfiguredErr:[113,2,1,""],saNullPtrErr:[113,2,1,""],saOvenColdErr:[113,2,1,""],saParameterClamped:[113,2,1,""],saTooManyDevicesErr:[113,2,1,""],saTrackingGeneratorNotFound:[113,2,1,""],saUSBCommErr:[113,2,1,""],saUnknownErr:[113,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[114,4,0,"-"],SIM928:[114,4,0,"-"],SR560:[114,4,0,"-"],SR830:[114,4,0,"-"],SR860:[114,4,0,"-"],SR865:[114,4,0,"-"],SR865A:[114,4,0,"-"],SR86x:[114,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[114,1,1,""],byte_to_bits:[114,7,1,""],check_module_errors:[114,1,1,""],find_modules:[114,1,1,""],get_module_idn:[114,1,1,""],get_module_status:[114,1,1,""],get_voltage:[114,1,1,""],reset_module:[114,1,1,""],set_smooth:[114,1,1,""],set_voltage:[114,1,1,""],write_module:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[114,0,1,""],VoltageParameter:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[114,0,1,""],SR830:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get_raw:[114,1,1,""],prepare_buffer_readout:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865A":{SR865A:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[114,0,1,""],SR86xBuffer:[114,0,1,""],SR86xBufferReadout:[114,0,1,""],SR86xDataChannel:[114,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86x":{PARAMETER_NAMES:[114,2,1,""],get_data_channels_dict:[114,1,1,""],get_data_channels_parameters:[114,1,1,""],get_data_channels_values:[114,1,1,""],get_values:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_one_sample_per_trigger:[114,1,1,""],capture_samples:[114,1,1,""],capture_samples_after_trigger:[114,1,1,""],get_capture_data:[114,1,1,""],set_capture_length_to_fit_samples:[114,1,1,""],set_capture_rate_to_maximum:[114,1,1,""],snapshot_base:[114,1,1,""],start_capture:[114,1,1,""],stop_capture:[114,1,1,""],wait_until_samples_captured:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[114,1,1,""],prepare_readout:[114,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xDataChannel":{cmd_id:[114,2,1,""],cmd_id_name:[114,2,1,""],color:[114,2,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[115,4,0,"-"],AWG5200:[115,4,0,"-"],AWG5208:[115,4,0,"-"],AWG520:[115,4,0,"-"],AWG70000A:[115,4,0,"-"],AWG70002A:[115,4,0,"-"],AWGFileParser:[115,4,0,"-"],Keithley_2000:[115,4,0,"-"],Keithley_2400:[115,4,0,"-"],Keithley_2600:[115,4,0,"-"],Keithley_2600_channels:[115,4,0,"-"],Keithley_2700:[115,4,0,"-"],TPS2012:[115,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[115,0,1,""],parsestr:[115,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[115,2,1,""],AWG_FILE_FORMAT_HEAD:[115,2,1,""],all_channels_off:[115,1,1,""],all_channels_on:[115,1,1,""],change_folder:[115,1,1,""],clear_message_queue:[115,1,1,""],create_and_goto_dir:[115,1,1,""],delete_all_waveforms_from_list:[115,1,1,""],force_event:[115,1,1,""],force_trigger:[115,1,1,""],force_trigger_event:[115,1,1,""],generate_awg_file:[115,1,1,""],generate_channel_cfg:[115,1,1,""],generate_sequence_cfg:[115,1,1,""],get_all:[115,1,1,""],get_current_folder_name:[115,1,1,""],get_error:[115,1,1,""],get_filenames:[115,1,1,""],get_folder_contents:[115,1,1,""],get_sq_mode:[115,1,1,""],get_sqel_loopcnt:[115,1,1,""],get_sqel_trigger_wait:[115,1,1,""],get_sqel_waveform:[115,1,1,""],get_state:[115,1,1,""],goto_root:[115,1,1,""],is_awg_ready:[115,1,1,""],load_awg_file:[115,1,1,""],make_and_save_awg_file:[115,1,1,""],make_awg_file:[115,1,1,""],make_send_and_load_awg_file:[115,1,1,""],newlinestripper:[115,1,1,""],pack_waveform:[115,1,1,""],run:[115,1,1,""],send_DC_pulse:[115,1,1,""],send_awg_file:[115,1,1,""],send_waveform_to_list:[115,1,1,""],set_current_folder_name:[115,1,1,""],set_sqel_event_jump_target_index:[115,1,1,""],set_sqel_event_jump_type:[115,1,1,""],set_sqel_event_target_index:[115,1,1,""],set_sqel_goto_state:[115,1,1,""],set_sqel_goto_target_index:[115,1,1,""],set_sqel_loopcnt:[115,1,1,""],set_sqel_loopcnt_to_inf:[115,1,1,""],set_sqel_trigger_wait:[115,1,1,""],set_sqel_waveform:[115,1,1,""],start:[115,1,1,""],stop:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[115,1,1,""],clear_waveforms:[115,1,1,""],delete_all_waveforms_from_list:[115,1,1,""],force_logicjump:[115,1,1,""],force_trigger:[115,1,1,""],get_all:[115,1,1,""],get_current_folder_name:[115,1,1,""],get_filenames:[115,1,1,""],get_folder_contents:[115,1,1,""],get_jumpmode:[115,1,1,""],get_state:[115,1,1,""],goto_root:[115,1,1,""],load_and_set_sequence:[115,1,1,""],make_directory:[115,1,1,""],resend_waveform:[115,1,1,""],return_self:[115,1,1,""],send_pattern:[115,1,1,""],send_sequence2:[115,1,1,""],send_sequence:[115,1,1,""],send_waveform:[115,1,1,""],set_current_folder_name:[115,1,1,""],set_jumpmode:[115,1,1,""],set_sequence:[115,1,1,""],set_setup_filename:[115,1,1,""],start:[115,1,1,""],stop:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5208":{AWG5208:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A":{AWG70000A:[115,0,1,""],AWGChannel:[115,0,1,""],SRValidator:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWG70000A":{clearSequenceList:[115,1,1,""],clearWaveformList:[115,1,1,""],delete_sequence_from_list:[115,1,1,""],force_triggerA:[115,1,1,""],force_triggerB:[115,1,1,""],loadSEQXFile:[115,1,1,""],loadWFMXFile:[115,1,1,""],makeSEQXFile:[115,7,1,""],makeWFMXFile:[115,7,1,""],make_SEQX_from_forged_sequence:[115,7,1,""],play:[115,1,1,""],sendSEQXFile:[115,1,1,""],sendWFMXFile:[115,1,1,""],sequenceList:[115,2,1,""],stop:[115,1,1,""],wait_for_operation_to_complete:[115,1,1,""],waveformList:[115,2,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWGChannel":{setSequenceTrack:[115,1,1,""],setWaveform:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.SRValidator":{validate:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70002A":{AWG70002A:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[115,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[115,0,1,""],parse_output_bool:[115,3,1,""],parse_output_string:[115,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[115,1,1,""],display_clear:[115,1,1,""],display_normal:[115,1,1,""],exit_key:[115,1,1,""],get_idn:[115,1,1,""],reset:[115,1,1,""],write:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[115,0,1,""],Keithley_2600:[115,0,1,""],LuaSweepParameter:[115,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[115,1,1,""],reset:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[115,1,1,""],display_clear:[115,1,1,""],display_normal:[115,1,1,""],exit_key:[115,1,1,""],get_idn:[115,1,1,""],reset:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[115,1,1,""],prepareSweep:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[115,0,1,""],bool_to_str:[115,3,1,""],parsebool:[115,3,1,""],parseint:[115,3,1,""],parsestr:[115,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[115,1,1,""],reset:[115,1,1,""],set_defaults:[115,1,1,""],set_mode:[115,1,1,""],set_mode_volt_dc:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[115,0,1,""],TPS2012:[115,0,1,""],TPS2012Channel:[115,0,1,""],TraceNotReady:[115,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[115,1,1,""],get:[115,1,1,""],prepare_curvedata:[115,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[115,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[91,0,1,""],test_instrument:[91,3,1,""],test_instruments:[91,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[91,2,1,""],setUpClass:[91,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[116,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[116,0,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[117,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[117,0,1,""],GS200Exception:[117,5,1,""],GS200_Monitor:[117,0,1,""],float_round:[117,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[117,1,1,""],on:[117,1,1,""],ramp_current:[117,1,1,""],ramp_voltage:[117,1,1,""],state:[117,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[117,1,1,""],on:[117,1,1,""],state:[117,1,1,""],update_measurement_enabled:[117,1,1,""]},"qcodes.measure":{Measure:[119,0,1,""]},"qcodes.measure.Measure":{__init__:[119,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[121,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[121,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[122,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[122,1,1,""]},"qcodes.station":{Station:[123,0,1,""]},"qcodes.station.Station":{"default":[123,2,1,""],__init__:[123,1,1,""],delegate_attr_dicts:[123,2,1,""]},"qcodes.utils":{command:[124,4,0,"-"],deferred_operations:[125,4,0,"-"],helpers:[126,4,0,"-"],metadata:[127,4,0,"-"],validators:[128,4,0,"-"]},qcodes:{ArrayParameter:[65,0,1,""],BreakIf:[66,0,1,""],ChannelList:[67,0,1,""],CombinedParameter:[68,0,1,""],Config:[69,0,1,""],DataArray:[70,0,1,""],DataSet:[71,0,1,""],DiskIO:[72,0,1,""],FormatLocation:[73,0,1,""],Formatter:[74,0,1,""],Function:[75,0,1,""],GNUPlotFormat:[76,0,1,""],IPInstrument:[77,0,1,""],Instrument:[78,0,1,""],InstrumentChannel:[79,0,1,""],Loop:[80,0,1,""],ManualParameter:[81,0,1,""],MultiParameter:[82,0,1,""],Parameter:[83,0,1,""],StandardParameter:[84,0,1,""],SweepFixedValues:[85,0,1,""],SweepValues:[86,0,1,""],Task:[87,0,1,""],VisaInstrument:[88,0,1,""],Wait:[89,0,1,""],combine:[90,3,1,""],instrument_drivers:[91,4,0,"-"],load_data:[118,3,1,""],new_data:[120,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":39,"001_":[24,39],"001_13":73,"001_testsweep_11":25,"001_testsweep_15":9,"002_2d_test_15":9,"00370000e":38,"003_":62,"003_alazartest_15":36,"00496533e":7,"005_unicorn_2017":23,"006_":[23,53],"007_":[50,53],"008_":50,"009_testsweep_15":31,"01084000e":38,"011_":[50,58,61],"011_randomnumber_69_2017":23,"012_":[50,58],"012_hp8753d_tutorial_14":61,"013_":33,"013_n_1000_setget_11":28,"014_n_1000_setget_11":28,"015_n_1000_setget_11":28,"016_n_1000_setget_11":28,"01763000e":38,"017_n_1000_setget_11":28,"018_n_1000_setget_11":28,"018_testsweep_12":26,"019_n_1000_setget_11":28,"019_testsweep_12":26,"01s":34,"020_n_1000_setget_11":28,"020_testsweep_12":26,"021_testsweep_12":26,"02344737e":7,"025_":31,"026_":31,"02788559e":7,"027_":31,"02825313e":7,"02898276e":7,"028_":31,"029_":31,"02s":51,"030_":31,"031_":31,"032_":31,"033_":31,"034_":31,"035_":31,"036_":31,"03962764e":7,"03d":[30,54],"03s":52,"04900108e":7,"04s":62,"05023045e":7,"05743185e":7,"06081697e":7,"06s":[4,26],"07005991e":7,"073_":51,"076_":51,"076_n_100_setget_16":27,"077_":51,"077_n_100_setget_16":27,"078_":51,"078_n_100_setget_16":27,"079_":51,"079_n_100_setget_16":27,"07s":31,"080_":51,"080_n_100_setget_16":27,"081_n_100_setget_16":27,"082_n_100_setget_16":27,"083_":51,"083_n_100_setget_16":27,"084_":[27,51],"085_":[27,51],"086_":[27,51],"087_":[27,51],"088_":[27,51],"089_":[27,51],"08s":[13,57],"090_":[27,51],"091_":27,"092_n_1000_setget_16":27,"093_n_1000_setget_16":27,"094_n_1000_setget_16":27,"095_n_1000_setget_16":27,"096_n_1000_setget_16":27,"097_n_1000_setget_16":27,"098_n_1000_setget_16":27,"0994e":39,"099_n_1000_setget_16":27,"09s":39,"0x111defb70":30,"0x1191c2e10":18,"0x19110a8f390":36,"0x1ba0bf174a8":63,"0x1ba0d6aca58":63,"0x1ba0d6cab00":63,"0x1ba0e6fe668":63,"0x1ba0e8b3470":63,"0x1ba0e976a90":63,"0x1ba0e9b90f0":63,"0x1c10ee73a58":31,"0x1d551d8c2e8":52,"0x1d552f82780":52,"0x278d4c91780":58,"0x7ed0668":38,"0x7f272b880d30":15,"0x7f27398d7a20":15,"0x7f8d309e9400":64,"0x7f8d30c3e080":64,"0x7f920ec0eef0":156,"0x7fb8e88e1358":6,"0x7fb8e962a7b8":6,"0x7fb8e966e908":6,"0x7fb8e9825320":6,"0x7fc4872082e8":10,"0x7fd834e99ea0":0,"1000k44":50,"100\u03bca":[42,97],"100_":27,"100e":27,"100e3":[50,51,61],"100e6":63,"100k":62,"100khz":62,"100ma":[42,97],"100x100":26,"101_":27,"102_":27,"103_":27,"104_":27,"105_":27,"106_":27,"107_":27,"108_n_100_setget_16":27,"109_n_100_setget_16":27,"10e":[13,34,53,57,58,62],"10e3":[13,57],"10e6":[36,52,55,58],"10kohm":57,"10ma":[42,97],"10mhz":113,"10s":43,"10th":5,"10v":[57,83],"110_n_100_setget_16":27,"111_n_100_setget_16":27,"112_n_100_setget_16":27,"113_n_100_setget_16":27,"11432660e":7,"114_n_100_setget_16":27,"115_n_100_setget_16":27,"116_":27,"117_":27,"118_":27,"119_":27,"11s":40,"1206e":39,"120_":27,"120e":59,"12173502e":7,"121_":27,"122_":27,"123_":27,"124_":27,"125_":27,"126_":27,"127_":27,"12855890e":7,"128_":27,"129_":27,"12e9":3,"12f":3,"12s":[34,49],"130_":27,"131_":27,"132_":27,"133_":27,"134_":27,"135_":27,"136_":27,"137_":27,"138_":27,"139_":27,"13_testsweep":0,"13_testsweep_002":0,"140_":27,"141_":27,"142_":27,"143_":27,"144_":27,"145_":27,"1462531069e":34,"146_":27,"147_":27,"148_":27,"149_":27,"14e":22,"14s":28,"150_":27,"151_":27,"152_":27,"153_":27,"154_":27,"155_":27,"156_":27,"157_":27,"158_":27,"15913323e":7,"159_":27,"15_11":23,"15_hammer_tim":23,"15_rainbow_test":73,"15e3":13,"15g":76,"15s":[13,27,41,51],"160_":27,"161_":27,"162_":27,"163_":27,"164_":27,"165_":27,"166_":27,"167_":27,"168_":27,"1690581181e":34,"169_":27,"16bit":62,"16ma":[42,97],"16s":[33,51],"170_":27,"171_":27,"172_":27,"173_":27,"174_":27,"175_":27,"176_":27,"177_":27,"178_":27,"179_":27,"180_":27,"1813903572e":34,"181_":27,"182_":27,"183_":27,"184_":27,"185_":27,"186_":27,"187_":27,"188_":27,"189_":27,"18s":32,"190_":27,"191_":27,"192_":27,"193_":27,"194_":27,"195_":27,"196_":27,"197_n_1000_setget_16":27,"198_n_1000_setget_16":27,"199_n_1000_setget_16":27,"19s":[42,44],"1ct":53,"1e3":[10,13,30,32,40,58,63,109],"1e5":59,"1e6":[22,51,58],"1e8":22,"1e9":[30,50,52,55,59,61,63],"1khz":63,"1ma":[42,57,97],"1ms":152,"1sp4t":141,"1vpp":62,"20000000e":54,"200_n_1000_setget_16":27,"200e":59,"200e3":51,"200uw":108,"2012b":[53,115],"201_n_1000_setget_16":27,"202_n_1000_setget_16":27,"203_n_1000_setget_16":27,"204223103e":34,"204_n_1000_setget_16":27,"205_":27,"206_":27,"207_":27,"208_":27,"209_":27,"20e":[58,59],"20ma":92,"20mw":108,"20uw":108,"210_":27,"211_":27,"212_":27,"2155235747e":34,"21759686e":7,"21s":63,"23160746e":58,"23410455e":7,"23s":[50,61],"24196735e":58,"25026285e":7,"25e":[47,53,55],"25s":34,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"26146302e":7,"2614b":[3,27,39,115],"2635b":3,"2636b":3,"26794927e":7,"27747484e":7,"28571784e":7,"2d_test":25,"2e3":40,"2e5":59,"2min":51,"2mw":108,"2uw":108,"30321600e":7,"30s":59,"31528913e":7,"31567171e":7,"316\u03bca":[42,97],"3243408148e":34,"32c1770":13,"32s":29,"33500b":[96,137,152],"33522b":[13,40],"33750237e":7,"33813876e":7,"33xxx":96,"34400a":152,"34411a":152,"34460a":96,"34461a":96,"34465a":[31,96,137,139,152],"34470a":96,"34857386e":7,"35727306e":7,"36287421e":7,"36836129e":7,"36s":51,"37713681e":7,"38726120e":7,"39759855e":58,"3e2":13,"3x2":21,"40dbm":63,"40e":59,"40s":30,"41316159e":7,"42637000e":38,"42676039e":7,"42795850e":7,"43604888e":7,"44367806e":7,"44715119e":7,"44852619e":7,"44860968e":7,"44s":[48,53],"44xx":136,"4647376645e":34,"46669554e":7,"46757314e":7,"47595370e":7,"48290824e":7,"48712767e":7,"49025660e":7,"4port":51,"4spdt":[44,141],"500e":34,"50e":[40,53],"51432195e":7,"51454935e":7,"51888972e":7,"52608e":46,"53299410e":7,"54972e":39,"54s":55,"56455843e":7,"56755033e":7,"56s":51,"57s":60,"58383975e":7,"5e3":13,"5e4":59,"5e9":51,"5gb":36,"60398841e":7,"60s":60,"61987094e":7,"6225968125e":34,"62s":60,"63108732e":7,"64379762e":7,"65644550e":7,"69014000e":38,"6955e":39,"696416459e":34,"6\u03bca":[42,97],"6a5acd":54,"6e6":51,"6ma":[42,97],"70073766e":7,"70771203e":7,"72309808e":7,"72475646e":7,"72730276e":7,"73254409e":7,"77863505e":7,"77999595e":7,"78813376e":7,"79034118e":7,"79406227e":7,"79614127e":7,"79631774e":7,"79785978e":7,"80875678e":7,"8133a":[94,137],"82405032e":7,"83650a":137,"84002330e":7,"844e846b99a2":31,"85120204e":7,"85265204e":7,"85575793e":7,"85896712e":7,"86097271e":7,"8753d":[61,94],"87880309e":7,"87903662e":7,"89223955e":7,"91s":13,"91t928108":57,"92153706e":7,"92254179e":7,"9253033a050c":43,"92739719e":7,"93688061e":7,"93s":26,"94376560e":7,"94554524e":7,"9464794099e":34,"94851000e":38,"95535000e":38,"96216000e":38,"96228281e":7,"96760203e":7,"96889979e":7,"96910635e":7,"9734803775e":34,"97712633e":7,"98268729e":7,"98391450e":7,"98941000e":38,"99133550e":7,"99158193e":7,"99618000e":38,"99664273e":7,"9e3":51,"9voltag":49,"\u03bca":[46,47],"abstract":[10,93,159],"boolean":[43,101,108,115,139,156],"break":[3,4,6,25,66,114,115,142,143],"byte":[93,101,114,115],"case":[2,3,6,8,9,21,22,34,36,42,45,48,49,52,54,58,59,64,75,80,83,91,93,109,114,115,122,143,147,149,151,152,159,160],"catch":3,"char":100,"class":[1,4,11,21,35,38,42,58,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,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,121,122,123,124,125,126,127,128,141,143,146,151,152,160],"default":[1,2,3,4,10,11,14,15,20,21,25,34,46,47,51,65,69,70,71,73,75,76,77,80,82,83,88,91,94,95,96,98,100,101,107,108,109,111,113,114,115,118,120,121,122,123,132,135,140,143,146,149,151,152,155,158],"enum":[2,3,4,35,36,38,58,83,113,115,146,156],"export":[93,108,152],"final":[6,8,10,18,25,31,32,34,36,39,42,48,54,55,58,61,74,75,83,149,151,155,159],"float":[3,4,6,8,28,71,75,83,85,91,93,94,95,96,97,98,101,104,108,109,111,113,114,115,117,120,122,139],"function":[0,1,3,4,6,7,8,10,11,12,13,18,21,24,25,29,30,31,34,36,38,39,42,43,52,53,54,60,61,62,63,64,66,68,71,78,79,81,83,85,87,90,92,93,97,99,101,104,105,108,109,111,113,114,115,126,128,133,139,140,143,146,147,149,150,151,152,154,156,159,160],"goto":[54,115],"import":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,63,64,115,139,143,149,152,156,159,160],"int":[1,3,12,21,28,29,30,31,36,54,55,58,65,70,75,77,82,83,85,91,93,94,95,96,97,98,99,100,101,104,108,109,111,113,114,115,146],"long":[3,4,50,51,64,65,82,83,109,115,143,151],"new":[1,2,3,4,7,9,10,13,14,15,21,25,34,39,41,42,43,45,58,63,64,70,73,74,75,76,96,97,98,99,108,114,115,118,120,122,142,149,150,151,152,154,155,156,159,160],"null":[92,151,156],"public":[109,114,129,143],"return":[0,1,3,4,6,7,8,10,11,20,21,25,28,29,30,31,34,35,39,42,43,45,46,47,51,52,54,58,60,61,65,66,67,73,75,82,83,85,91,92,93,94,95,96,97,98,99,100,101,104,107,108,109,111,113,114,115,117,118,119,120,146,151,159,160],"short":[70,151,159],"static":[18,77,78,88,93,96,104,105,113,114,115],"super":[3,4,11,21,98,99,108,115,160],"switch":[13,26,42,45,51,55,58,98,108,113,115,141,152,156,159],"throw":149,"true":[2,3,6,8,10,11,13,16,18,24,30,31,35,37,38,41,42,43,46,47,50,51,55,57,58,61,62,63,64,65,67,70,76,77,82,83,88,93,95,96,97,100,101,106,108,111,114,115,121,123,149,151,156,159],"try":[0,3,10,18,25,28,30,31,32,34,35,40,42,43,46,51,57,60,63,83,143,159],"var":76,"while":[1,6,8,13,25,30,34,35,38,42,43,45,53,55,57,64,92,115,147,149,151,152,159],AND:[12,115],ATS:[91,152],Added:6,Adding:143,And:[3,6,7,8,10,21,48,50,51,58,59,156,160],Are:[120,159],Axes:1,BUS:[28,40],BUT:143,But:[0,2,3,4,15,24,51,58,64,89,93,146,147],Doing:[6,51],For:[1,2,3,4,6,8,10,11,12,14,20,21,24,25,32,34,40,42,50,51,53,54,58,60,63,64,65,73,76,82,83,88,92,93,95,101,104,111,114,115,121,143,149,150,153,155,156,159,160],Has:[3,96],IDs:98,IPS:[43,108],Its:[156,159],NOT:[3,42,55,58,73,91,104,143],Not:[2,3,12,14,50,61,65,82,92,123,143,149,152,156],ONE:[34,114,143],One:[1,2,15,58,64,104,149,150,152,154,159,160],POS:[31,40,50,101],PRs:143,SRS:137,THE:[50,58,152],THERE:152,TPS:[53,137,138],That:[3,11,14,23,42,85,86,115,149,150,152,160],The:[0,1,2,3,8,10,11,12,13,20,22,26,27,28,31,32,33,34,36,37,39,40,41,42,43,44,45,46,47,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,67,68,70,73,75,76,77,80,82,83,85,87,88,90,91,92,93,95,96,97,98,100,101,104,108,109,111,113,114,115,117,121,122,133,141,143,145,147,149,150,151,152,155,156,159,160],Then:[4,33,42,45,51,54,55,58,62,143,149,155,160],There:[1,3,4,7,14,25,37,39,42,45,53,54,64,97,108,141,143,146,149,151,155,156],These:[3,10,15,34,46,47,58,64,76,113,114,115,152,159],Use:[30,34,65,71,82,83,93,115,143,154,156],Used:[109,115],Useful:[34,81,83],Uses:73,Using:[10,14,152,158],Will:[70,82,156],With:[32,51,60,155,159],_000_000_000:36,_10:[50,51],_11:[51,58],_13:[33,62],_14:[39,61],_15:31,_16:[27,53],_17:24,_2017:23,__call__:[31,43,73],__class__:[0,24,25,36],__del__:93,__doc__:[42,58,65,75,82,83],__enter__:[35,38],__exit__:[35,38],__file__:[4,42],__getattr__:[67,100],__init__:[3,4,11,21,35,38,42,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,95,119,121,122,123,160],__iter__:[85,86],__main__:30,__name__:58,__next__:86,__param__:151,__repr__:95,_alazar:93,_assigned_fg:31,_ats_dll:3,_attenu:91,_bdaqctrl:92,_call:31,_check_for_error:35,_check_respons:35,_coil_const:60,_count:21,_current_r:60,_current_ramp_limit:60,_display_settext:3,_do_measur:18,_error_queu:35,_expect_error:35,_field_limit:43,_get:160,_get_cmd:108,_get_temp_channel:56,_handl:3,_indic:21,_instrument:[3,31,35],_instrument_list:160,_irang:3,_keysight_344xxa:96,_measured_param:3,_mode:115,_parent:3,_poll:35,_ramp_stat:95,_ramp_tim:95,_randomnumber_:23,_raw:3,_read_cmd:108,_recv:108,_rem_file_path:30,_response_queu:35,_return_handl:31,_rigoldp8xx:109,_rohdeschwarzhmc804x:111,_run_loop:31,_run_wrapp:31,_save_v:[3,43,65,82],_scale_param:21,_send:108,_set:160,_set_async:160,_set_blocking_t:42,_set_both:160,_set_target:43,_setget:[27,28],_step:114,_subplot:[6,10,52,63],_syncoutput:31,_t0:95,_trace:51,_val:21,_vrang:3,_win32:92,_write_cmd:108,_write_respons:100,a118e754f9e:35,a18:[44,141],a6fc2471013f:43,a_good_run:14,a_nother_run:14,a_sweep:24,a_val:149,abax:6,abil:[135,149],abl:[60,147,149,151,155,159,160],abort:[28,113],abort_measur:28,about:[3,4,14,24,34,35,36,45,47,50,51,57,58,64,115,143,146,149,151,153,154,156,160],abov:[1,3,4,6,7,10,11,13,34,42,45,51,54,92,115,149,155,159],abridg:3,abs:[60,97],abscissa:149,absolut:[14,45,58,72,99,115,143,156],accept:[3,43,71,72,74,75,76,87,92,96,98,99,107,108,113,114,115,149,151,159],acces:[25,54],access:[1,6,7,13,32,41,58,67,92,93,106,109,114,149,152],accident:151,accommod:[109,115],accompani:143,accord:[42,97,99,115,149,150,155],accordingli:[31,97],account:[83,91,95,143,155],accumul:45,accur:[65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,119,121,122,123],achiev:[42,54,64],acknowledg:77,acquir:[4,27,31,33,34,36,39,50,51,58,62,93,104,114,152,159],acquire_averag:13,acquire_point:[13,62],acquire_sample_r:[13,62],acquisiion:93,acquisit:[28,36,51,58,93,104,113,114,143,152,159],acquisition_conrol:93,acquisition_control:[36,93],acquisition_controller_acquisit:36,acquisition_mod:114,acquisition_sample_r:50,acquisitioncontrol:93,acquisiton:93,acquist:93,acqusit:50,across:[6,46,47,57,96,150,159],act:[70,83,91],action:[1,6,10,13,20,21,24,31,35,56,66,70,80,104,115,119,123,129,146,152,154,159,160],action_indic:[24,31,70],activ:[1,2,14,50,64,96,108,111,146,155],activeloop:[24,80,146],actual:[1,3,6,13,26,34,42,45,57,60,64,91,93,101,111,115,143,149,150,159],actuat:45,acut:0,adapt:[6,85,86],adaptivesweep:[86,146],adawpt:86,adc:101,add:[1,2,3,4,6,7,14,15,17,25,28,31,33,39,41,42,51,53,58,61,71,73,77,78,88,93,96,97,100,101,104,105,111,114,115,120,121,122,123,135,136,139,143,146,151,152,155,156],add_after_run:[6,13],add_arrai:[70,71,120],add_before_run:[6,13],add_channel:[51,98,111],add_compon:[17,30,39,123],add_funct:[78,79,143],add_metadata:[15,151],add_paramet:[3,4,11,15,25,78,79,114,143,151,159,160],add_parameter_valu:151,add_post_trigger_act:104,add_result:[5,6,7,8,10,11,12,13,15,16,52,63,149,151],add_signal_to_sweep:[58,104],add_submodul:[3,78,97],add_subplot:[30,54],add_subscrib:6,add_tim:7,addblueprint:59,added:[1,6,10,12,14,24,42,51,60,65,70,71,104,114,115,120,121,122,123,133,141,143,147,150,151,155,159],addel:59,adding:[1,6,12,58,64,150,151,152],addit:[1,3,43,54,77,78,83,88,106,107,108,113,114,147,151,154,155,156,159],addition:[1,58,104],address:[3,4,34,42,45,47,48,49,56,60,62,63,67,77,88,94,95,96,97,98,99,100,101,105,106,108,109,111,114,115,116,117,143,159],addsubsequ:59,addtion:42,adjust:[10,34,51,60,61,62,101,159],adjust_parameter_valid:101,adopt:154,advanc:[6,83,147],advantag:1,advantech:[91,137],advantech_pcie_1751:92,aeroflex:[3,4,116],affect:[45,58,72,104,143],after:[1,12,14,24,25,31,32,36,45,52,76,80,83,87,93,99,104,108,114,115,135,143,149,150,151,152,155,156,159],ag_uc8:[45,91],again:[34,36,43,57,64,115,155,159],against:[146,149],aggeg:0,aggreag:0,aggreg:[68,90,152,160],agi:[26,35,38],agil:[13,38,40,63,91,96,137,143,152],agilent1:[35,38],agilent2:[35,38],agilent_34400a:[26,35,38,91],agilent_34401a:105,agilent_34410a:105,agilent_34411a:105,agilent_e8527d:[105,143],agilent_hp33210a:105,agilent_volt:26,agili:99,agre:150,agreement:39,agument:66,ahead:[58,85,86],aid:159,aim:[1,147,149,150],airbnb:143,aka:[143,152],akin:159,ala:154,alazar1:36,alazar1_alloc_buff:36,alazar1_allocated_buff:36,alazar1_aux_io_mod:36,alazar1_aux_io_param:36,alazar1_buffer_timeout:36,alazar1_buffers_per_acquisit:36,alazar1_bwlimit1:36,alazar1_bwlimit2:36,alazar1_channel_range1:36,alazar1_channel_range2:36,alazar1_channel_select:36,alazar1_clock_edg:36,alazar1_clock_sourc:36,alazar1_coupling1:36,alazar1_coupling2:36,alazar1_decim:36,alazar1_enable_record_head:36,alazar1_external_sample_r:36,alazar1_external_startcaptur:36,alazar1_external_trigger_coupl:36,alazar1_external_trigger_rang:36,alazar1_fifo_only_stream:36,alazar1_get_processed_data:36,alazar1_idn:36,alazar1_impedance1:36,alazar1_impedance2:36,alazar1_interleave_sampl:36,alazar1_mod:36,alazar1_records_per_buff:36,alazar1_sample_r:36,alazar1_samples_per_record:36,alazar1_timeout_tick:36,alazar1_transfer_offset:36,alazar1_trigger_delai:36,alazar1_trigger_engine1:36,alazar1_trigger_engine2:36,alazar1_trigger_level1:36,alazar1_trigger_level2:36,alazar1_trigger_oper:36,alazar1_trigger_slope1:36,alazar1_trigger_slope2:36,alazar1_trigger_source1:36,alazar1_trigger_source2:36,alazar:[3,11,93,133,137,152],alazar_driv:93,alazar_nam:[36,93],alazargetboardbysystemid:3,alazarparamet:3,alazarstartcaptur:93,alazartech:[3,36,91],alazartech_at:[3,36,93],alazartech_ats9360:[36,93],alazartech_ats9870:[3,93],alazartest:36,alert:14,alexcjohnson:143,algorithm:6,alia:[81,95,97,98,111],alik:108,all:[1,2,3,4,6,7,10,11,12,13,21,23,24,25,27,34,36,37,39,42,43,44,46,47,50,51,54,58,62,64,65,67,68,70,73,74,75,76,78,79,82,83,85,88,90,91,92,93,95,96,98,100,101,104,105,108,109,111,114,115,121,122,123,140,143,146,148,150,151,152,154,155,156,159,160],all_channels_off:115,all_channels_on:115,alloc:[36,93],alloc_buff:[36,93],allocated_buff:[36,93],allow:[1,3,4,10,11,24,34,36,42,43,46,47,55,60,61,62,64,67,77,83,85,86,88,96,101,104,108,111,114,115,120,143,149,151,159],almost:[64,114,159],alon:[60,70],along:[1,29,42,43,60,65,82,83,114,121,122,143,146,149,151,159],alongsid:[21,24],alpha:[30,54,96,101],alreadi:[9,65,70,74,82,151],also:[1,2,3,4,6,10,11,13,22,23,24,25,32,34,36,42,43,45,51,52,53,54,58,60,63,64,70,72,74,76,83,85,89,92,95,96,97,98,99,107,108,113,114,115,120,139,141,143,146,147,149,154,155,156,159],altern:[10,32,54,155],alternativli:32,although:[3,54,63,94,104,143,149,151,155],alwai:[1,2,3,4,11,14,20,25,33,42,43,53,55,58,76,82,95,100,104,114,115,143,159],always_nest:76,ambigu:149,amen:143,american:[60,106],american_magnet:[60,91],ami430:[91,137,140,152],ami430_2d:106,ami430_3d:[60,106],ami430except:106,ami430switchheat:106,ami430warn:106,ammet:159,among:[73,147,160],amount:[22,64,141,149,151],amp:[3,39,60,107,114],amper:117,ampl:[32,109],amplifi:[3,25,107,114,141,149,152],amplitud:[13,18,21,22,33,34,45,46,47,50,55,58,59,93,99,114,115,149,160],amplitude_unit:13,anaconda3:[30,31,35,155],anaconda:[154,155],analog:[34,100],analog_amplitude_n:115,analog_direct_output_n:115,analog_filter_n:115,analog_heat:42,analog_high_n:115,analog_low_n:115,analog_method_n:115,analog_offset_n:115,analys:111,analysi:[143,151,159],analyt:151,analyz:[52,61,94,141,152,154],angl:60,angle_deg:105,angle_rad:105,ani:[0,2,3,4,7,10,12,14,21,22,25,34,35,38,46,47,48,49,51,52,54,60,63,64,65,68,70,72,73,74,75,76,77,80,82,83,85,86,87,88,90,93,95,96,98,99,104,108,113,114,115,119,123,143,146,147,149,150,151,154,155,159,160],annoy:64,anoth:[6,8,21,25,26,54,73,80,85,97,115,117,149,154,159],answer:[95,101],anymor:4,anyon:10,anyth:[3,8,24,25,28,36,37,50,115,146,149],anywai:[21,34],ap_tim:28,apart:149,apertur:[26,28],api:[1,4,129,131,133,141,150,154,156,159],app:62,apparatu:146,appdata:2,appear:[45,55,64,115,151],append:[5,6,7,8,12,29,30,35,41,42,54,60,63,70,85,160],appli:[32,37,46,47,50,60,71,75,83,92,96,98,99,107,109,113,114,115,151],applic:[3,32,42,151,155],apply_auto_color_scal:64,approach:152,appropri:[1,11,93,115,151,159],approv:143,approxim:7,apropri:10,aqcuisit:50,aquir:61,arang:[3,4,5,11,30,41,42],arb:[32,109],arbitrari:[10,75,76,82,105,109,115,146,149,151,154],architectur:[154,160],arctan:54,area:64,arg:[1,2,3,12,13,30,31,35,41,42,43,65,75,82,83,85,87,93,100,106,108,113,121,122,151,160],arg_count:[31,43],arg_pars:75,argu:[64,149],argument:[0,1,3,6,10,12,14,20,25,31,32,34,43,66,70,71,74,75,82,87,98,104,106,109,114,146,151],arithmet:50,arm:[34,104],around:[13,51,52,54,64,70,93,143,159],arrai:[0,1,7,21,23,24,25,26,27,28,29,30,31,33,34,36,38,39,42,50,51,53,54,55,58,61,62,65,70,71,74,82,93,104,109,111,113,114,115,119,120,122,135,146,151,152,156,159,160],array0d_dataset:5,array0ddata:[5,14],array1d_dataset:5,array1ddata:[5,14],array_count:21,array_id:[0,1,21,23,24,25,26,27,28,31,33,36,39,50,51,53,58,61,62,70,74,160],arraycount:21,arraygett:20,arrayparamet:[3,11,13,27,94,96,109,111,113,114,115,129,152],arriv:159,arrow:149,asc:50,ascii:152,ascii_plotter_5bit:12,asctim:6,ask:[3,28,29,35,43,50,56,58,63,95,96,98,99,101,108,114,115,143,159],ask_channel:99,ask_modul:114,ask_raw:[18,98,115],asopc:93,asopc_typ:[36,93],asrl1:53,asrl2:88,asrl3:[45,99],asrl4:[26,108],asrl6:[31,46,47],asrl7:28,asrl:101,asrln:95,assert:[4,41,57,60,114,115],assign:[31,34,43,46,47,55,59,100,108,114,115,143,149],assigned_paramet:34,associ:[34,96,150,151,159],assuem:5,assum:[3,51,54,61,86,100,115,149,155,159],assumpt:[58,115,149],astafev:143,astyp:18,asymmetr:152,asymptot:11,async:158,asynchron:25,atob:[43,108],ats9360:[36,91,133],ats9870:[3,91],ats_acquisition_control:[36,91],ats_contr:36,ats_inst:36,atsapi:[3,93],atsdriv:36,attach:[1,3,34,67,71,78,79,80,91,96,100,111,114,115],attempt:[18,95],attent:[34,143,152],attenu:[3,4,46,47,116],attn:[3,4],attribut:[1,3,34,58,65,69,70,71,73,74,77,78,79,81,82,83,84,88,104,114,119,121,122,123,143,150,151,159],author:143,auto:[19,57,58,63,73,111,152,156],auto_color_scal:[64,156],auto_color_scale_from_config:64,auto_rang:[42,57],auto_sweep:63,autofmt_xd:18,autom:[4,154],automat:[1,3,6,10,13,21,23,51,58,63,73,92,93,99,100,111,117,136,140,143,147,150,151,152,154,155,156],autorang:31,autoreload:2,autoscal:[41,42,51],autoscale_view:[41,42],aux:36,aux_in1:[33,34,114],aux_in2:[33,34,114],aux_in3:[33,34,114],aux_in4:[33,34,114],aux_in_auxiliari:36,aux_in_trigger_en:[36,93],aux_io_mod:[36,93],aux_io_param:[36,93],aux_out1:[33,34,114],aux_out2:[33,34,114],aux_out3:33,aux_out4:33,aux_out_trigg:36,auxiliari:[10,11,143,149],auxoutputchannel:104,avail:[1,3,4,19,32,34,40,50,54,55,58,61,91,92,96,97,100,101,105,108,111,114,115,129,131,154,155,159],avanc:158,averag:[51,58,61,63,93,96,115,152],averageandraw:20,averages_en:63,averages_off:96,averages_on:96,avg:[51,52,113],avoid:[28,50,60,62,141],awai:[10,64,149,152],awar:[43,143],awg1:[30,54],awg5014:[30,91,136,138,152],awg5014c:152,awg5200:[91,140],awg5208:[34,91,133,152],awg520:91,awg70000a:[91,141],awg70001a:115,awg70002a:[91,152],awg:[4,25,29,30,32,59,96,115,133,152],awg_amplitud:[34,55,59],awg_ch1:55,awg_ch2:55,awg_fil:[30,115],awg_file_format_channel:115,awg_file_format_head:115,awgchannel:115,awgfil:54,awgfilenam:30,awgfilepars:[54,91],awgfilepath:115,awgseq:30,ax1:[30,54],ax2:[30,54],ax3:54,ax4:54,axes:[1,6,8,10,43,45,51,52,63,99,108,149],axes_api:1,axesimag:15,axeslist:10,axessubplot:[6,10,52,63],axi:[1,6,10,45,51,58,60,65,70,76,82,83,99,104,113,149,159],axis1:45,axis2:45,axs:[9,58],axvlin:64,b020203:59,b020205:34,b020397:[29,55],b051039:30,b0cc11f2d82e:2,b200:50,b20:50,b2962a:96,b2962achannel:96,b800:50,b_val:149,babi:[18,160],back:[4,6,11,13,14,25,42,43,44,45,51,54,57,60,63,64,86,95,98,108,111,115,143,149,154,156,159,160],backend:[1,88,141,147],background:[35,38,149,152,159],background_color:121,background_funct:71,backslash:143,backward:[72,101],bad:2,bad_valu:4,bake:43,bandwidth:[36,50,51,58,104,111],bar:[64,143,156],bare:[64,77,85],base0:160,base1:160,base2:160,base:[1,14,21,27,31,50,60,67,70,71,72,73,74,78,79,86,88,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,133,143,151,152,155,156,159,160],base_loc:[2,24,72],base_spdt:91,baselin:152,baseoutput:97,baseplot:121,basesensorchannel:97,baseserv:160,bash:155,basi:[55,82,147],basic:[3,4,24,30,36,53,64,76,93,101,147,148,154],basicconfig:[6,16,30,31,61],batch:6,baud:[95,114],bdaqctrl:92,bear:143,becaus:[1,2,3,42,53,57,64,70,71,74,92,97,114,143,159,160],becom:[7,36,54,64,108,146,159],been:[3,6,11,12,21,34,42,53,54,60,62,83,93,96,97,104,113,114,115,150,151,159,160],beenmark:151,befor:[2,3,4,12,24,25,26,29,31,33,34,42,43,45,50,51,53,58,60,61,62,73,77,80,83,87,91,92,93,94,96,97,104,108,113,114,115,141,143,151,155,156,159],beforehand:[91,149],begin:42,begin_tim:95,behav:143,behavior:[35,38,42,113,143,159],behaviour:[39,83,104],behind:[58,150],being:[2,10,11,24,25,29,32,34,36,41,42,54,55,57,70,93,97,113,114,115,147,149],belong:[3,65,82,83,97,109,111,113,150],below:[1,2,3,4,6,7,10,12,13,25,27,34,42,54,63,64,143,146,149,152],ben:60,benchmark:[7,14,26,140],benchmark_data:[5,14],benchmark_seqx:29,benchmarkingqcod:29,besid:149,best:143,beta:[53,93,96,105,108,111,114,115,133],better:[3,6,7,13,28,50,55,64,75,133,140,143,147,159],between:[1,3,6,7,8,40,41,42,45,57,64,71,74,77,83,85,97,104,113,115,117,120,121,122,147,149,151],bewar:34,beyond:[64,115,150,151],bid:92,bidirect:83,big:[7,42],bin:64,binari:[7,11,27,29,55,92,98,115],binascii:53,bind:58,biodaq:92,bip:101,bipolar:[42,97],bit:[6,12,13,28,29,34,50,55,92,111,114,115],bitarrai:93,bits_per_sampl:[36,93],black:[64,121],blame:[46,47,115],blank:[44,76,108,143],blind:25,blip:[12,14],blob:[7,11],block:[12,25,34,35,43,76,101,106,108,114,115,152,160],blocking_t:42,blop:[12,14],blue:[34,64,149],bluefor:152,blueprint:59,bnc:113,board:[3,36,42,46,47,93],board_id:[3,36,93],board_kind:[36,93],bodi:143,boil:3,boilerpl:[3,75],bold:146,bonu:152,bool:[3,65,67,70,77,82,83,93,95,96,97,100,101,106,107,111,113,114,115,117,120,123],bool_to_str:115,bootstrap:29,bore:62,born:143,borrow:8,bot:[138,139],both:[1,2,3,7,10,11,21,26,51,55,58,72,114,115,143,146,149,154,155,159,160],bottom:[64,101,121],bound:[3,25,111,159],box:152,bracket:143,branch:143,brand:133,brand_new_sampl:14,brdige:[14,15],breakif:[25,129,159],breviti:149,brief:14,briefli:55,bring:[11,149],brittl:159,broadbean:[29,34,55,115,152],broader:154,broadli:3,broken:[2,83,155],brows:[155,160],browser:155,buf:93,buffer:[36,92,93,114,138,152],buffer_acq_mod:33,buffer_done_callback:93,buffer_list:3,buffer_npt:33,buffer_numb:93,buffer_paus:33,buffer_reset:33,buffer_sr:33,buffer_start:33,buffer_timeout:[36,93],buffer_trig_mod:33,buffers_complet:93,buffers_per_acquisit:[36,93],bug:[62,144],build:[7,11,54,55,58,104,115,136,137,143,152,159],build_sweep:[58,104],built:[1,21,45,58],builtin:75,bunch:[7,58],bundl:115,burden:159,burn:12,burst:[109,152],burst_stat:13,busi:[42,92],button:[42,115,143,155],bwlimit1:36,bwlimit2:36,bwlimit:93,bwmode:58,byref:31,byte_rep:93,byte_to_bit:114,byte_to_value_dict:[3,93],bytecod:4,c_amp_in:[3,107],c_sample_typ:93,c_set:21,c_val:149,cabl:[34,115,159],cach:114,calc_set_point:115,calcul:[60,64,104,111,146,159],calibr:[91,93,152],california:4,call:[2,3,6,7,21,31,34,35,39,42,43,50,51,53,54,60,61,64,65,68,70,71,73,74,75,77,82,83,87,88,90,92,93,95,98,99,100,101,104,108,113,114,115,117,120,143,151,152,155,159],call_by_str:31,call_by_str_parsed_out:31,call_cmd:75,callabl:[6,25,34,35,66,68,71,73,80,83,87,89,90,104,108,114,120,138,159],callback:[6,12,93,151],callback_kwarg:16,callsig:54,came:93,camp1:38,camp:38,can:[0,1,2,3,4,5,6,7,8,10,11,12,14,15,21,22,23,28,29,32,33,34,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,57,58,59,60,62,63,64,65,66,69,70,71,73,75,76,80,82,83,85,86,89,92,93,94,95,96,97,100,101,104,108,109,111,113,114,115,119,120,121,122,123,141,143,146,149,150,151,152,153,154,155,156,159,160],cancel:[46,115],cann:15,cannot:[32,43,51,60,64,65,82,92,97,114,115,159],canva:[1,41,42],capabl:[10,37,146,154,159],capit:143,captur:[11,25,51,52,64,93,114,152],capture_config:[34,114],capture_data:114,capture_one_sample_per_trigg:[34,114],capture_r:34,capture_sampl:[34,114],capture_samples_after_trigg:[34,114],card:[3,11,36,92,93,96,137],care:[2,3,36,42,55,155],careful:101,cartesian:[43,60,159],cartesian_measur:60,cash:114,cast:[28,54,55,75,149],categori:[11,152],caus:[46,47,114],caution:[114,115,152],caveat:159,cbax:[6,8,9,10],cdirectori:30,cdll:[3,93],cell:[6,50,54],center:[51,52,64,113],central:[6,151],certain:[12,14,25,42,58,60,93,97,106,108,149,150],cesr:114,cffi:92,ch01:[42,47,97],ch01_i:46,ch01_irang:46,ch01_slope:[31,46],ch01_sync:31,ch01_sync_delai:31,ch01_sync_dur:31,ch01_v:[28,31,46],ch01_vrang:46,ch02:[42,46,47,97],ch02_slope:46,ch02_sync:46,ch02_v:[31,46],ch03:[42,97],ch04:[42,97],ch05:[42,97],ch06:[42,97],ch07:[42,97],ch08:[42,97],ch09:[42,97],ch0_offset:37,ch0_voltag:37,ch10:[42,97],ch11:[42,97],ch12:[42,97],ch13:[42,97],ch14:[42,97],ch15:[42,97],ch16:[42,97],ch1:[6,8,11,13,14,24,25,29,30,32,34,48,49,50,55,59,115],ch1_amp:[55,115],ch1_amplitud:40,ch1_amplitude_unit:40,ch1_burst_mod:40,ch1_burst_ncycl:40,ch1_burst_phas:40,ch1_burst_polar:40,ch1_burst_stat:40,ch1_curvedata:53,ch1_databuff:33,ch1_displai:[13,33],ch1_frequenc:40,ch1_function_typ:40,ch1_offset:40,ch1_output:40,ch1_posit:53,ch1_ramp_symmetri:40,ch1_ratio:33,ch1_scale:53,ch1_state:53,ch1_trigger_count:40,ch1_trigger_delai:40,ch1_trigger_slop:40,ch1_trigger_sourc:40,ch1_trigger_tim:40,ch1_voltag:37,ch2:[6,8,11,13,14,24,25,48,49,53,55,59,115],ch2_amp:[55,115],ch2_curvedata:53,ch2_databuff:33,ch2_displai:33,ch2_offset:[30,54],ch2_posit:53,ch2_ratio:33,ch2_scale:53,ch2_state:53,ch3:49,ch3_state:54,ch41_v:26,ch42_v:26,ch4:62,ch_name:3,ch_rang:110,cha0:91,chain:159,challeng:147,chan0:91,chan1:[58,66],chan1_list:30,chan2:58,chan:[96,100],chan_alia:56,chan_go:31,chan_list:67,chan_reset_1:31,chan_reset_2:31,chan_reset_3:31,chan_typ:67,chanc:[93,155],chandata:58,chang:[1,3,4,10,14,22,25,32,36,37,42,43,44,45,46,47,52,53,58,64,65,69,72,82,83,93,101,104,113,114,115,142,143,149,151,152,154,155,156,159],change_autozero:115,change_displai:115,change_fold:115,changearg:59,channel1:13,channel4:62,channel:[13,25,26,29,32,33,35,36,37,38,39,41,45,48,49,50,53,54,55,59,62,67,78,79,88,92,93,95,96,97,98,99,100,101,104,106,108,109,110,111,112,114,115,117,138,139,146,152,153,159],channel_a:[36,93],channel_b:36,channel_cfg:[30,115],channel_class:[97,98,111],channel_color:114,channel_id:114,channel_lett:98,channel_map:[59,115],channel_nam:[111,114],channel_name_command:97,channel_numb:99,channel_rang:93,channel_range1:36,channel_range2:36,channel_select:[36,93],channel_skew_n:115,channel_state_n:115,channel_to_read:[41,42],channelbuff:114,channelis:[39,100,115,141],channelist:67,channellist:[100,129],channum:[96,100,104,111],charact:[65,76,77,82,83,88,108,111,143,150],characteris:150,characterist:159,charg:[10,155],chassi:[96,97],check:[3,4,15,19,32,41,43,57,60,89,92,106,108,111,114,117,121,122,133,143,153,157,159,160],check_en:106,check_error:31,check_for_error:113,check_module_error:114,check_schema:2,check_stat:106,checklist:143,chees:152,chime:143,chnum:54,choic:[51,64,93,149],choos:[10,34,42,54,101,104,115,155,159],chore:143,chose:[6,7],chosen:[42,57,104],chx:25,circuit:[44,61,98,141],circular:149,circumst:149,circumv:64,claim:64,clariti:[3,14],classic:28,classmethod:[91,93,97,98],clean:[50,109,115,133,135,143],clean_str:109,cleanup:[74,140],clear:[12,30,31,33,51,53,54,55,88,96,114,115,149],clear_buff:93,clear_channel:[51,111],clear_error:105,clear_message_queu:[53,54,115],clear_waveform:115,clearer:64,clearli:[64,143,149],clearqueu:30,clearsequencelist:[29,34,55,59,115],clearwaveformlist:[29,34,55,59,115],clever:[6,144],cli:154,click:[1,44,155],clim:1,clip:[42,64,156,159],clock:[3,36,93,115],clock_edg:[36,93],clock_edge_fal:36,clock_edge_ris:36,clock_external_frequ:55,clock_freq:30,clock_sourc:[3,36,55,93,115],clone:[143,155],close:[1,4,7,26,29,37,39,41,43,46,47,51,53,54,55,56,58,60,92,97,98,104,108,113,140,143,152],close_ev:1,close_fil:74,closed_loop:[42,97],cls:2,cmd:[31,43,94,95,96,98,99,100,108,114,115],cmd_id:[34,114],cmd_id_nam:[34,114],cmd_str:31,coars:95,code:[1,3,4,34,63,75,83,94,95,97,99,105,114,123,133,144,147,149,150,154,156,159],codebas:[4,133,154],coil:60,coil_const:60,col:111,cold:108,collabor:150,collect:[6,21,24,85,93,146,151,154,159],colloqui:[3,108,115],colon:[92,96,98,99,107,108,113,114,115,143],color:[1,10,19,30,34,54,58,114,121,152,156],color_ov:[64,156],color_und:[64,156],colorbar:[1,6,10,64,70],colormap:156,column:[1,18,76,149,150,151,159],com2:88,com3:[45,99],com:[44,96,114,143,145,152,153,155],combin:[10,68,71,76,83,93,118,120,129,139,146,152,158,159],combinator:149,combined_set:0,combinedparamet:[0,129],come:[10,11,29,34,43,76,114,143,149,155,159],comma:[92,96,98,99,107,108,113,114,115],command:[1,3,4,27,28,31,34,36,42,43,45,53,54,58,75,83,92,95,96,97,98,99,100,101,105,108,109,111,114,115,129,143,146,152,154,155,156,159],command_delai:99,commenc:150,comment:[3,10,76,92,143],commit:[93,153,154,155],common:[3,64,92,96,98,99,107,108,111,113,114,115,146,159],commonli:[96,105,111,115],commun:[3,34,36,45,60,77,88,93,95,98,99,101,108,113,114,115,146,147,153,159],communc:60,compani:3,compar:[7,22,26,36,42,50,51,52,143],comparison:7,compat:[13,42,80,87,100,101,114,154,159],compatibil:115,compens:[115,149],compet:147,compil:55,complain:[25,159],complet:[1,11,29,31,45,50,54,70,71,92,93,115,149,150,151,159,160],completed_acquisit:50,completli:6,complex:[10,51,83,143,149,159],compliant:143,complic:[8,10,75,147,152,159],compon:[6,10,24,43,82,93,123,151,154,159],compos:[55,115,150],composit:[31,159],comprehens:[143,152],comput:[1,5,22,39,42,93,97,104,108,143,159],con:137,concaten:[6,15,29,34,55,100,143],concept:[63,149,160],conceptu:151,concern:149,conclus:28,concret:4,concurr:159,conda:155,condit:[3,25,66,83,92,108,115,159],config:[3,5,7,10,15,34,64,93,114,115,129,139,143,152,158],config_file_nam:69,configur:[4,14,15,41,52,58,69,92,93,113,115,132,151,152,154,158,159],conflict:[92,151,159],confus:34,confusingli:160,congratul:152,connect:[3,4,13,14,16,26,27,28,29,30,31,32,33,34,35,36,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,88,93,95,96,98,101,104,108,113,114,115,123,146,149,152,159],connect_messag:[3,4,95,100],consequ:159,consid:[3,6,25,39,50,64,115,143],consider:149,consist:[25,46,47,51,101,113,115,119,143,149,159],consol:4,consolid:154,constant:[13,20,25,42,58,60,101,104,113,114,149],constantli:42,constantvoltag:49,constitut:4,constraint:29,construct:[3,19,20,42,51,70,77,83,93,147,152,160],constructor:[3,65,70,82,97,101,121,122,151],consult:[114,159],consum:64,cont:[63,111,114,152],cont_meas_off:51,cont_meas_on:51,conta:104,contact:140,contain:[3,4,5,6,10,18,20,24,25,34,39,43,51,54,55,67,69,70,71,73,76,92,93,95,96,97,98,99,100,104,105,107,108,111,113,114,115,123,143,146,149,150,151,152,155,156,159,160],contantli:[41,42],content:[70,151,152],context:[14,36,93,98,99,108,115,147,152,159],contextmanag:8,contin:[94,115],contini:51,continu:[4,6,10,13,42,54,58,63,80,114,115,123,143,152],continuo:152,continuum:2,contrast:[4,143],contribut:[3,62,144,153],contributor:143,control:[2,3,11,23,24,35,36,37,38,39,41,46,47,51,54,58,93,95,97,99,101,106,108,111,113,115,133,137,149,152,154,156,159,160],control_mod:41,controlthermometri:108,conveni:[6,8,10,34,42,109,114,115,123,150,151,159],convent:[3,4],converg:42,convers:[115,143,149],convert:[3,4,22,60,70,72,93,100,108,114,115,149,159],convex:[43,108],coordin:[43,60],copi:[2,4,10,16,35,59,70,85,93,101,104,159],core:[0,1,5,6,7,9,10,13,14,15,18,30,31,33,34,35,36,38,41,42,50,51,52,53,56,58,59,61,114,143,149,152,154,156],corner:[35,38,64],correct:[1,3,10,37,41,50,54,58,60,63,74,93,96,109,114,139,147,149],correctli:[4,57,60,133,155],correl:10,correspond:[1,26,33,34,37,39,45,50,54,55,59,64,76,93,95,97,101,104,111,113,114,115,149,151],corrupt:134,cos:10,cosmet:[135,136],cost:[7,101,147],could:[6,31,34,54,143,149,151,159],coulomb:149,count:[12,21,31,45,75,92,100,115,151,160],counter:[2,23,25,45,73,92,93,99],counterintuit:147,coupl:[3,36,50,58,93,111,115],coupling1:36,coupling2:36,cours:[14,24,50,64,143,149,159],cov:143,cover:[34,55,64,143,160],coverag:[13,143,154],coveragerc:143,cpld:93,cpld_version:[36,93],cpu:[5,10,51],crash:[12,93,154],creat:[1,5,6,10,14,15,17,21,23,25,34,35,38,39,48,49,61,64,67,70,74,80,82,83,85,91,93,95,97,101,104,108,115,119,120,146,151,152,155,156,159,160],create_and_goto_dir:115,creation:[3,25,150,160],critic:[2,150,156],cryo:137,cryogen:141,ctl:45,ctwrapper:31,ctype:[3,93],cumbersom:100,curernt:160,curiou:10,curr:[3,27,38,39,57,107,114],current:[2,3,10,11,12,14,22,23,24,27,38,39,43,45,46,47,48,49,51,53,54,57,58,60,71,72,73,92,93,96,97,99,100,104,106,107,108,109,113,114,115,117,118,120,123,143,147,149,150,151,156,159,160],current_config:[2,69],current_config_path:[14,69],current_directori:55,current_field:60,current_persist:43,current_r:60,current_ramp_limit:[60,106],current_ramp_r:43,current_rang:57,current_schema:[2,69],current_source_shunt:42,current_target:[43,60],current_to_field:60,current_valu:31,current_waveform:[32,109],currentparamet:[3,38,107],cursor:151,curv:[27,41,96,97,109,115,152],curve_data:41,curve_nam:41,curve_numb:42,curve_x:41,curve_x_data:41,custom:[10,21,23,69,72,94,147,152],customawgfil:115,customgett:6,customis:100,cut:64,cutoff:152,cutoff_hi:114,cutoff_lo:114,cutoff_percentil:[64,156],cuttoff:152,cwd:[7,69],cwd_file_nam:[2,69],cycl:[3,32,35,36,38,39,40,114,159],cylindirc:60,cylindr:[43,60],cylindrical_measur:60,d5a:91,d5a_modul:101,d5mux:101,d_bdaq_c_interfac:92,d_val:149,dac0:22,dac1:[20,22],dac1_too_high:11,dac2:20,dac3:20,dac:[6,8,11,20,24,25,91,95,101,139],dac_ch1:[11,24,25],dac_ch1_set:[24,25],dac_ch2:[24,25],dac_channel_class:95,dac_commands_v_13:100,dac_control:11,dac_delai:101,dac_idn:[24,25],dac_slot_class:95,dac_step:101,dac_v:11,dac_verbose_channel:25,dacchannel:95,dacexcept:95,dacn:101,dacnam:101,dacread:95,dacslot:95,dacx:101,dai:[64,143],daili:155,dancer:143,daqnavi:92,daqnaviexcept:92,daqnaviwarn:92,dark:121,daset:152,dat1:34,dat2:34,dat3:34,dat4:34,dat:76,data1:51,data2:[17,23,53],data:[0,1,2,3,6,7,11,12,14,15,16,18,20,21,23,24,26,27,28,29,31,33,35,36,38,39,41,42,50,51,53,55,58,61,63,70,71,72,73,74,76,80,82,83,92,93,96,97,98,100,101,104,109,111,114,115,118,120,121,122,129,139,143,146,147,149,150,151,152,154,156,159,160],data_arrai:24,data_avgd:50,data_buff:31,data_channel:34,data_channel_3:34,data_channel_:34,data_dict:97,data_export:[6,7,11],data_hd:50,data_l:17,data_ld:50,data_outside_iqr:64,data_set:[2,7,9,11,12,14,15,16,17,18,24,25,31,74,115,132],data_v:83,data_with_outli:64,dataarrai:[0,1,21,24,38,65,71,74,82,120,129,146,159],databas:[5,7,8,9,10,11,12,147,149,150,152,156],databs:15,dataflow:93,dataformat:[50,152],dataformatt:143,datafram:[18,151],dataframe_from_dataset:151,dataid:[6,8,10,63],datamanag:[146,159],datamin:159,datamod:[0,21,26,38,58,160],datapoint:[7,62,115,156],datasav:[6,7,8,10,11,13,52,63,149,152],dataserv:[71,146,159],dataset:[0,1,2,6,9,10,11,13,14,15,16,17,18,20,21,23,24,25,26,27,28,31,33,36,38,39,50,51,52,53,58,61,62,63,64,70,73,74,76,82,115,118,119,120,129,133,141,146,156,158,160],dataset_hm:16,dataset_with_data_outside_iqr_high_outli:64,dataset_with_data_outside_iqr_low_outli:64,dataset_with_outli:64,datatyp:[11,93],date:[2,23,25,73,93,151],datetim:73,datetime64:18,dateutil:18,daunt:143,db_debug:[2,156],db_locat:[2,5,7,14,15,156],dbm:[4,51,61,111],dc50:13,dc_channel_numb:115,dc_output_level_n:115,dch:34,dcl:50,dclimit:50,ddl:92,deacadac:95,deactiv:[64,101],dead:11,deadlin:35,deal:43,dealt:159,dearest:64,debug:[2,6,17,18,30,53,58,61,62,63,156,159,160],debugmod:31,deca:37,decadac:[91,133,138,140,141,152],decadec:95,decai:6,decid:[2,6,15,55,121,149,150,155,159,160],decim:[36,93],declar:[92,149],decode_sensor_statu:97,decor:4,decoupl:143,decreas:26,deem:104,deep:150,deepcopi:16,deeper:35,def:[0,1,2,3,4,6,7,8,10,11,12,13,21,25,28,29,30,31,35,38,41,42,43,60,108,160],default_color_map:156,default_figs:1,default_fil:[2,156],default_file_nam:69,default_fmt:[2,156],default_fold:[2,156],default_formatt:[71,118,120],default_io:[71,118,120],default_measur:24,default_parameter_nam:140,default_timeout:99,defaultcolormap:2,defaulttestload:17,deferred_oper:129,defin:[0,2,3,6,7,10,13,34,42,51,52,54,58,64,65,75,82,97,98,99,101,107,108,113,114,115,143,146,147,149,151,152,156,159,160],definit:[4,50,58,75,111,159],defit:50,deg:[33,58],deg_to_rad:105,degre:[40,55,58,83],del:3,delai:[0,1,8,24,25,31,36,42,45,47,57,58,60,80,83,84,86,89,101,111,117,159,160],delay1:8,delay2:8,delay_in_points_n:115,delay_in_time_n:115,deleg:70,delegate_attr_dict:123,delet:[3,115,143],delete_all_waveforms_from_list:[30,54,115],delete_sequence_from_list:115,deliber:57,demand:[12,159],demo:152,demod1:[58,104],demod1_harmon:58,demod1_i:58,demod1_ord:58,demod1_phaseshift:58,demod1_phi:58,demod1_r:58,demod1_sampl:58,demod1_sampler:58,demod1_signalin:58,demod1_sinc:58,demod1_stream:58,demod1_timeconst:58,demod1_trigg:58,demod1_x:58,demod:58,demodul:[13,36,104,149,152],demodulation_acquisitioncontrol:[36,93],demodulation_frequ:[36,93],demonstr:[21,34],demontr:10,denot:[65,76,82,120],depend:[1,3,6,7,36,45,46,47,58,63,76,111,114,115,131,140,143,147,149,150,151,152,159],dependend:155,depends_on:149,deploi:[27,115],deprec:[30,70,115,136],deprecationwarn:[30,115],depth:62,deriv:[146,149],describ:[2,3,21,25,55,64,65,80,82,99,104,108,115,143,149,150,151,156,159],descript:[2,19,64,69,70,115,143,151,156,159],descriptor:101,design:[115,148,149,150,159],desir:[10,23,25,42,50,60,64,114,149],desktop:[31,43,155],destin:151,destruct:159,detail:[1,6,10,14,64,114,143,159],detect:[6,34,111,139],determin:[42,64,74,97,99,122],dev2235:58,dev:[2,5,27,28,44,133],develop:[4,104,144,154,155],deviat:29,devic:[4,42,44,45,52,88,92,96,98,99,101,104,108,111,113,114,115,137,159],device_clear:[42,88],device_descript:92,device_id:104,dft:[36,93],dg1062:[32,91],dg1062burst:109,dg1062channel:[32,109],dg1062z:32,dg1za195006397:32,dg4000:91,dg4062:109,dg4102:109,dg4162:109,dg4202:109,dhcp:42,diagon:146,diagram:149,dialogu:4,diamond:149,dicitonari:114,dict:[6,10,12,23,65,69,70,73,74,77,78,79,82,83,88,92,93,95,96,97,98,99,100,107,108,109,113,114,115,117,120,138,159],dict_kei:41,dictionari:[3,34,54,93,97,109,114,115,123,151,156,159],did:[3,26,149],didact:25,diff:115,differ:[1,2,3,6,7,10,11,14,21,22,23,39,51,59,65,71,82,97,100,104,111,113,114,115,143,146,147,149,150,151,152,154,159,160],differenti:70,difficult:[143,147,149],difficulti:[64,143],dig:[58,96,139],digit:[3,22,25,92,93,96,100,115,137],digital_amplitude_n:115,digital_high_n:115,digital_low_n:115,digital_method_n:115,digital_offset_n:115,digitis:12,dilut:108,dim:[13,61],dimens:[7,21,65,70,76,82,148,159],dimension:[1,70,71,108,149],dio:92,dir:[2,115],direcli:7,direct:[7,45,55,65,81,82,93,99,143,149],directli:[1,2,3,7,13,20,21,34,45,46,47,54,58,60,71,80,108,115,147,149,150,152,159],directori:[2,3,14,64,69,71,72,115,118,120,143,155,156],disabl:[36,55,63,67,71,106,113,152],disadvantag:159,disallow:149,disappear:159,disc:115,discard:156,disconnect:[42,113,156,159],discov:91,discret:159,discuss:[143,153],disk:[11,14,24,34,71,72,74,115,120,147,159],diskio:[24,71,73,118,120,129,146],displai:[0,1,3,6,7,9,10,13,15,18,26,28,30,31,33,34,35,36,38,41,42,50,51,52,53,56,58,59,61,62,64,111,114,115],display_clear:[26,28,31,105,115],display_format:61,display_grid:[51,111],display_norm:115,display_refer:61,display_scal:61,display_settext:[3,39],display_sij_split:51,display_single_window:51,display_text:[26,28],disregard:64,dissip:159,distanc:64,distinguish:30,distribut:154,div:[50,53],dived:91,divid:[83,91,137,138,152],divider_r:115,divis:[22,53,91],division_valu:91,divsion:91,dll:[44,92,93,113,152,159],dll_path:[3,93,113],dma:[92,93],dmm:[6,8,24,25,26,28,31,105,139,140],dmm_data_buff:31,dmm_idn:24,dmm_v1:24,dmm_v2:24,dmm_volt:28,dmm_voltag:25,do1d:8,do2d:8,do_acquisit:93,do_get_frequ:111,do_get_pow:111,do_get_pulse_delai:111,do_get_statu:111,do_get_status_of_alc:111,do_get_status_of_modul:111,do_set_frequ:111,do_set_pow:111,do_set_pulse_delai:111,do_set_statu:111,do_set_status_of_alc:111,do_set_status_of_modul:111,doc:[7,11,24,101,143,152,155],docstr:[3,21,42,65,75,82,83,115,143],document:[1,6,10,18,19,30,60,65,75,82,83,93,115,132,133,135,137,141,143,147,154,155,159],doe:[1,4,6,7,10,13,14,24,25,34,42,43,51,55,57,58,60,64,70,73,76,80,81,88,91,92,96,98,99,101,105,107,108,111,113,114,115,133,143,147,149,151,159],doesn:[3,4,21,54,70,92,115,143],dofastsweep:[27,39,115],doing:[5,36,42,51,143,159],domain:[58,108],domin:154,dominik:143,don:[1,3,4,5,7,14,15,19,53,74,85,86,95,100,115,143,151,159,160],dond:[18,42,152],done:[1,14,25,29,42,43,45,54,55,58,93,108,135,147,159,160],doneyet:6,door:42,dot:[2,143,156],doubl:[73,115,152],double_dataset:5,doubledata:[5,14],doubt:[58,143],dovog:[44,143],down:[3,6,13,24,39,42,43,52,54,55,60,143,149],downhil:6,download:[44,58,93,114,152,155],dp821:91,dp831:91,dp832:[91,152],dp8xx:[91,109],dp8xxxxxxxxxx:49,drain:149,dramat:159,draw:[41,42,64,149],drive:[99,115,149,150],driver:[4,13,20,21,25,32,33,36,39,45,46,47,50,51,52,53,54,58,60,61,62,63,91,92,93,94,95,96,97,99,100,101,104,105,106,107,108,109,111,113,114,115,116,117,133,135,136,137,138,139,140,141,143,154,158,159],driver_path:[44,98],driver_vers:[36,93],drivertestcas:91,drop:[57,133],drown:64,ds4000:91,dso:93,dtype:[11,16,30,151],due:[3,29,46,47,50,58,64,95,159,160],dummi:[6,8,20,25,30,36,119,152,160],dummy_2d_multi_paramet:6,dummy_set:36,dummychannelinstru:6,dummyinstru:[6,8,11,20,23,24,25],dump:93,duplic:[3,115],dur:[58,59],durat:[47,58],dure:[1,31,43,83,85,89,93,115,131,149,159,160],dut:[51,61,149],dwell:42,dynam:[46,47,92,152],e1cb66:54,e8267:105,e8267c:[91,137],e8267d:141,e8527d:[91,96,143],each:[0,1,3,4,5,6,10,11,12,14,17,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,42,43,45,46,47,50,51,53,54,55,58,61,63,64,65,70,71,74,75,76,77,80,82,83,85,92,93,95,99,100,101,104,109,114,115,121,122,123,143,146,147,149,150,151,154,159,160],eachot:160,earli:53,earlier:93,eas:147,easi:[4,13,20,36,143,146,147,149,154],easier:[104,140,141,143,159],easiest:2,easili:[1,6,25,63,115,151,154],echo:95,ect:147,edg:[34,36,50,53],edit:[64,155],editor:143,ee82e:54,effect:[50,64,93,115,149,156],effort:[3,147],eight:[46,47],either:[1,3,7,39,46,47,50,58,74,92,97,106,108,109,115,122,149,151,155,159],elaps:[12,31,35,38,152],elapsed_times_lvl:18,elapsed_times_r:18,electron:[3,154],elem1m1ch1:115,elem1m1ch2:115,elem1m2ch1:115,elem1m2ch2:115,elem2m1ch1:115,elem2m1ch2:115,elem2m2ch1:115,elem2m2ch2:115,element:[1,34,54,59,115,122,151,156,159],element_no:115,elemnum:54,elif:35,elnum:54,elpi:143,els:[2,6,10,11,31,34,37,42,43,51,55,92,115,143,149],elsewher:[123,149],emac:143,email:[143,153],embed:1,emerg:149,emit:[13,152],emoji:143,empow:64,empti:[2,14,15,21,25,35,54,95,111,151],emwri:13,enabl:[36,42,58,61,62,63,64,83,106,113,117,147,156],enable_forced_reconnect:[2,156],enable_record_head:[36,93],enable_remot:101,encapsul:[34,159],enco:31,encod:[31,75,83,92,151],encount:[92,97],encourag:[3,58,143],end:[3,6,14,15,23,64,73,85,88,92,93,111,115,143,147,150,151,154,159],endpoint:[26,115],enforc:[8,147,149],engin:36,enough:[4,6,25,92,97,108,143,146],ensuer:7,ensur:[34,50,53,61,93,108,114,143,147,149,151,155,159],entail:11,enter:[65,82,155,159],entir:[10,33,36,40,57,111,114,123,149,159],entri:[2,74,80,82,93,115,129],entrypoint:131,enumer:[6,8,10,58,59,113,150],enumerate_devic:98,env:[2,30,31,69,155,156],env_file_nam:[2,69],envelop:50,environ:[2,154,156],envis:147,eom:4,equal:[114,151,156],equip:[149,151],equitim:114,equival:[21,115,151,154],err:[99,113],error:[0,2,3,4,18,31,35,46,52,57,60,70,80,83,92,96,99,101,114,115,139,151,152,156,160],error_cod:[99,101],errorcod:92,errormsg:92,escap:18,especi:[64,155],esr:114,essenti:[25,105,114,150,151],establish:[42,60,149,150],estim:[64,149],etc:[1,3,21,24,37,39,51,65,70,75,82,115,143,149,151,159],ethernet:[3,4,48,49,77,115],etr_2v5:36,etr_ttl:36,eumer:86,evalu:87,even:[4,6,21,28,34,46,47,60,72,74,83,85,86,88,92,96,98,99,100,107,113,114,115,143,149,151,159],event:[54,55,58,92,93,95,114,115,152],event_input_imped:115,event_input_polar:115,event_input_threshold:115,event_jump:[29,34,55,115],event_jump_to:[29,34,55,115],eventu:[19,55],ever:150,everi:[1,3,6,12,24,32,34,68,71,80,90,104,114,151,155,159,160],everybodi:143,everyon:143,everyth:[15,54,58,73,129,143,149,151],exactli:[10,20,31,43,50,93,143,149,150,151],examin:[61,108],examp:152,exampl:[0,1,2,7,10,21,22,23,24,65,66,70,73,82,83,86,88,93,96,97,99,109,114,115,137,141,143,146,148,150,154,155,156,157,160],examplewaveform1:55,exce:[43,143],exceed:[12,54,92,108],excel:4,except:[2,3,18,30,31,32,43,57,60,63,92,94,95,96,98,99,106,108,109,114,115,117,124],excitation_mod:42,excitation_range_numb:42,exclus:[97,147],exec_funct:[31,43],exec_str:31,execut:[14,25,31,50,58,75,87,91,92,101,104,111,113,115,146,154,155,159],executor:160,exemplifi:[11,58],exept:58,exercis:[143,149],exis:51,exist:[3,6,8,13,15,18,25,42,51,54,73,74,86,92,115,118,120,141,143,147,149,151,154,156,159],exit:115,exit_kei:115,exmapl:19,exp:[5,6,8,15,57,63],exp_2:14,exp_container_tutori:[5,6,8,9,10,12,14,15],exp_id:[5,14,15],exp_nam:63,expand:[64,96,144],expect:[2,3,6,8,11,31,35,52,58,62,65,74,80,82,92,96,97,100,114,115,143,147,151,160],experi:[5,7,8,9,13,18,23,25,63,64,69,147,148,149,151,152,154,156,159],experiment:[6,7,8,9,10,11,13,52,63,64,149,151,154,159],experiment_contain:[6,7,8,9,11,12,14,63],experimentalist:149,experimentcontain:151,expir:31,explain:[10,14,42,143,147,149,150,152,155,156],explan:114,explanatori:61,explicit:[54,83,85],explicitli:[10,65,70,82,143,159],explor:[25,115,149],exponenti:[6,94],exponential_decai:6,exponentialdecai:55,export_data_as_json_heatmap:16,export_data_as_json_linear:16,expos:[42,43,100,111,156],express:[83,149,159],ext:[31,32,40,55],ext_trigg:33,extend:[54,76,85,97,111,151],extens:[55,76,113,115],extern:[10,36,40,93,111,113,115,151],external_add_n:115,external_clock:36,external_clock_10_mhz_ref:3,external_clock_10mhz_ref:36,external_clock_ac:3,external_reference_typ:115,external_sample_r:[36,93],external_startcaptur:[36,93],external_trigger_coupl:[36,93],external_trigger_rang:[36,93],externalrefparamet:113,extra:[21,28,65,82,83,96,98,99,108,115,117,143,150,159],extra_schema_path:2,extract:[97,108],extrainfo:113,extran:152,extrem:159,f008:108,f1d:91,face:147,facilit:[147,155],fact:[10,113,143,149],facto:149,factor:[3,46,47,58,149],factori:[94,115],fail:[2,140,143,159],failur:3,fairli:64,fairlt:10,faith:149,fake:42,falcon:143,fall:[14,34,111,115],fals:[2,6,10,13,16,21,24,30,31,35,37,38,42,46,47,51,57,58,62,63,64,65,70,71,82,83,84,94,95,96,100,101,105,106,108,109,111,114,115,120,151,156,159],familiaris:24,fanci:152,faq:158,far:[43,64,149],fast:[100,108,115,141,152,159],fast_external_clock:36,faster:[11,51,54,140,143],fastest:[54,58],fastsweep:39,fatol:6,favourit:[24,155],feasibl:[4,154],feat:143,featur:[1,3,4,10,34,37,62,64,133,137,138,139,140,141,144,154,156],fed:149,feed:[3,42,107,114],feedback:[86,149,152,159],feel:[10,62,143],fetch:[28,108],few:[23,40,51,75,96,104,143,148,153],fewer:[46,47],ff4500:54,ff8c00:54,fft:104,fgen:55,fgen_amplitud:55,fgen_dclevel:55,fgen_frequ:55,fgen_offset:55,fgen_period:55,fgen_phas:55,fgen_signalpath:55,fgen_symmetri:55,fgen_typ:55,field:[23,41,42,43,60,65,75,76,82,83,106,108,154,160],field_limit:[43,60,106,108],field_measur:60,field_persist:43,field_ramp_r:43,field_target:[43,60],field_target_cartesian:60,field_target_cylindr:60,field_target_spher:60,field_valu:108,field_vector:60,fieldvector:60,fifo:36,fifo_only_stream:[36,93],fig1:30,fig:[1,7,10,15,18,34,41,42,51,54,58,60,147,149],fig_x_po:121,fig_x_posit:121,fig_y_po:121,fig_y_posit:121,figax:10,figsiz:[1,25,34,121,122],figur:[1,10,30,31,34,54,58,63,121,122,143,150,159],figure_api:1,file:[2,6,8,10,15,18,25,34,55,64,69,71,73,74,76,92,93,101,108,113,115,118,120,134,143,152,155,158,159],file_loglevel:[2,156],file_path:115,filenam:[30,54,55,59,69,115],filepath:[18,54],filestructur:115,fill:[10,21,23,25,33,63,64,80,115,159],filter:[58,61,104],filter_slop:33,filw:115,final_simplex:6,finalis:18,find:[19,32,35,44,62,73,93,109,143,147,149,152,153,155,156],find_board:[36,93],find_modul:114,findal:108,finder:25,fine:[6,101,159],finish:[1,11,23,24,25,27,28,36,51,58,61,93,99,106,115,117,135,159],finit:[32,46,47,100,101],fire:[46,47],firmwar:[3,4,13,24,25,26,27,28,29,30,31,32,33,34,36,39,40,41,42,43,44,45,48,49,50,51,52,53,55,57,59,60,61,62,63,92,93,95,96,98,99,107,108,111,113,114,115,138],first:[1,2,4,6,7,8,10,12,14,21,23,24,25,28,29,31,32,34,36,40,42,45,51,54,59,60,62,64,65,70,76,82,83,87,94,106,115,121,122,143,149,151,152,155,159,160],first_delai:31,first_exp:14,first_param_list:6,fit:[34,54,61,93,114,143,149,151],five:[64,113],fix:[22,42,50,58,60,70,75,85,108,133,134,138,139,140,141,142,143,159,160],fixabl:143,fixtur:[4,9,91],flag:[46,47,93,101,113],flake8:143,flat:34,flavor:159,flexibl:[6,58,146,147,154],float_round:117,flow:[46,47,57],flower:11,flush:[40,114,115,147],flush_error_queu:[40,96],fly:[14,15],fmt:[2,23,25,73],fmt_counter:73,fmt_date:73,fmt_time:73,fname:115,focus:143,folder:[2,3,4,14,19,72,76,115,156],follow:[1,3,4,6,10,12,18,20,25,26,34,40,41,42,54,59,60,61,63,64,83,95,97,115,143,149,150,151,155,156,159,160],foo:[16,143,151,156,160],footer:143,forbidden:10,forc:[35,38,51,54,115,147],force_ev:115,force_logicjump:115,force_reload:115,force_trigg:[53,115],force_trigger_ev:115,force_triggera:115,force_triggerb:115,foreground:[140,159],foreground_color:121,foreign:92,forev:97,forg:[59,115],forget:19,fork:143,form:[3,4,6,27,59,75,93,108,149,151],format:[3,6,7,10,11,23,25,26,27,28,29,30,31,39,41,42,43,46,47,51,54,55,57,58,60,71,73,75,76,92,97,111,115,118,120,151,154,156,159],formatloc:[2,23,25,120,129,146],formatt:[17,24,71,118,120,129,137,146,152,156,159],formattedsweep:96,former:[27,28],formerli:[3,4,116],formul:147,formula:97,forth:6,forward:[36,72,93,133],foul:54,found:[3,4,14,43,51,54,74,87,92,93,97,101,114,115,143,150,152],four:[3,37,62,92,95,109,149],fourier:93,fourth:151,fpga:93,fpt:32,fraction:121,framework:[34,143,154,159],free:[6,62,92,98,151,155],free_mem:93,freedom:83,freeli:[149,151,159],freq:[13,32,51,59,109,113],freqfactor:13,frequenc:[3,11,25,33,34,51,58,59,61,63,93,94,111,113,114,115,149,152,160],frequency0:11,frequency1:11,frequency2:11,frequency_ext:[34,114],frequency_set:51,frequencysweep:[111,113],frequencysweepmagphas:111,frequent:[12,34,143],freshli:155,fridg:[108,152,154],friendli:104,from:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,20,22,23,24,25,26,27,28,29,31,32,33,35,36,37,38,39,40,41,42,44,45,46,47,50,51,52,54,55,57,58,59,60,61,62,63,64,65,70,71,73,74,75,76,80,82,83,92,93,94,96,97,100,101,104,105,107,108,111,113,114,115,117,118,119,122,123,139,143,145,146,149,150,151,152,154,159,160],front:[58,101,115],frontend:156,full:[0,7,18,34,40,45,46,50,57,58,64,71,76,114,115,118,120,151,154],full_nam:[0,16,24,25,36,70],full_trac:51,fulli:[10,50,51,58,64,143],fullrang:101,fun:[6,12,100],func:[3,31,87,115],func_nam:35,function_typ:13,functool:[6,8,61],fundament:159,further:[19,64,109,146,154],furthermor:[1,6,10,60,104],futur:[45,115,143,147,160],gain:[22,107,114,149],garbag:93,gate:[6,8,11,14,15,23,24,25,40,66,95,146,149,159,160],gate_frequ:160,gate_frequency_set:160,gauss:[6,8],gauss_model:[6,8],gaussian:[6,8],gave:54,gcc:92,gd_ch1:32,gee:58,gen:115,gener:[3,4,6,8,10,13,25,29,32,34,40,50,53,54,60,62,63,71,73,85,92,94,96,101,104,105,109,111,113,114,115,137,141,143,146,148,151,152,154,156,159],generate_awg_fil:[30,115],generate_channel_cfg:115,generate_sequence_cfg:115,geograph:156,get:[0,2,3,4,6,7,8,10,11,13,20,21,22,23,24,25,26,30,31,34,35,36,37,38,39,41,42,43,46,47,50,52,53,56,57,58,60,61,63,64,65,66,70,74,81,82,83,91,93,96,99,100,101,104,107,108,109,111,113,114,115,123,143,149,151,152,156,159,160],get_al:[101,108,111,115],get_arrai:64,get_board_info:93,get_buffers_en:101,get_capture_data:[34,114],get_chang:108,get_cmd:[3,4,10,11,25,83,84,93,108,160],get_compon:[43,60],get_current_folder_nam:115,get_data:[7,15,41,97,151],get_data_by_id:[7,11],get_data_channels_dict:[34,114],get_data_channels_paramet:[34,114],get_data_channels_valu:[34,114],get_data_set:[0,1,25,26,27,28,31,61],get_error:115,get_filenam:115,get_filter_valu:101,get_folder_cont:115,get_idn:[3,36,45,92,93,95,96,98,99,101,107,108,113,114,115],get_instrument_valu:91,get_jumpmod:115,get_last_error:99,get_latest:[53,58,65,82,83],get_list_of_first_param:6,get_metadata:151,get_mod:101,get_module_idn:114,get_module_statu:114,get_num_channel:93,get_number_of_channel:98,get_opt:96,get_paramet:151,get_pars:[3,4,83,84],get_parser_on_off:111,get_pol_dac:101,get_preambl:109,get_processed_data:[36,93],get_raw:[11,13,58,91,94,96,109,111,113,114,115],get_remote_set:101,get_sample_r:93,get_shaped_data_by_runid:6,get_sq_mod:115,get_sqel_loopcnt:115,get_sqel_trigger_wait:115,get_sqel_waveform:115,get_stat:115,get_v:6,get_valu:[34,114],get_voltag:114,get_ydata:[41,42],getattr:3,getcwd:[7,11,18,54],getlogg:[17,53,54,58,62,63],gettabl:[3,10,21,65,82,83,107,114,119,146,159],getter:[4,31,146],getx:160,ghz:[61,63],giga:103,giga_b:103,gimm:40,git:[35,152,154,155],github:[143,145,146,152,154],giulioungaretti:143,give:[1,4,21,25,32,42,60,61,62,63,64,80,95,108,115,143,159],given:[0,1,6,12,34,46,47,55,60,67,77,92,93,95,97,98,109,114,143,149,151,159,160],global:[3,37,50,51,99,152],glori:4,gloriou:12,gnuplot:[76,154],gnuplot_format:[17,18,24],gnuplotformat:[17,24,71,118,120,129,146,159],go_to:[29,34,55,115],goal:143,goe:[4,42,57],going:[3,20,34,62,101,149,150],golden:3,gone:[52,57],good:[2,3,10,13,25,41,43,53,55,58,111,143,147,148,150],googl:143,got:[18,28,143],gotexcept:30,goto_l:30,goto_root:115,goto_st:[54,115],goto_to_index_no:115,gotten:[40,46,47,54,159],gpib0:[13,33,34,35,38,41,57,61],gpib:[3,4,42,63,115,117],grab:155,grade:64,gradient:64,gradual:37,grai:[64,121],grant:149,graph:[25,61,65,82,83,149,151],graphic:149,graphicswindow:121,great:[50,143],greatest:159,green:34,grei:64,grid:[10,34,51,111,147],grim:15,ground:[50,97,111],group:[1,3,18,78,92,109,111,143,149,150,154,159],group_delai:63,group_paramet:42,groupparamet:42,grow:[149,153],grpx:[43,108],grpy:43,grpz:43,gs200:[91,136,141,152],gs200_monitor:117,gs200except:117,gs210:152,guarante:[2,34,43,114],gui:[1,2,31,38,58,143,154,156],guid:[1,93,141,143,150,153,155,156],guid_compon:156,guidelin:143,h5fmt:17,hack:[115,143,156],hackish:30,had:[11,54,92],half:[10,34,42,58,64],halfrang:101,halt:89,hammer_tim:23,han:54,hand:[7,10,54,55,64,147],handel:113,handl:[3,4,6,21,65,70,71,75,82,92,93,96,100,101,113,121,140,146,149,151,152],handle_buff:93,handle_clos:1,handler:[17,96],hang:143,happen:[3,6,46,47,54,70,87,93,149,159],happi:[143,152],hard:[115,143,150],harder:[143,159],hardwar:[46,47,54,59,60,63,95,98,99,101,108,111,113,115,143,146,159],harm:[32,109],harmon:33,harvard:[37,91],has:[1,3,6,10,11,12,21,24,25,33,34,37,39,40,42,45,46,47,50,52,53,54,57,58,60,62,63,64,65,70,76,82,83,92,93,96,97,104,106,113,114,115,143,149,150,151,156,159,160],has_current_r:106,has_pid:97,hasattr:[31,35,43],hasn:[3,92],have:[1,2,3,4,5,6,8,10,12,13,14,15,20,21,23,24,25,34,39,42,43,45,46,47,51,53,54,55,58,59,60,61,62,63,64,65,70,74,76,81,82,83,86,91,92,93,94,95,96,97,98,100,101,104,107,111,114,115,122,143,146,147,149,151,153,154,155,156,159,160],haz:135,hdf5:[137,159],hdf5_format:17,hdf5format:17,head:115,header:[36,40,92,143],heart:149,heat:[64,152],heater:[97,108,152],heater_1:41,heater_off:108,heater_on:108,heatmap:[16,121,122,149,156],heck:150,height:[121,122],helium:[108,140],help:[2,3,19,54,58,59,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,96,109,115,119,121,122,123,143,149,154,159],helper:[2,17,54,104,129,156],henc:[34,42,95,97],here:[1,3,4,6,7,10,13,14,21,33,34,36,39,41,42,44,45,46,47,50,51,58,64,70,92,96,97,98,99,100,104,107,108,113,114,115,119,143,149,150,151,155,159],hesit:143,hewlett:[61,94],hidden:62,hierarch:147,hierarchi:144,high:[3,11,25,34,50,55,64,97,111,115,143,147,159],high_definition_bandwidth:50,high_definition_st:50,higher:[60,148,156,159],highest:[14,73,156,159],highlevel:31,highli:[6,155],highz:32,hislip0:28,hist:64,histogram:64,histori:[115,143],hiswaveform:30,hkey_current_usersoftwareoxford:108,hmc8041:91,hmc8042:91,hmc8043:[48,91],hmc804x:[91,111],hmc:152,hold:[3,6,12,14,28,33,39,43,58,94,96,108,111,114,115,146,149,150,151,159,160],hold_repetition_r:115,holdoff:58,hole:152,home:[2,7,11,14,64,69,143,156],home_file_nam:[2,69],homepag:155,homogen:152,hood:6,hook:[10,91],hopefulli:62,horisont:[53,58],horizont:[53,152],horizontal_scal:53,host:[46,47,93],hot:2,hotfix:143,hound:[52,113],how:[2,3,6,10,11,14,20,21,25,42,45,51,54,58,60,61,64,65,74,76,80,82,83,85,86,93,108,121,143,145,146,149,150,152,153,159,160],howev:[4,7,10,32,43,50,51,60,64,93,143,147,149],hp33210a:91,hp8133a:91,hp8753d:[91,141,152],hp8753d_tutori:61,hp8753dtrace:94,hp_83650a:91,hpintpars:94,htm:[96,101],html:[1,4,44,88],http:[1,4,44,88,96,101,114,143,145,152,155],hub:42,huge:[65,82],human:[3,25,98,136,150],hw42000000:48,i3d:60,iPS:[137,152],ib_command_find:96,id1:76,id2:76,id3:76,idea:[3,25,55,111,143,149,150,152,153],ideal:143,ident:[3,21,39,104,115,160],identi:32,identif:156,identifi:[65,71,74,76,78,82,83,95,97,108,114,150,151,156],idl:[56,115,152],idn:[3,4,24,25,30,33,36,39,43,50,55,56,61,92,95,96,98,99,100,101,107,108,113,114,115],idn_dict:4,idn_param:95,idr:108,iew:64,if_bandwidth:63,iff:115,igh:108,ignor:[51,55,65,82,87,93,115],ignore_kwarg:31,igor:154,ill:149,illustr:[1,61,149],ilm200:91,ilm:[108,140],imag:[15,64],imagin:12,imaginari:[51,63],imedi:42,imm:[28,34,40,114],immedi:[25,26,32,40,45,46,47,67,72,93,104,114,123,143,147,152,159],immut:151,imp:30,impact:159,imped:[3,4,25,36,50,58,93,111,152],impedance1:36,impedance2:36,imper:143,implement:[36,42,60,62,63,64,74,77,85,86,92,93,96,97,98,104,108,111,113,114,115,123,147,150,152],implic:5,implicit:143,implicitli:159,import_dat_fil:9,importantli:[34,147],importlib:17,impos:159,imposs:6,improv:[142,143,151],imprrov:138,imshow:15,inc:[27,39,60],inch:122,includ:[3,21,26,34,64,65,73,82,83,85,88,92,96,98,99,105,107,108,113,114,115,119,121,122,143,146,149,151,152,153,154,156,159,160],include_decim:93,inclus:115,inconsist:159,inconsistensi:115,inconsit:53,incorrect:[4,10,93,143],increas:[7,10,21,50,60,64,143,150],increment:[76,83,139,159],ind:58,inde:[12,13,57,60,61,143,149],indend:58,indendet:[62,63],indent:143,independ:[6,8,74,147,149,151,152,159],indepent:152,index0:21,index1:21,index:[1,18,21,97,100,101,115,122,151,159],indic:[0,1,60,64,70,97,115,151,159,160],indirectli:34,individu:[1,6,7,10,11,32,34,42,45,51,60,63,67,71,85,96,101,106,113,152],induc:[64,149],inf:[31,32,40,46,47,96],infer:[70,147,149,151],inferred_from:149,infin:115,infiniium:[13,91,141,152],infiniiumchannel:96,infinit:[32,54,55,115],infinium:62,info:[2,3,12,16,31,38,58,73,93,115,153,156],inform:[3,12,14,24,25,29,34,36,55,65,73,77,82,83,88,93,113,115,121,140,143,149,151,154,156,159],infrastructur:152,inherit:[31,93,111,115,151],inifit:[46,47],init:[43,95],init_measur:[28,31,105],init_s_param:[51,111],initi:[1,3,25,45,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,91,92,108,114,115,118,119,120,121,122,123,149,152,154,159],initial_valu:[1,3,21,22,81,83],initialis:[4,13,24,31,96,109,111,115,152],initialise_databas:[5,6,7,8,9,10,12,14],initialise_or_create_database_at:[11,64],initialz:101,inlin:[62,63],inner:[0,1,21,70,76,159],inp:97,input:[2,3,13,31,35,42,43,54,60,62,75,83,91,92,93,97,101,108,111,113,114,115,143,146,151,152,159],input_channel:[41,42],input_config:[33,34],input_coupl:33,input_imped:3,input_rang:34,input_shield:33,insert:[3,6,7,11,12,62,63,73,147,152,156],insert_data:7,insertseg:59,insid:[2,3,11,21,26,43,65,67,71,80,82,97,108,115,118,120,143,149,152,154,159],insist:149,inspect:[2,6,14,60],inst0:[3,13,26,27,29,30,31,34,39,40,48,49,50,51,54,55,59,62,63,109,111],inst1:6,inst2:6,inst:30,instal:[58,88,92,101,104,113,114,117,131,140,141,143,145,154],instanc:[1,2,3,25,30,34,65,71,75,82,83,91,93,95,97,101,104,107,108,114,115,149,159],instance_id:98,instant:92,instantan:[46,47],instanti:[3,4,32,36,39,58,61,71,100,106,143,152,156,159],instdict:54,instead:[0,1,10,13,14,22,25,30,34,58,64,70,98,99,108,115,160],institut:3,instr:[3,4,13,26,27,28,29,30,31,32,33,34,35,38,39,40,41,42,46,47,48,49,50,51,53,54,55,57,59,61,62,63,95,108,109,111],instruct:[4,60,141,149,154,155],instrument:[0,6,7,8,11,18,21,22,26,27,30,31,33,34,35,36,38,39,40,42,43,44,46,47,48,49,50,51,54,55,56,57,58,60,61,65,67,70,75,77,79,81,82,83,84,88,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,129,138,140,141,143,144,151,152,154,155,156,158],instrument_cod:83,instrument_config:2,instrument_driv:[3,4,13,18,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,143],instrument_i:106,instrument_mock:[6,8,11,17,20,23,24,25],instrument_nam:[24,25,36,70],instrument_testcas:91,instrument_x:106,instrument_z:106,instrumentchannel:[3,67,95,96,97,98,99,100,104,106,108,109,110,111,112,114,115,117,129],instrumentrefparamet:138,instrumentserv:[159,160],instrumentstriton:108,instur:34,insuffici:159,intact:10,integ:[3,6,14,21,65,70,73,82,92,114,115,117,122,150,156,159],integr:[1,4,13,35,38,39,143,151,155,159],intellig:[108,159],intend:[60,65,82,86,93,113,150,159],intent:148,intenum:113,inter:[32,64,101],inter_delai:[24,25,36,83,101],interact:[1,3,34,41,42,97,114,143,152,159],interchang:150,interdepend:[148,150,159],interest:[42,58,64,143,149,159],interfac:[3,4,42,58,92,97,98,109,115,147,148,152,159],interleav:[36,115,152],interleave_adj_amplitud:115,interleave_adj_phas:115,interleave_sampl:[36,93],intermedi:143,intermix:151,intern:[3,7,11,33,34,36,40,55,58,60,70,83,93,96,104,108,114,115,152],internal_clock:[3,36],internal_trigger_r:115,interpret:[25,39,149,151,159],interrupt:[92,152,157],interv:[12,64,121,122,147],intervent:147,intrins:147,introduc:[133,141],introduct:[148,152,158],intrument:55,intuit:149,inv:40,invalid:[3,97,149,152],invalidate_trac:94,invert:[3,22,38,50,107,111,114,149],investig:[5,29],invit:143,invok:[3,58,151],involv:[24,152,154,159],io_manag:[71,118,120,159],iomanag:146,ion:[41,42,58],ipinstru:[3,92,96,98,99,106,107,108,113,114,115,129,146],ips120:[91,140],ipykernel:30,ipynb:14,ipython:[0,1,2,6,7,9,10,13,15,18,30,31,33,34,35,36,38,41,42,43,50,51,52,53,56,58,59,61,154,155,156],ipywidget:[41,42],iq_arrai:21,iqarrai:21,iqr:64,irang:[3,47,100],irrelev:55,irrespect:[46,47,50,115],irrevers:[55,92,98,159],is_awg_readi:115,is_empti:151,is_marked_complet:151,is_numb:109,is_setpoint:[16,24,70],is_typ:2,isobu:108,issu:[60,115,135,136,139,143,146,148],issue_warning_on:31,ital:146,item:[21,56,65,73,82,85,100,151],iter:[67,85,86,146,151],iter_error:2,ithaco:[3,91,152],ithaco_1211:[3,38,91],its:[1,3,4,6,8,21,24,25,26,34,37,42,45,46,47,50,54,58,59,64,70,75,83,92,93,98,108,114,115,119,122,143,146,149,150,151,159,160],itself:[13,22,42,62,67,73,83,93,97,115,143,149,151,159],iv_sweep:[27,39],ivvi:[34,91,137,139,140,141],javascript:[0,1,6,7,9,10,13,15,18,30,31,33,34,35,36,38,41,42,50,51,52,53,56,58,59,61,143],jen:[143,153],jeniels:2,jhn:51,jhnsrcqcodesqcodesinstrumentparamet:58,job:[159,160],jog:99,join:[2,7,11,12,18,34,54,143,153],jorgenschaef:143,json:[2,6,10,14,24,51,64,65,69,77,78,82,83,88,100,114,115,137,151,152,154,156,159],json_config:2,json_export:16,json_template_heatmap:16,json_template_linear:16,jsonschema:2,jtar_index_no:115,jtar_stat:115,jump:[25,37,54,55,101,115],jump_log:115,jump_tim:115,jump_to:[54,115],jumplog:115,jupyt:[1,25,42,154,155,157],just:[0,3,8,10,20,25,26,28,34,39,42,53,54,58,62,75,76,89,95,97,100,101,114,143,146,149,155,158,159,160],keep:[14,59,60,64,74,93,95,113,138,143,154,156,159],kei:[1,3,13,15,34,41,42,54,71,85,97,114,115,120,123,150,151,156,159],keightlei:138,keith:[27,35,38,39,136],keith_smua_curr:27,keith_smua_iv_sweep:27,keith_smua_volt_set:27,keithlei:[3,27,115,133,137,141,152],keithley1:[35,38],keithley2:[35,38],keithley_2000:91,keithley_2400:91,keithley_2600:[3,27,35,38,39,91],keithley_2600_channel:[3,27,39,91],keithley_2614b:[3,115],keithley_2700:91,keithley_smua:39,keithley_smua_iv_sweep:39,keithley_smub:39,keithleychannel:[3,115],kelvin:[41,42,97],kelvinox:[91,140],kept:[149,150,156],kernel:[14,156,157],keysight:[13,25,91,137,138,139,140,141,152],keysight_33500b:[25,40,91],keysight_33500b_channel:91,keysight_34460a:91,keysight_34461a:91,keysight_34465a:[26,28,31,91],keysight_34470a:91,keysight_344xxa:96,keysight_b2962a:91,keysight_e8267d:91,keysight_m3201a:96,keysight_n5183b:91,keysight_setup:13,keysight_teardown:13,keysight_volt:26,keysightagilent_33xxx:[13,91],keysightchannel:96,keyword:[10,14,34,64,73,75,87,151],khz:[3,50,51,52,53,61],kid:12,kilo:103,kilo_b:103,kind:[0,34,58,115,149,160],kmstring:3,knob:[3,159],know:[6,18,25,34,42,55,85,86,143,151,160],known:[3,4,10,42,70,93,116,149,151],knownmodel:3,kwarg:[1,2,3,4,6,21,31,35,36,43,75,77,78,79,81,83,84,86,87,88,93,94,95,96,97,98,100,101,104,105,106,107,108,109,111,113,114,115,116,117,120,121,122,123,133,151,160],lab:[42,58,104,154],label1:76,label2:76,label3:76,label:[0,1,3,7,10,11,13,14,18,21,24,25,30,34,36,42,54,58,65,68,70,73,76,82,83,90,91,94,96,115,143,150,159,160],laboratori:149,lack:95,lake:41,lakeshor:[91,152],lakeshore_372:42,lakeshore_bas:91,lakeshore_model372:42,lakeshorebas:97,lambda:[6,20,25,60,66],lan:42,languag:[76,108,147,149],laptop:42,larg:[4,54,83,96,109,115,143],larger:[7,83],last:[1,2,12,24,31,35,43,50,58,63,69,83,93,100,104,115,141,143,159],last_count:63,last_saved_index:74,latenc:[25,26],later:[3,58,61,65,71,72,73,82,120,123,143,159,160],latest:[4,34,50,93,96,100,114,115,159],latest_cal_d:[36,93],latter:[27,28,122],launch:[104,155],layer:[147,149],layout:150,lazi:152,lead:[108,143,151],leak:93,learn:[4,58,154],least:[58,143,146,151,159],leav:[44,65,77,82,108,115,149],leave_persistent_mod:108,left:[1,10,23,93,111,121,151,155],legaci:[42,147,156],legacy_import:9,legacy_mp:156,legend:[7,18,30,34,51],len:[3,10,11,12,28,31,34,41,42,58,92,115,160],lenght:[6,7],length:[6,7,11,12,16,21,26,34,40,54,55,58,82,92,104,114,115,119,151,159,160],less:[4,8,13,61,83,143,151,159],lest:54,let:[1,4,6,8,10,11,14,15,23,24,34,36,39,42,45,50,51,55,57,60,61,64,70,121,143,149,156,160],letter:[98,143],leve:3,level:[2,3,6,16,25,30,31,34,36,50,52,61,62,70,76,108,114,115,117,140,143,147,149,152,156,159,160],levelnam:[6,17],levelv:3,lib:[2,30,31,35,139],librari:[31,54,92,108,143,155,156],lie:[5,14,64],lies:149,life:[12,143,149],light:24,like:[3,4,6,11,12,14,22,25,32,34,42,50,51,54,58,59,60,65,70,74,75,82,85,86,96,105,108,111,113,115,143,146,149,154,156,159],limit:[1,4,12,36,41,42,43,45,46,47,50,53,57,59,60,63,64,92,97,99,106,108,143,147,150,156,159,160],limit_func:108,limit_statu:45,limiti:39,limitv:39,lin:[58,61,113],linalg:60,line2d:[15,31,58,64],line:[3,4,6,10,15,20,24,25,29,31,35,38,39,41,42,44,58,64,76,121,122,143,153,154,155],linear:[0,16,22,24,51,61,160],linear_magnitud:63,linearli:[58,146],liner:143,linewidth:10,link:[19,70,86,92,93,146,150,155],linkag:144,linspac:[0,6,8,10,11,12,13,28,29,30,41,54,55,160],linux:155,list:[1,6,10,12,21,25,27,28,29,30,34,36,41,42,47,63,67,68,71,73,75,78,85,90,92,93,96,98,99,100,101,104,107,108,111,113,114,115,120,123,129,131,135,137,143,146,151,152,156,159,160],listcomp:31,liter:143,littl:[10,55,143,159],live:[1,10,41,42,118,145,152,159,160],live_plot_temperature_read:[41,42],load:[2,3,7,14,21,30,34,54,55,59,63,69,74,92,115,118,135,152,154,156,160],load_and_set_sequ:115,load_awg_fil:[30,115],load_by_id:[7,9,11],load_data:[25,71,129],load_experi:14,load_experiment_by_nam:63,load_ext:2,load_last_experi:[6,7],loaded_data:25,loadfrom:30,loadlibrari:3,loadseqxfil:[29,34,55,59,115],loadtestsfromtestcas:17,loadwfmxfil:[29,55,115],loc:[18,73],loc_fmt:23,loc_provid:[2,23,25,73],loc_record:120,local:[0,2,21,26,27,28,54,58,62,65,71,75,77,82,83,88,93,95,108,115,117,143,150,154,155,159,160],localnod:3,locat:[0,1,2,7,14,16,17,21,24,26,27,28,31,33,35,36,38,39,46,47,50,51,53,58,61,62,71,72,73,74,96,115,118,120,150,151,152,155,156,159,160],location1d:9,location2d:9,location_provid:[2,25,73,120,146],lock:[13,25,58,67,101,108,114,141,149,152],lockin:[3,33,34,107,114],lockin_ch1_databuff:33,log10:13,log:[2,6,11,12,16,17,18,20,30,31,41,42,53,54,58,61,62,63,97,104,113,154,156,160],log_analysi:18,log_tau:13,logarithm:13,logbook:149,logdata:18,logfil:152,logfile_to_datafram:18,logger:[17,53,54,62,63],logic:[78,115,143,149,151],logic_jump:[30,115],loglevel:[2,18,156],logo:135,lograng:85,logview:143,longer:[42,51,64,73,76,80,141,151],look:[3,6,10,12,13,14,20,25,42,46,47,50,53,55,58,62,64,73,88,143,149,155,156,159,160],loop:[0,1,6,21,23,27,28,31,35,36,38,41,51,53,58,61,63,65,66,70,71,74,76,82,83,87,89,93,96,97,115,119,123,129,133,135,146,147,151,152,158,160],loop_indic:31,loop_result:21,loopcount:115,loos:24,lose:28,lost:92,lot:[3,60,70,115,143],loudli:25,love:[143,153],low:[3,25,31,34,41,51,55,58,61,64,96,97,115,159,160],lower:[64,70,109,156,159],lowest:[73,114,147,156],lsa2251:41,lsci:41,lua:[27,39,115],luasweepparamet:115,lvl:18,m100l:45,m1s:[29,54,115],m2s:[29,54,115],m3201a:91,m3300a:[91,137],m3300a_awg:96,m3300a_dig:96,m4i:[136,137,139],mac:[35,38],machin:[14,27,36,115,143,149,150],maco:155,made:[2,4,12,58,104,108,149,156],mag:[61,63,96],magic:[23,54,156],magnet:[42,43,60,106,108,133,137,140,154,160],magnitud:[51,60,63,99,111,113,159],magnitur:51,mai:[2,3,4,7,10,11,12,14,15,24,25,29,37,39,46,47,50,51,53,54,58,64,71,74,75,85,86,96,97,99,113,115,121,122,131,143,146,147,149,150,151,152,156,159],mail:153,main:[1,24,34,93,115,159],mainfold:[2,156],mainfram:114,mainli:[25,43],mainplussub:59,mainseq:59,maintain:[3,107,114,143,144,151,153,159],major:[4,149],majorana:[10,14,15,156],make:[3,4,6,8,10,13,15,20,21,25,26,27,29,30,33,35,36,38,39,41,42,46,47,50,58,60,61,64,70,75,76,80,93,94,97,100,101,108,109,114,115,143,146,147,149,152,154,155,159],make_and_save_awg_fil:[54,115],make_awg_fil:115,make_directori:115,make_send_and_load_awg_fil:[54,115],make_seqx_from_forged_sequ:115,makeseqxfil:[29,34,55,115],makeseqxfilefromforgedsequ:59,makesinewf:30,makewfmxfil:[29,55,115],man:32,manag:[3,14,35,36,71,73,74,93,101,108,114,120,147,152,155,159],mandatori:[33,115,143],mani:[1,3,4,6,14,15,21,42,58,70,71,76,85,86,93,115,139,143,149,151,152,159],manner:54,manual:[2,22,32,34,39,41,42,51,58,59,60,63,64,93,96,97,101,105,107,108,109,111,113,114,115,147,152,154,159,160],manualparamet:[0,1,3,7,10,21,22,36,113,129,141,160],many_data:[5,14],manysinesincreasingfreq:30,map:[3,12,28,64,75,81,83,93,96,108,114,115,122,151,159],mappabl:64,mark:[64,114,150,151,159],mark_complet:[16,151],marker1:115,marker1_amplitude_n:115,marker1_high:[34,55],marker1_high_n:115,marker1_low:[34,55],marker1_low_n:115,marker1_method_n:115,marker1_offset_n:115,marker1_skew_n:115,marker1_waitvalu:55,marker2:115,marker2_amplitude_n:115,marker2_high:55,marker2_high_n:115,marker2_low:55,marker2_low_n:115,marker2_method_n:115,marker2_offset_n:115,marker2_skew_n:115,marker2_waitvalu:55,marker:[29,30,34,54,55,115],mashup:135,mask:93,mass:115,master:[48,59,143,152,155],match:[4,6,15,50,54,58,73,75,76,82,83,92,93,108,111,114,115,151,159],math:60,matlab:1,matplot:[0,25,33,36,39,50,51,53,61,62,129,138,141,152],matplotlib:[0,5,6,7,9,10,13,15,17,18,20,23,26,27,30,31,33,34,35,36,37,38,41,42,50,51,52,53,54,55,56,58,59,60,61,62,63,64,122,152,156],matter:[4,54,143],maunual:2,max:[40,42,62,63,64,76,83,101,113,114,115,156],max_delai:84,max_freq:96,max_frequ:114,max_imped:109,max_pow:96,max_sampl:[36,93],max_status_ag:100,max_subplot_column:1,max_val:95,max_val_ag:[83,84],max_valu:101,max_work:160,maxim:[6,8,46,47,64,115,156],maximum:[34,52,60,83,95,99,114,156,159],mayb:[70,80,143],mc_channel:98,mcl_rf_switch_controller64:[44,98],mea:[6,7,8,10,11,13,33,52,63,149],mead:6,mean:[2,3,5,7,12,21,24,27,28,29,42,50,51,55,58,60,80,83,99,108,115,143,149,156,159,160],meander:6,meaning:[3,64,149],meaningless:143,meant:[75,104],meantim:12,meas_bp_ch1:59,meas_bp_ch2:59,meas_elem:59,meassur:51,measur:[0,1,3,7,8,9,10,11,21,23,26,27,28,31,33,34,35,36,38,39,42,43,45,48,49,50,51,52,53,59,60,62,64,65,70,71,76,80,82,83,86,87,91,96,99,104,106,107,111,114,117,123,129,133,139,147,148,150,151,152,158],measure_gauss:[6,8],measure_posit:[45,99],measured_param:[3,107,114],measured_v:1,measured_val_2:1,measured_valu:86,measurement_freq:59,measurementsubsystem:96,measurerange_i:[27,39],measurerange_v:39,measureseq:59,meat:115,mechan:[101,149],media:115,medium:97,meet:151,mega:103,mega_b:103,member:[93,154],memori:[5,55,71,92,93,96,100,114,115,120,156,159],memory_s:[36,93],memrori:54,mention:[3,10,34,42,114,143],menu:155,mercuri:[137,152],mercuryip:[43,91],mercuryips_visa:[43,91],mercuryipsarrai:108,mercuryslavep:108,merg:143,merger:3,messag:[6,11,17,18,30,31,40,53,54,95,96,100,101,108,114,115],message_len:101,messagebas:31,messur:51,met:[83,93,131],meta:[15,20,58,154,158,159],meta_serv:160,meta_server_nam:160,metadat:[78,86,149],metadata:[3,15,25,38,65,70,74,77,78,82,83,88,91,98,114,129,137,147,148,149,154,159],metadata_fil:76,metal:42,meter:[3,23,25,39,108,115,140],meter_voltag:23,method:[1,2,3,6,7,13,21,25,27,28,34,42,43,46,47,54,58,60,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,91,93,97,98,99,100,104,106,108,113,114,115,119,121,122,123,143,151,155,159,160],methodnam:91,mhz:[50,51,58,63],mi4:133,miasta:143,microsoft:[113,143,153],might:[6,10,12,13,37,39,64,93,106,143,149,159],mikhail:143,millisecond:[114,151],millivolt:10,mimic:146,mimick:159,min:[40,64,101,115,156],min_count:[12,16,151],min_freq:96,min_imped:109,min_pow:96,min_val:95,min_valu:[21,101],min_wait:[12,16,151],mind:[59,64,93,149],mini:[44,61,76,98,141],minicircuit:[91,152],minicircuitshidmixin:98,miniconda3:2,minim:[6,55,58,147],minimum:[52,83,95,101,147,151],minor:133,minu:156,minut:[3,99],mip:43,mips_grpi:43,mips_grpx:43,mips_grpz:43,mips_r_target:43,mips_y_target:43,mirror:159,misc:129,misinterpret:54,mislabel:10,mismatch:92,miss:[143,152,160],mistak:143,mix:[3,143,151,155],mixer:101,mixin:98,mmem:30,mmemori:30,mock:[6,8,20,23,24,60,143],mockinstru:146,mockparabola:17,mockparabola_run:17,mode:[0,3,21,26,27,28,32,34,36,37,39,42,43,49,50,55,57,58,60,63,71,92,93,94,97,100,101,104,108,111,113,114,115,152,156,159,160],model:[3,6,8,24,25,27,36,38,39,41,43,45,55,61,64,92,93,96,97,98,99,106,107,108,109,111,113,114,115,143,146,152,156,159],model_325:[41,91],model_325_curv:97,model_325_heat:97,model_325_sensor:97,model_336:91,model_336_channel:97,model_372:[42,91],model_372_channel:97,model_372_mock:42,modest:24,modif:[14,151,156],modifi:[1,6,13,14,47,83,85,104,143,151],modified_rang:74,modify_result:151,modul:[2,3,4,18,25,31,34,35,43,55,131,141,143,156],modular:[151,154,159],mohm:[27,50],moment:[10,36,113,115],monitor:[80,89,97,117,123,133,146,154,159],monitor_out:[42,97],monoton:6,month:155,more:[1,4,6,7,8,10,12,15,24,25,34,46,47,51,54,58,61,62,64,71,75,76,80,83,93,98,104,115,132,139,143,146,147,149,150,152,154,155,159],moreov:[10,114],most:[1,2,3,4,6,12,21,31,34,35,36,37,42,43,50,51,58,82,83,93,96,105,111,113,115,143,146,147,149,155,159],mostli:[58,146],motion:152,motiv:[143,150],motor:99,mount:[45,99],move:[3,45,55,60,61,99,108,115],move_ab:[45,99],move_limit:99,move_rel:[45,99],movement:[45,99],mpl_connect:1,msec:3,msg:[34,108],mso8104a:13,mso:[13,62],mso_chan4_trac:62,msos104a:[62,96,141],mua:46,much:[3,4,7,11,51,55,64,74,111,143,159],multi:[25,100,132,159],multiarrai:114,multichan_paramclass:67,multichannel:93,multichannelinstrumentparamet:[67,100],multidimension:11,multidimspectrum:11,multilin:143,multimet:[3,22,57,96,115,137],multiparamet:[3,51,104,107,108,111,114,129,137,152],multiparamt:6,multipl:[0,1,10,14,21,36,42,47,52,58,67,75,82,83,93,96,97,101,105,111,115,152,159,160],multipli:[83,152,159],multiprocess:[35,132,137,151,154,160],multityp:[36,146],multmet:57,must:[3,6,10,12,21,23,25,29,43,50,53,54,55,58,61,65,70,73,76,77,82,85,86,93,95,96,97,104,108,111,113,114,115,120,143,146,147,149,150,151,156,159,160],mutabl:[6,12],mutablemap:12,mutablesequ:12,mutual:97,mvpp:53,my45001438:13,my48002016:26,my52451750:63,my54505281:28,my54505388:[26,31],my55510104:62,my57800256:[13,40],my_ax:10,my_custom_fold:23,mycallback:6,mycount:21,mydummi:6,mydummy_chana_that_setpoint:6,mydummy_chana_this_setpoint:6,myget:25,myinstrument:160,mylist:30,mymainfold:2,mypi:133,myscript:2,myset:25,mysignalhound:52,mysin:55,mystat:16,mytestseq:59,myvector:160,myvector_set:160,n48280:[13,33],n5171b:96,n5181a:96,n5183b:96,n51x1:[91,141],n5230c:91,n5245a:[63,91],n52xx:91,n_avg:61,n_point:10,n_read:[41,42],n_samples_in_waveform:34,n_trigger_puls:34,naiv:27,name:[0,1,2,3,4,6,7,10,11,12,13,16,17,20,21,22,23,24,25,26,27,28,30,31,33,34,35,36,38,39,42,43,46,47,50,51,53,54,55,56,58,60,61,62,64,65,67,68,69,70,71,73,75,76,77,78,79,81,82,83,84,88,90,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,120,123,143,146,149,150,151,156,159,160],name_to_delet:3,nameofyourdriv:4,namespac:[129,156],nan:25,narrow:64,nataliejpg:93,nation:155,nativ:[25,114],navig:[4,155],nbagg:[17,20,23,30,35,36,37,38,51,53,54,56],nbi:143,nbviewer:[19,64],ncycl:32,ndarrai:[65,70,82,113,114,115,159],nearli:3,necessari:[34,36,42,58,64,70,86,92,93,104,148,150,154,159],necessarili:[65,82,97,143,146],necessit:149,need:[1,2,3,4,6,10,21,25,30,34,36,42,54,55,60,61,62,70,93,96,108,113,114,115,143,146,147,149,151,152,155,159,160],neg:[50,62,89,99,101],neither:[143,149],nelder:6,nep:[58,104],nepbw:104,nepbw_to_timeconst:104,nest:[21,25,26,70,80,151,159],net:44,network:[61,62,94,111,152,159],never:[43,83,143],new_cmd:[98,99,108,115],new_data:[41,71,129],new_data_set:[5,12,14,15,16,64],new_experi:[5,6,7,8,9,10,11,12,13,14,15,16,63,64],new_indic:31,new_nam:3,new_valu:31,newer:[10,111],newlin:76,newlinestripp:115,newport:[91,152],newport_ag_uc8:[45,99],newport_ag_uc8_axi:99,newport_ag_uc8_channel:99,newport_ag_uc8_errorcod:99,newport_ag_uc8_except:99,next:[1,4,6,8,10,29,42,50,54,55,57,61,65,73,76,82,93,115,149,155,159,160],nfev:6,nice:[1,3,6,10,18,24,58,61,143,149],nick:143,nielsen:[143,153],nifti:3,nit:6,no_instru:160,no_of_rep:29,no_sampl:[9,12,13,14],no_t:10,no_x:10,nobodi:143,noi:[32,109],nois:[3,6,8,10,34,39,50,52,61,96],noisi:[11,12,60,152],non:[6,10,11,42,43,50,54,60,93,108,114,119,143,160],none:[2,3,5,8,10,12,14,15,16,17,24,25,30,31,33,35,36,38,39,42,52,58,60,63,65,67,68,69,70,71,73,75,76,77,78,79,80,81,82,83,84,85,88,90,91,93,94,95,96,97,98,99,100,101,104,106,108,109,111,113,114,115,117,118,120,121,122,123,135,143,151,156],nonstandard:[92,96,98,99,107,113,114,115],noofpoint:54,noofseq:30,noofseqelem:54,noofwf:30,nor:[6,143,149],norm:[40,60],normal:[6,10,27,50,65,71,72,75,82,83,85,98,115,146,159],normalis:[6,8],nosampl:[10,14],not_act:45,not_avail:11,notabl:[6,58],notat:[2,85,94],notch_filt:33,note:[1,2,3,4,5,10,11,14,15,19,21,25,34,39,42,43,45,46,47,50,52,54,57,58,60,62,64,65,67,71,82,83,85,86,88,93,95,96,97,100,104,107,108,114,115,118,120,131,141,147,149,151,154,155,156,159,160],notebook:[1,2,3,5,6,7,8,9,10,11,13,14,15,18,23,24,26,27,29,31,33,34,36,39,41,42,50,52,53,54,55,58,59,60,61,64,137,139,147,149,150,152,154,155,156,157],noth:[3,39,95,149],notic:[1,4,7,14,34,39,45,51,109],notif:[151,152],notifi:151,notimplementederror:[32,43],notion:[34,149],now:[0,4,5,6,8,10,12,14,15,18,21,23,25,29,32,33,34,42,45,46,47,50,51,52,54,55,57,58,60,61,65,82,111,115,123,133,137,143,149,152,156,160],nplc:[3,26,28,31,35,38,39,115,152],npoint:[6,7,13,62],nport:96,npt:[11,36,51,111],nr_bytes_written:31,nrep:[7,29,34,54,55,115],nrep_l:30,num:[23,24,27,28,31,61,85,122],num_acquisit:50,num_chan:100,num_channel:115,num_point:8,num_points1:8,num_points2:8,num_port:51,number:[0,1,3,6,10,11,12,14,15,21,24,25,26,28,31,32,34,35,38,41,42,43,44,45,46,47,50,51,52,54,55,58,59,73,76,77,80,82,83,85,88,91,92,93,95,96,98,99,100,101,104,108,109,111,113,114,115,117,143,146,148,150,151,156,159,160],number_dac:101,number_format:76,number_of_averag:61,number_of_paramet:160,numbertwo:6,numdac:101,numer:[5,6,7,12,15,16,76,99,149,152,159],numpi:[0,3,4,5,6,7,8,9,10,11,12,13,15,16,17,21,23,26,27,28,29,30,31,34,35,38,41,42,43,46,47,53,54,55,56,57,58,60,64,65,70,82,93,104,113,114,115,139,151,159,160],numpoint:115,numval:[28,31],nxsingl:50,obj:30,object:[0,1,2,3,5,7,9,10,11,13,15,16,18,25,30,31,33,34,35,36,38,41,42,50,51,52,53,56,58,59,61,65,67,70,72,74,75,80,82,83,85,86,93,95,100,101,113,118,120,123,143,144,150,151,152,156,159,160],observ:[149,152],obsolet:[54,141],obtain:[1,34,83,93],obviou:[34,80],occasion:74,occupi:[50,73,115],occur:[1,30,60,92,95,101,114,156,159],ocp:49,ocp_rang:110,ocp_stat:49,ocp_valu:49,oct:33,oem:[30,115],off:[3,10,13,24,26,28,31,32,37,39,40,41,42,46,47,48,50,51,53,55,57,58,61,63,64,75,96,97,100,105,106,108,111,115,117],off_modul:111,offer:[0,1,133,149,150,160],offlin:[19,64,152],offload:159,offset:[13,22,32,36,37,50,53,58,60,109,111,115],often:[1,4,20,71,93,143,146],oftentim:50,ohm:[36,41,42,50,58,97],old:[6,10,33,39,51,53,138,151,152,155],old_data_load:[9,14],old_sampl:14,older:55,oldest:40,oldn:58,omit:[65,82,83,108,115,149],on_modul:111,onboard:39,onc:[0,15,20,21,25,34,63,70,74,93,113,114,115,143,146,149,150,152,155,159,160],one:[1,2,3,5,6,8,10,11,12,13,14,15,21,25,27,29,33,36,37,39,42,44,45,46,47,50,51,53,54,55,58,60,62,64,65,68,70,71,74,75,76,80,82,83,85,90,91,92,93,95,97,98,99,100,101,108,111,114,115,117,120,143,146,147,149,150,151,152,156,159,160],ones:[29,34,55,64,93,96,105,111,115,143],onli:[3,4,5,6,7,12,14,17,21,23,25,32,34,35,36,42,44,45,46,47,50,51,53,54,58,60,63,65,70,71,73,75,76,82,83,85,86,92,93,94,96,97,98,100,104,105,107,108,109,111,113,114,115,117,120,143,149,151,152,159],onlin:[1,19,64],onto:[115,152,159],oon:6,ooohh:6,opaqu:151,opc:[29,115],open:[4,42,74,77,88,92,108,113,122,138,143,148,154,159],open_loop:[42,97],open_resourc:30,opendevic:113,oper:[1,3,31,36,42,65,72,82,85,92,95,96,97,115,152,156,159,160],oppos:[3,34,54,114],opposit:[11,121],optic:99,optim:[6,154],optimis:152,option:[2,3,6,40,50,54,65,67,68,69,70,71,73,74,75,77,78,82,83,85,86,88,90,91,93,96,98,99,101,108,111,113,114,115,117,118,120,135,139,143,149,151,155,156],orang:34,order:[2,3,10,25,34,42,43,54,58,60,64,68,71,75,90,97,104,106,114,143,147,151,152,156,159],ordereddict:[0,6,71],org:[1,88],organ:[143,152],organis:147,orient:[147,159],origin:[13,22,26,58,64,91,151,152,159],original_valu:22,osc:58,oscil:[58,96,149],oscillator2_freq:58,oscilloscop:[3,4,13,96,109,111,115,141,152],other:[1,2,3,6,7,10,11,14,21,23,34,36,42,45,46,47,50,51,54,55,58,62,63,73,74,87,89,92,93,95,96,97,98,99,107,113,114,115,119,121,122,143,147,149,150,151,154,159],otherclass:3,otherwis:[3,42,54,63,70,92,93,95,143,149,151,159],our:[4,12,14,24,41,43,45,50,51,76,108,143,149],out:[0,3,10,11,12,20,21,23,25,31,32,35,40,42,43,46,47,51,53,58,60,63,65,66,82,92,100,108,111,114,143,149,150,152,153,154,155,157,159,160],outcom:149,outer:[1,21,25,70,76,152,159],outlier:[152,156],outp1:30,outp:18,output:[2,3,4,6,8,13,27,32,35,37,38,39,42,46,47,50,51,54,55,57,61,75,80,83,92,95,96,97,100,101,104,107,109,111,114,115,117,119,143,151,152,159],output_336_currentsourc:97,output_336_voltagesourc:97,output_372:97,output_index:97,output_interfac:33,output_nam:97,output_pow:61,output_rang:[41,42,97,117],output_waveform_name_n:115,outputchannel:96,outsid:[12,42,57,64,89,101,104,115,151],over:[0,3,4,6,18,19,25,45,49,51,52,57,58,62,63,67,74,80,85,86,93,97,143,146,159,160],overal:151,overhead:[28,159],overid:108,overlap:[4,115],overload:[50,95,111,114],overrang:97,overrid:[3,64,71,73,74,92,96,98,99,100,104,107,108,113,114,115,120],overridden:1,overview:[19,25,39,50,61,62,63,64,115,150,152,156,158],overwrit:[2,23,34,35,38,101,115,120,156],overwritten:[10,14,73,114],ovl:97,ovp:49,ovp_rang:110,ovp_stat:49,ovp_valu:49,ovsr:114,own:[2,3,25,50,51,75,92,93,108,122,143,151,159],oxford:[43,56,91,137,140],oxfordinstruments_ilm200:108,oxfordinstruments_ips120:108,oxfordinstruments_kelvinox_igh:108,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:115,pack_waveform:[30,115],packag:[1,2,30,31,58,131,143,151,154,155,156],packard:[61,94],packed_waveform:115,packed_wf:30,pad:3,page:[34,93,114,129,131,143,150,159],pai:143,pair:[24,26],panda:[18,151],panel:[58,95,101,115,154],panic:159,par:54,paraemt:91,parallel:[108,151],param:[21,36,54,56,58,83,93,100,101,151],param_id:31,param_mea:8,param_nam:[70,100],param_out:31,param_set1:8,param_set2:8,param_set:8,param_spec:6,param_v:6,paramamet:152,paramet:[1,6,7,8,11,12,15,20,25,27,36,37,38,39,42,45,46,47,50,51,52,54,55,56,58,60,61,62,65,66,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,111,113,114,115,117,118,119,120,121,122,123,129,132,136,139,141,143,144,147,148,150,151,152,154,158],parameter_a:15,parameter_b:15,parameter_c:15,parameter_class:[3,11],parameter_nam:[34,114,135],params_to_skip_upd:[100,114],paramspec:[5,6,12,15,16,96,147],paramt:[0,22,36,90,160],paramtyp:[7,10,152],paramtypes_explain:11,parent:[3,65,67,75,79,82,83,86,95,96,97,98,99,100,104,106,108,109,110,111,112,114,115,117],parenthes:143,pars:[54,75,92,96,98,99,107,109,113,114,115,152],parse_awg_fil:[54,115],parse_multiple_output:109,parse_on_off:[96,105],parse_output_bool:115,parse_output_str:115,parse_paramstr:96,parse_single_output:109,parse_string_output:109,parsebool:115,parseint:115,parser:[3,75,94,114,115],parsestr:[94,115],part:[2,3,4,29,42,51,55,64,65,73,82,83,98,113,114,117,137,143,146,151,152,156,159],parti:62,partial:[6,8,61,109,151,160],particular:[14,21,24,34,54,58,60,146,149,150,151,159],particularli:[63,75,78,114,159],parval:6,pass:[1,3,4,10,12,13,61,73,75,86,87,91,93,96,98,101,106,111,117,120,121,122,143,151,156,159,160],past:10,pat:115,patch:143,path:[2,4,7,11,14,18,25,44,54,69,71,72,74,93,108,113,115,118,120,149,151,155,156,159],path_to_driv:98,patholog:149,pattern:[115,147],paus:[42,60],pcb:42,pci:[3,92],pcie:[92,93,137],pcie_1751:91,pcie_link_spe:[36,93],pcie_link_width:[36,93],pckd_wf:30,pcserno:62,pdf:[10,100,114],peak:[6,50,55,115],pedagog:14,pedestrian:152,pend:[59,115],peopl:150,pep8:143,per:[3,5,27,28,31,36,39,55,65,70,82,93,94,95,100,101,114,115,148,151,152,154,156,160],percent:[58,64,104],percentag:[108,156],percentil:152,perf:143,perf_count:[7,11,29,43],perfect:149,perfom:[26,43],perform:[1,4,5,6,12,13,24,25,26,33,34,36,39,41,42,45,46,47,50,58,60,74,83,88,93,101,104,106,113,115,119,133,138,140,143,147,149,152,155,159],perform_safety_check:106,perhap:[31,149,159,160],period:[32,50,62,71,121,122,155],persist:[77,108],person:143,phase:[6,21,32,33,34,40,51,58,63,93,104,109,111,113,114,149,159],phase_delay_input_method_n:115,phase_n:115,phi:[43,58,60],phi_measur:[43,60],phi_target:43,physic:[3,4,6,8,22,43,46,47,71,91,95,115,118,120,123,149,159],pick:143,pictur:[6,159],pid:41,piec:[146,159],piezo:[99,152],pillar:159,pin:92,ping:143,pinki:143,pip:[101,143,154,155],pixel:[64,121],place:[1,2,46,47,50,121,143,149,159],plai:[13,25,29,34,42,55,115,152,155],plain:155,plan:42,plane:10,playback:34,pleas:[3,6,10,19,39,42,54,58,62,64,97,100,114,115,143,153],plenti:62,plot:[0,3,6,7,8,9,12,13,15,18,30,31,33,34,36,38,39,40,41,42,46,50,51,52,53,54,57,58,60,61,62,63,70,114,129,135,138,139,147,148,151,156,159],plot_1d:25,plot_by_id:[6,8,9,10,13,52,63,64,156],plot_by_id_funct:10,plotlib:[2,156],plotlin:12,plotq:38,plotsequ:59,plotter:[58,149,152],plt:[1,5,6,7,10,15,18,23,26,27,30,31,34,35,38,41,42,50,51,53,54,55,56,58,60,62,63,64,122],plu:[55,115,156],plubic:131,plug:[27,96,151,154],plugin:143,plunger:23,plural:21,pna:[63,96],pna_exampl:63,pnabas:96,pnaport:96,pnasweep:96,pnatrac:96,pnaxbas:96,point:[6,7,10,11,14,24,25,26,27,28,29,30,31,32,33,34,42,51,55,58,59,60,63,64,68,72,76,80,90,104,108,111,113,114,115,129,149,150,151,152,154,156,159],poitn:115,polar:[42,97,101],polish:154,poll:[27,33],polyfit:60,poor:37,popluat:19,popul:[14,70,78,79],popular:3,port:[37,42,43,45,51,56,60,77,92,95,96,98,99,106,108,113,154],port_count:92,portion:34,pos:[55,59],posit:[10,13,45,50,75,99,111,151,159],possibl:[3,4,6,12,21,34,37,43,51,54,58,63,64,97,107,108,114,115,147,148,151,156,159],post:[36,143],post_acquir:93,post_delai:[8,24,25,36,83],post_trigger_act:104,potenti:[39,65,71,80,82,149,150,151,154,156,159],power:[3,11,39,51,60,61,63,93,96,106,108,109,111,113,137,143,152,159],powerup_en:42,ppi:92,pprint:[24,34],practic:[12,143,148],pragmat:149,pre:[118,152],pre_acquir:93,pre_start_captur:93,preamp:[3,107,114],preamplifi:[3,107,114],prece:104,preced:76,precis:[37,101,104,136],preconfigur:2,predefin:[54,87,114,115,152],prefer:[42,97,115,150,154,155,159],prefix:143,preinstal:155,preliminari:26,prematur:43,prepar:[13,27,28,31,50,55,58,61,93,96,104,109,111,114,115,152,159],preparatori:[6,8],prepare_buffer_readout:[33,114],prepare_curvedata:[13,53,62,96,109,115],prepare_readout:114,prepare_scop:[58,104],prepare_trac:[50,61,94,111],preparesweep:115,prepend:[70,115],preprocessor:92,prerequisit:152,present:[3,4,10,33,59,64,106,107,108,114,117,143,149,159],preserv:149,preservechannelset:115,preset:113,preset_data:70,press:[1,115,157],presum:115,pretend:4,pretti:[34,46,47,61,100,104],prevent:[3,65,82,83,93,101,115],previou:[1,10,22,64,83,95,99,143,149],previous:[104,115,159],primari:[52,150,154],primarili:147,princip:75,principl:[149,155],print:[0,1,2,11,12,14,21,22,25,26,28,29,30,31,32,34,35,36,38,39,41,42,43,45,46,47,48,49,54,56,57,58,60,63,95,96,98,100,104,115,152,160],print_al:94,print_cont:115,print_modstatu:94,print_overview:[46,47,100],print_readable_sanpshot:50,print_readable_snapshot:[25,33,39,43,50,51,55,61],print_sweeper_set:[58,104],print_which_step:6,printslop:[46,47,100],prior:[61,91,95],prioriti:[73,159],privat:[91,96,109,111,129],privileg:92,probabl:[7,10,36,42,75,93,97,111,143,155,159],probe:49,problem:[10,30,54,57,93,143,152],procedur:[100,150,159],proceed:29,process:[36,93,143,151,159],produc:[6,10,51,151,155,159],product:98,product_id:98,program:[1,93,96,113],programm:[93,106,115],programmat:[2,115,154],progress:[45,80,151],progress_interv:[31,80],project:[3,143],promis:149,promot:149,prompt:155,proper:[58,101],properli:[4,14,60,115],properti:[2,3,4,14,30,34,44,45,92,156,159],protect:[49,101],protocol:[36,101,159],provid:[1,2,3,12,21,23,29,34,36,41,42,43,46,47,55,64,70,73,75,77,83,86,97,108,120,121,122,143,146,147,150,151,152,159],proxi:159,psu:108,pts:[33,58],publish:16,pull:[31,58,63,155],pull_from_serv:[38,159],puls:[13,46,47,54,94,114,137,152],pulseatom:59,purchas:58,pure:[34,147],purpos:[3,21,34,42,159],push:[64,159],push_to_serv:[38,159],put:[4,6,9,10,29,32,42,54,57,60,76,100,108,115,149,159,160],pxie:96,py_head:[91,102],pyenv:30,pyplot:[1,5,6,7,10,15,18,23,26,27,30,31,34,35,38,41,42,50,51,53,54,55,56,58,60,62,63,64],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,18,38,40,46,57,129,138,140],pyqtmaxplot:[2,156],pyqtplot:156,pytest:[4,143],python3:30,python:[3,23,25,62,71,92,93,101,108,115,118,120,133,135,141,143,147,150,151,154,155,159],pythonlog:18,pyvisa:[3,31,88,141,152,159],pywin32:140,qbuit:[14,15],qcmatplotlib:[0,36,129],qcode:[0,1,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,27,28,29,30,31,32,34,41,42,44,52,62,63,64,129,131,143,144,145,147,149,150,151,153,158,159,160],qcodes_colorbar:1,qcodes_config:156,qcodesmast:30,qcodesparamet:151,qcodesrc:[10,14,64,69],qcodesrc_schema:51,qdac:[18,26,28,91,114,133,137,138,139,140,152],qdac_:18,qdac_ch01_v_set:28,qdac_ch02_v_set:31,qdac_ch41_v_set:26,qdac_ch42_v_set:26,qdac_channel:[18,91,152],qdac_setpoint:28,qdacchannel:100,qdacmultichannelparamet:100,qdev:[8,18,26,28,31,35,46,47,64,91,154,156],qdev_wrapp:18,qstr_lvl:18,qstr_r:18,qtplot:[0,18,25,31,38,40,46,57,61,129,152],qtwork:101,quadratur:21,quantiti:[22,76,149],quarri:98,quartil:64,qubit:10,quer:18,queri:[7,11,30,34,35,43,45,46,47,58,96,99,100,111,113,114,115,152,159],queriabl:4,queries_lvl:18,queries_r:18,query_instru:[34,114],querysweep:113,question:[10,96,100,111,143],queu:12,queue:[30,35,40,54,95,96,115],quick:[7,115],quickli:[54,149],quiet:31,quirk:132,quit:[1,3,10,24,30,66,143,159],quot:76,qutech:[34,91],r_measur:43,r_offset:33,r_target:43,rack:[13,42,101],rad_to_deg:105,radiu:43,rainbow:73,rais:[2,3,4,31,35,43,57,60,62,66,67,83,86,89,91,92,98,99,101,104,108,114,115],raiseexc:114,ramp:[3,25,31,32,37,40,46,47,55,57,59,60,83,95,106,108,109,115,117,152],ramp_al:95,ramp_curr:[57,117],ramp_rat:[60,95],ramp_statu:43,ramp_target:55,ramp_to:[106,117],ramp_to_target:108,ramp_voltag:[57,117],rampsign:55,ramptim:46,rand:[6,7,10],randint:[10,20,23,25],randn:[6,8,10,11,12],random:[2,3,5,7,8,10,11,12,15,20,23,25,54,60,152],random_sampl:[5,15],randomli:[6,10],rang:[4,5,6,7,10,12,13,15,16,21,26,28,29,30,31,36,40,41,43,45,46,47,50,51,52,54,57,58,61,62,64,92,93,97,99,101,104,108,111,115,151,152,156,159,160],range_limit:[42,97],rapidli:10,rare:12,raster:[152,156],rasterize_threshold:156,rate:[33,36,55,58,60,62,93,95,101,114,115,152],rather:[10,13,34,37,58,143,160],ravel:159,raw:[3,28,101,109,146,149,152,154],raw_trac:96,raw_val:28,raw_valu:[24,25,36,43,83],rawtrac:96,rc_sp4t:91,rc_spdt:91,rcd:23,reach:[22,60,97,114,115,143,152],react:34,read:[3,4,11,12,13,17,19,21,22,24,25,30,32,35,38,41,43,44,46,47,53,57,60,64,71,74,75,76,77,88,92,95,97,100,101,107,108,111,114,115,117,118,120,143,146,147,149,150,151,152,156,159],read_dataset:151,read_metadata:74,read_one_fil:74,read_period:[41,42],read_pin:92,read_port:92,read_stat:100,read_valu:22,readabl:[3,25,83,136,143,150],reader:[14,25,108],readi:[21,25,45,58,94,115,120,143],readili:1,readm:143,readout:[100,114,138,152],readthedoc:[4,88],real:[3,12,22,25,42,43,51,63,107,114,143,146,149,150,152,154,159,160],realist:6,realli:[4,6,46,47,70,148,159],realtim:[143,154],reappear:143,rear:115,reason:[25,32,34,60,64,143,149,151,160],recal:[24,25],recalcul:[41,42],recast:149,receiv:[1,3,12,34,40,43,95,114],recent:[2,31,35,43,83],reciev:34,recognit:149,recommend:[13,58,143,155],reconfigur:149,reconnect:159,reconsid:39,reconstruct:74,record:[13,23,25,36,73,104,115,120,149,152,154,159],records_per_buff:[36,93],rectangl:149,rectangular:152,recycl:93,red:64,redirect:[70,136],redistribut:113,redon:151,redraw:[41,42],reduc:[55,61,75,141],redund:4,ref:[53,159],refactor:143,refer:[6,10,14,25,34,58,70,93,97,113,114,115,129,143,145,147,151,159,160],referenc:[65,82,83,97,159],reference_clock_frequency_select:115,reference_multiplier_r:115,reference_sourc:[33,115],refernc:114,reflect:[7,111,149],reformat:147,refriger:108,reg:[56,91,102],regard:[50,93,159],regardless:[143,151],regim:42,region:[6,64,108,152],regist:[6,8,10,11,13,114,143,147,156],register_custom_paramet:13,register_mag:[2,156],register_paramet:[6,7,8,10,11,13,52,63,149],registr:147,registri:108,regular:[3,20,152,159],regulatd:49,reimplement:8,reimport:156,reinstal:155,reinvent:143,reject:[3,4],rel:[7,14,25,45,51,64,71,72,99,118,120,151,156,159],relat:[1,34,149,150,159],relationship:[8,22,147,159],releas:[74,133,134,141,154],relev:[4,10,31,50,64,83,93,114,115,150],reli:[1,3,64,93,114,151],reliabl:[93,159],relim:[41,42],reload:[17,74,91,159],remain:[64,93,96,113,149],remedi:149,rememb:[18,28,34,42,43,51,53,60,62,64,104],remot:[22,35,50,101,108,121,159],remote_gain:22,remoteinstru:[159,160],remoteparamet:159,remov:[40,51,58,70,71,101,104,108,111,115,137,139,141,143,151,152],remove_signal_from_sweep:104,render:[10,64],reopen:151,rep:115,repeat:[7,11,59,67,143,149,159],repet:115,repetit:[54,115],repetition_r:115,replac:[1,4,10,18,30,42,55,95,139,151],repli:98,replot:10,repo:[2,143],report:[62,93,144,154],repositori:[143,152,154,155],repr:[31,95],reprec:51,repres:[3,11,21,34,45,64,76,83,93,99,113,114,149,151,156,159],represent:[3,25,42,92,123,146,149],reproduc:[64,143,149,159],requery_nam:[34,114],request:[28,34,42,60,62,114,144,159],requir:[4,10,21,25,58,65,75,82,85,86,88,92,93,101,104,111,114,117,120,140,143,147,148,149,150,156,159,160],res:[6,35],rescal:[115,152],rescale_ax:10,research:[114,138,141,152],resend:115,resend_waveform:115,reserv:[33,97],reset:[21,25,27,31,33,43,45,50,51,54,59,61,75,76,94,96,99,101,105,106,109,111,113,114,115],reset_averag:96,reset_bp:59,reset_delai:99,reset_elem:59,reset_modul:114,reset_voltag:101,reshap:11,resid:150,resist:[3,133,152],resistor:[27,57],resit:91,resolut:[10,25,34,50,55,101,111,139],resolv:[64,149],resourc:[4,31,43,74,88,92,96,98,100,108,111,114,115,159],resourcemanag:30,respect:[1,65,82,92,115],respond:3,respons:[3,4,18,34,35,75,77,83,88,92,94,95,96,98,99,100,107,108,113,114,115,147,149],responses_lvl:18,responses_r:18,ressourc:[3,115],restart:[14,156],restrict:[114,146],restructur:143,result:[1,6,12,14,17,21,61,64,73,93,96,97,99,101,115,149,150,151,152,159],result_list:6,results_list:6,ret:31,ret_cod:31,ret_valu:31,retri:7,retriev:[11,24,34,40,83,114,115,151,156],retur:115,return_count:31,return_pars:75,return_self:115,reus:[10,159],reveal:14,revers:[55,83,85],review:[143,149,154],revion:95,revisit:10,revok:[46,47],rewrit:159,rewritten:143,rf_off:51,rf_on:51,rfswitchcontrol:44,rho:[43,60],rho_measur:43,rho_target:43,richer:159,rid1:10,rid2:10,rid:[7,70],right:[1,10,30,44,54,60,62,64,91,93,114,121,123,155],rigol:[91,152],rigol_dg4000:109,rigoldp821:109,rigoldp831:109,rigoldp832:[49,109],rigoldp8xxchannel:110,rigolds4000channel:109,rise:[3,58],risetim:[3,38],risk:[43,152],riski:64,robust:3,rohd:[48,111,133,141,152],rohde_schwarz:[48,50,51,91],rohdeschwarz_sgs100a:111,rohdeschwarz_smr40:111,rohdeschwarzhmc8041:111,rohdeschwarzhmc8042:111,rohdeschwarzhmc8043:[48,111],rohdeschwarzhmc804xchannel:112,roi:64,role:[55,151],ron:115,root:[71,72,115,118,120,155],rosc:30,rotat:45,rotate_nvalv:108,rough:144,roughli:[64,151,155],round:[101,117,139,159],round_dac:101,router:42,routin:[100,147,151],row:[1,6,7,18,76,111,147,150,151],rowdon:6,rrm:58,rs232linkformat:101,rs_sgs100a:111,rst:[75,143],rte1000:91,rto1000:[50,91],rto:[108,141,152],rto_channel1:50,rto_channel2:50,rto_channel3:50,rto_channel4:50,rtype:31,rudat_13g_90:91,rudat_13g_90_usb:98,rule:[3,60,149],run:[0,1,4,5,6,7,8,9,10,11,13,14,20,23,24,25,26,27,28,29,30,31,33,35,36,38,40,42,51,52,53,58,60,61,62,63,80,91,92,94,96,97,104,111,113,115,135,149,150,151,152,154,155,156,159,160],run_cont:[50,111],run_contin:94,run_id1:11,run_id2:11,run_id3:11,run_id4:11,run_id5:11,run_id:[6,7,8,9,10,11,13,52,63,64],run_id_2d_str:10,run_id_a:7,run_id_n:7,run_id_str:10,run_mod:[50,115],run_n_tim:[61,94],run_singl:[50,111],run_stat:115,run_sweep:[61,63,96],run_temp:21,run_to_field:108,run_to_field_wait:108,runid:52,runtest:91,runtim:[2,52,156],s11:[51,61,63],s12:[51,63,111],s21:[51,61,63],s22:[51,63],s44:51,s5i:91,s_paramet:61,sa124_max_freq:113,sa124_min_freq:113,sa124b:[52,113],sa44_max_freq:113,sa44_min_freq:113,sa_api:113,sa_audio:113,sa_audio_am:113,sa_audio_cw:113,sa_audio_fm:113,sa_audio_lsb:113,sa_audio_usb:113,sa_auto_atten:113,sa_auto_gain:113,sa_averag:113,sa_bypass:113,sa_frequ:11,sa_frequency0:11,sa_frequency1:11,sa_frequency2:11,sa_idl:113,sa_iq:113,sa_iq_sample_r:113,sa_lin_full_scal:113,sa_lin_scal:113,sa_log_full_scal:113,sa_log_scal:113,sa_log_unit:113,sa_max_atten:113,sa_max_devic:113,sa_max_gain:113,sa_max_iq_decim:113,sa_max_rbw:113,sa_max_ref:113,sa_max_rt_rbw:113,sa_min_iq_bandwidth:113,sa_min_max:113,sa_min_rbw:113,sa_min_rt_rbw:113,sa_min_span:113,sa_power_unit:113,sa_real_tim:113,sa_ref_external_in:113,sa_ref_internal_out:113,sa_ref_unus:113,sa_spectrum3d:11,sa_spectrum:11,sa_sweep:113,sa_tg_sweep:113,sa_volt_unit:113,sabandwidthclamp:113,sabandwidtherr:113,sacompressionwarn:113,sadevicenotconfigurederr:113,sadevicenotfounderr:113,sadevicenotidleerr:113,sadevicenotopenerr:113,sadevicetypenon:113,sadevicetypesa124a:113,sadevicetypesa124b:113,sadevicetypesa44:113,sadevicetypesa44b:113,saexternalreferencenotfound:113,safe:[60,101,108,143,152,159],safe_vers:101,safeti:[12,43,51,60,106,108],safrequencyrangeerr:113,safti:51,sai:[11,71,118,120,143,149,160],said:[43,70,115,149],sainterneterr:113,sainvaliddetectorerr:113,sainvaliddeviceerr:113,sainvalidmodeerr:113,sainvalidparametererr:113,sainvalidscaleerr:113,sake:[4,10,14,34,61],same:[1,3,10,11,20,21,26,34,36,42,43,45,55,60,64,68,70,76,82,85,90,92,97,104,114,115,122,143,149,151,155,159,160],samp:114,sampl:[5,7,8,14,22,28,33,36,42,55,62,63,85,86,91,93,101,114,115,150,152,156,159],sample_count:[28,31,34,114],sample_heat:42,sample_nam:[5,6,7,8,9,11,12,13,14,15,63,64],sample_r:[34,36,55,93,109],sample_timer_minimum:[28,31],samples_divisor:93,samples_per_record:[36,93],sampling_r:[50,115],sane:[14,69],saniti:57,sanocorrect:113,sanoerror:113,sanotconfigurederr:113,sanullptrerr:113,saovencolderr:113,saparameterclamp:113,sastatu:113,satisfi:[60,149],satoomanydeviceserr:113,satrackinggeneratornotfound:113,satur:64,saunknownerr:113,sausbcommerr:113,save:[0,4,11,14,23,24,25,31,34,44,54,61,64,65,70,71,74,76,82,83,93,114,115,119,120,135,143,146,147,149,152,154,155,159,160],save_to_cwd:2,save_to_env:2,save_to_hom:[2,14,156],savefig:10,savvi:154,sawtooth:40,sca:1,scalar:[12,20,21,25,65,82,96,119,149,151,159],scale:[19,21,50,51,53,58,61,62,83,91,111,113,152,156],scale_param:21,scale_set:21,scale_v:21,scaledparamet:152,scaleparamet:113,scan:[12,51,152],scatter:156,scenario:143,scene:58,scf:1,schema:[2,15,51,64,69,156],schema_cwd_file_nam:69,schema_default_file_nam:69,schema_env_file_nam:69,schema_file_nam:69,schema_home_file_nam:69,scheme:[3,4,149,150],schouten:101,schwarz:[48,111,133,141,152],scienc:10,scientif:[64,148],scipi:6,scope:[4,13,50,53,62,96,104,109,111,115,152],scope_average_weight:58,scope_channel1_input:58,scope_channel2_input:58,scope_channel:58,scope_correctly_built:58,scope_dur:58,scope_length:58,scope_measur:53,scope_mod:58,scope_samplingr:58,scope_seg:58,scope_segments_count:58,scope_setup:13,scope_trig_delai:58,scope_trig_en:58,scope_trig_gating_en:58,scope_trig_gating_sourc:58,scope_trig_holdoffmod:58,scope_trig_holdoffsecond:58,scope_trig_hystabsolut:58,scope_trig_hystmod:58,scope_trig_level:58,scope_trig_refer:58,scope_trig_sign:58,scope_trig_slop:58,scopearrai:[109,115],scopechannel:111,scopedata:58,scopetrac:111,scpi:[3,30,95,108],scpi_command_tre:96,scratch:8,screen:[34,50,114,115,121,155],script:[4,14,39,115,152,154,156,160],scriptfold:[2,156],sd_awg:96,sd_common:96,sd_dig:96,sdk:[93,113],sdk_version:[36,93],seamlessli:151,search:[73,143,149,159],sec:[7,96,109,115],second:[1,4,6,10,12,14,21,25,30,33,34,40,41,42,45,57,58,65,70,71,77,80,82,83,88,89,93,95,99,101,108,114,115,117,120,121,122,149,152,155,159,160],second_exp:14,section:[64,97,149,150,153,155],see:[0,1,2,3,6,7,10,11,12,18,20,23,24,34,40,42,45,46,50,52,53,54,57,59,60,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,93,97,99,101,111,114,115,119,121,122,123,143,149,150,151,155,159,160],seek:[11,149],seem:[12,41,76,143,149],seen:[7,42,51],segm1_ch1:115,segm1_ch2:115,segm2_ch1:115,segm2_ch2:115,segm:30,segment:[1,58,104,115],select:[3,14,36,60,93,96,99,104,115,143,147,151,152,155],self:[2,3,4,11,21,31,35,38,42,43,61,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,95,100,108,115,119,120,121,122,123,143,155,160],semant:[22,154],semi:[6,10,143],semicolon:[92,96,98,99,107,108,113,114,115],sen:[3,38,107],send:[3,6,8,27,28,29,31,34,59,60,77,98,99,101,107,108,109,114,115,152,153],send_awg_fil:[30,115],send_dc_puls:115,send_pattern:115,send_sequ:115,send_sequence2:115,send_trigg:114,send_waveform:115,send_waveform_to_list:[30,54,115],sendseqxfil:[29,34,55,59,115],sendwfmxfil:[29,55,115],sens:[3,143,149],sens_factor:[3,107],sens_x:38,sensit:[3,6,13,33,34,107],sensor:[97,152],sensor_a:41,sensor_nam:42,sensor_raw:42,sensor_statu:42,sensor_status:97,sensor_status_cod:97,sensor_unit:97,sent:[3,27,30,55,75,83,99,108,114,115,146,151,152,159],separ:[4,6,10,21,39,45,64,74,76,82,92,96,98,99,107,108,109,113,114,115,123,154,159,160],seper:[95,115],septemb:39,seq:[36,115],seq_elem:54,seq_nam:34,seqnam:[34,55,59,115],sequanti:90,sequecn:115,sequenc:[12,21,29,34,42,54,65,67,70,80,82,85,95,96,114,115,119,122,151,152,159],sequence_cfg:115,sequence_length:54,sequence_po:54,sequencelist:[55,115],sequenti:[34,43,58,68,160],seqx:[34,55,59,115,152],seqx_fil:[29,59],seqx_file_nam:34,seqxfilefold:115,seri:[3,64,96,105,109,111,115,141,152],serial:[3,4,13,24,25,26,27,28,29,30,31,32,33,34,36,39,40,41,42,43,44,45,48,49,50,51,52,53,55,57,59,60,61,62,63,92,93,95,96,98,99,107,108,113,114,115,146],serial_numb:[38,44,97,98],serialis:115,seriou:50,serv:3,server:[4,35,42,58,93,104,159,160],server_err:35,server_nam:[17,94,160],session:[25,31,41,71,118,120,143],set:[0,1,2,3,4,6,8,10,11,12,13,14,15,17,18,20,21,22,23,24,26,30,31,33,35,36,37,38,39,40,42,43,44,48,49,51,52,54,55,57,60,61,62,63,64,68,70,71,74,76,80,81,83,85,86,90,91,92,93,94,95,97,100,101,104,106,107,108,109,111,113,114,115,118,119,120,146,148,151,152,154,156,159,160],set_al:95,set_arrai:70,set_b:108,set_capture_length_to_fit_sampl:[34,114],set_capture_rate_to_maximum:[34,114],set_cmd:[1,3,4,10,25,83,84,94,108,160],set_color:[6,10],set_curr:[48,49],set_current_folder_nam:115,set_dacs_zero:101,set_data:[41,97],set_default:115,set_ext_trig:111,set_field:106,set_funct:43,set_jumpmod:115,set_label:10,set_level:115,set_linewidth:10,set_mark:6,set_markeredgecolor:6,set_markerfacecolor:6,set_measur:[35,38],set_mix_chamber_heater_mod:108,set_mix_chamber_heater_power_rang:108,set_mod:115,set_mode_volt_dc:115,set_mp_method:[35,38],set_new_field_limit:[43,108],set_parameter_bound:101,set_pars:[83,84],set_parser_on_off:111,set_persist:108,set_point1:8,set_point2:8,set_point:[8,53],set_pol_dacrack:101,set_ramp:37,set_range_from_temperatur:[42,97],set_raw:[91,93,113],set_remote_statu:108,set_sequ:115,set_set_point:53,set_setpoint_and_rang:97,set_setup_filenam:115,set_smooth:114,set_sqel_event_jump_target_index:115,set_sqel_event_jump_typ:115,set_sqel_event_target_index:[54,115],set_sqel_goto_st:115,set_sqel_goto_target_index:[30,54,115],set_sqel_loopcnt:[54,115],set_sqel_loopcnt_to_inf:[54,115],set_sqel_trigger_wait:[54,115],set_sqel_waveform:[30,54,115],set_sweep:[111,113],set_titl:[1,54],set_to_fast:108,set_to_slow:108,set_v:6,set_valu:86,set_voltag:[48,49,114],set_wrapp:43,set_xdata:[41,42],set_xlabel:[7,30,41,42],set_ydata:[41,42],set_ylabel:[7,18,41,42],set_ylim:[30,54],setboth:160,setbothasync:160,setformatt:17,setlevel:[17,53,54,58,62,63],setpoint:[0,1,6,7,8,10,11,13,20,21,23,24,25,26,27,28,31,36,41,51,53,60,61,63,65,70,76,82,94,96,97,104,108,111,113,114,115,119,137,152,159,160],setpoint_arrai:[65,82],setpoint_label:[21,65,82],setpoint_nam:[6,11,21,65,82,104],setpoint_unit:[11,65,82],setsequencetrack:[29,34,55,59,115],setsequencingnumberofrepetit:59,setsr:59,settabl:[3,4,10,83,86,146,159],setter:[4,42,146],settl:[6,58,143],setup:[6,7,8,13,41,45,51,63,111,115,123,152,154],setupclass:91,setwaveform:[34,55,115],setx:160,sever:[2,10,34,93,104,108,115,143,146,149,150,151,159],sg384:[91,136],sgs100a:91,shadow:2,shall:[34,57,64,108],shamelessli:10,shape:[0,1,3,6,7,11,21,23,24,25,26,27,28,29,31,33,36,39,50,51,53,54,58,61,62,65,70,82,96,104,111,113,122,151,159,160],share:[37,150,153],shared_kwarg:160,shed:24,shell:[154,155],shift:[58,149],ship:[2,36,58],short_nam:42,shortcut:[121,155],shorter:59,shorthand:[1,2],shot:[39,50,132,143,152],should:[2,3,4,8,11,14,25,28,29,36,40,42,43,44,48,49,50,51,53,54,55,57,58,59,60,63,64,65,67,70,71,73,74,75,77,79,80,82,83,85,86,87,91,92,93,95,98,99,107,108,111,114,115,123,143,147,149,151,155,159],shouldn:70,show:[1,3,6,7,10,20,23,25,34,35,36,38,41,42,46,47,57,60,64,143,149,150],show_num:64,show_subprocess_widget:[35,38],show_window:121,shown:[1,2,60,64,147,149],shuffl:10,side:[42,54,60,64,83,98,146,160],sig:58,sig_gen:143,sigma:[6,8],signal:[6,12,25,29,30,36,52,53,54,55,62,93,96,104,105,111,113,114,115,137,149,152,159],signal_channel:59,signal_hound:[52,91],signal_input1:58,signal_input1_ac:58,signal_input1_diff:58,signal_input1_imped:58,signal_input1_rang:58,signal_input1_sc:58,signal_output1:58,signal_output1_ampdef:58,signal_output1_amplitud:58,signal_output1_autorang:58,signal_output1_en:58,signal_output1_imp50:58,signal_output1_offset:58,signal_output1_on:58,signal_output1_rang:58,signal_to_volt:93,signalhound:113,signalhound_usb_sa124b:[52,113],signatur:[6,54,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,92,115,119,121,122,123,152],signific:147,significantli:[51,151],silent:[3,30,96],silli:6,sim900:114,sim928:[91,137],sim:[4,42,114,141],similar:[1,4,14,25,34,96,111,113,115,159],similarli:[47,58,149,159],simpl:[4,7,8,13,20,21,22,25,27,33,36,51,53,66,72,75,81,89,122,143,147,151,152,154,159],simpler:143,simplest:[4,22,159],simplex:6,simpli:[2,4,6,8,10,11,29,42,45,52,55,58,64,75,83,115,149],simplifi:[95,143],simul:[6,10,42,108,141,146,152,154,158,159],simultan:[33,43,47,63,95,108],simultani:106,sin:[10,12,13,29,30,32,54,55,109],sinc:[1,3,4,12,22,24,25,43,58,60,95,104,108,115,149,159,160],sine:[13,29,50,53,55,59,62],sine_outdc:[34,114],sinesign:55,sing:51,singl:[1,3,13,21,25,34,35,36,38,39,51,52,63,65,76,83,85,92,93,95,96,97,100,106,111,115,119,122,132,143,146,149,151,152,155,159],single_dataset:5,single_iq:21,single_set:21,single_trigger_marker_1:34,singledata:[5,14],singleiqpair:21,singleton:7,sit:[39,149],site:[1,2,30,31],situat:[10,25,76,149,159],six:[46,47,92],sixteen:42,size:[1,7,25,34,45,65,71,82,83,93,101,113,114],size_byt:93,sketch:147,skew:149,skewed_parabola:17,skill:143,skip:[100,114,143],slack:[138,139,140,143,153,154],slash:72,slave:108,sleep:[3,6,12,13,28,31,32,33,35,38,41,42,43,45,46,47,53,54,86,89,101],slice:[51,85,146],slider:1,slider_demo:1,slightli:[6,36,39,136],slightly_newer_sampl:14,slope:[31,36,40,46,47,60,100],slot:[37,95,96,114],slot_mode_default:95,slot_nam:114,slow:[5,10,30,36,42,45,46,47,99,100,108,114,159],slow_command_timeout:99,slow_external_clock:3,slower:[7,54],slp:61,slvl:18,small:[7,10,39,46,47,51,58,92,94,132,143,149],smaller:[51,114],smart:[108,143],sml:115,smooth_timestep:114,smoothli:[64,114],smr40:91,sms120c:141,smu:3,smua:[3,27,39,115],smub:[3,39,115],snapshot:[0,3,25,36,38,65,67,70,77,78,82,83,88,100,114,115,123,133,136,139,140,149,152,159],snapshot_bas:[100,114],snapshot_get:[65,82,83],snapshot_valu:[65,82,83,114],socket:[42,43,77,108],soft:115,softwar:[3,40,42,58,100,104,109,113,115,140,143,152,159],software_revis:38,software_triggered_read:28,softwaredownload:44,solut:[7,30],solv:143,some:[0,3,4,10,11,13,14,18,23,24,25,30,32,34,36,42,47,55,57,58,64,65,75,77,82,83,85,95,114,115,143,149,151,152,156,159],some_g:23,some_gates_plunger_set:23,somebodi:143,somehow:[10,159],someon:[92,143],someth:[2,8,10,24,34,54,57,58,60,93,100,143,149,150,156,159],sometim:[3,10,11,21,22,25,58,76,151,159],somewhat:[6,149],somewher:[34,44],soon:[95,143],sophist:93,sort:[54,76,133,149],sour1:30,sour:30,sourc:[2,3,25,32,34,36,39,51,57,60,62,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,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,141,143,144,151,154,159],source1:30,source_mod:57,sourcecod:24,sourcemet:[3,27,115,137],sourcerange_i:39,sourcerange_v:[27,39],sp1:11,sp2:11,sp3:11,sp4t:98,space:[6,46,47,65,82,83,85,115,143,146,149],spam:64,span:[51,52,64,101,113,149],spann:101,spanx:101,spawn:[35,38],spcerr:[91,102],spdt:98,spdt_base:98,speak:[3,24],spec:[4,5,12,15,16,151],specfii:[5,15],special:[3,25,34,65,82,83,96,143,159],specif:[2,3,4,34,36,52,54,64,71,92,93,95,96,98,100,101,108,115,143,146,147,148,149,150,159],specifi:[1,10,22,34,40,44,45,54,60,64,65,74,80,82,91,92,98,99,101,104,113,114,115,117,122,123,143,149,151,156,159],specifiedta:115,spectrum3d:11,spectrum:[11,52,64,91,133,136,137,141,159],speed:[26,28,43,51,83,93,99,159],speed_tabl:99,speedup:139,spend:3,spent:29,sphere:43,spheric:[43,60],spherical_limit:43,spherical_measur:60,spi:101,spi_rack:101,spike:113,spirack:[101,141],splat:1,split:[28,51,56],spread:[52,153],spyder:155,sqel:115,sql:[11,159],sqlite:[6,11,133,147,150,156],sqlite_bas:16,sqrt:[11,43],squ:[32,109],squar:[10,53],squeez:7,squencer:115,squez:7,sr560:[3,91],sr830:[13,91,135,138,152],sr860:[34,91,133,141,152],sr860_120:18,sr860m:114,sr865:[91,141],sr865a:91,sr86x:[91,152],sr86xbuffer:114,sr86xbufferreadout:114,sr86xdatachannel:114,src:51,srs_sg384:114,srvalid:115,stabl:[88,155],stackoverflow:1,stage:[148,159],stai:[43,97,108,143,160],staircas:25,stale:159,stand:60,standalon:154,standard:[1,3,6,28,51,83,92,95,96,98,99,100,107,113,114,115,147,150,154],standardparamet:[1,21,38,129,141,146],standford:152,stanford:[114,138,141],stanford_research:[3,13,33,34,91],stanford_research_system:[13,33,34],stanford_sr865:114,start1:8,start2:8,start:[0,1,3,6,7,8,9,10,11,12,13,15,23,24,25,26,27,28,31,33,34,36,38,40,42,51,52,55,58,61,62,63,69,70,71,76,83,85,87,92,93,95,99,108,111,113,114,115,117,118,120,143,150,151,152,159],start_ad:7,start_captur:[34,114],start_freq:[61,113],start_heat:42,start_index:151,start_triggers_pulsetrain:114,startcaptur:36,startup:[4,46,47,94,100],stat:[96,105],state:[3,12,16,24,32,34,46,47,48,49,50,54,55,58,92,94,95,100,111,114,115,117,143,146,147,149,151,152,154,159],statement:[101,143],station1:[35,38],station2:[35,38],station:[6,13,17,20,23,24,25,26,30,31,35,38,39,51,58,65,78,80,82,83,114,129,144,149,150,156,159],station_configur:[2,156],stationconfigur:156,stationq:154,statu:[6,41,45,56,93,96,97,100,101,105,108,111,114,115],status:114,statuscod:[30,115],std:[5,27,28,29],stderr:17,stdlib:92,stdout:[12,31],steep:64,steer:42,step:[1,3,4,6,12,18,25,26,39,43,45,51,55,57,64,80,83,84,85,99,101,113,114,115,116,117,149,160],step_amplitude_neg:45,step_attenu:[96,105],step_delai:45,stepper:[99,108],stepsiz:113,stepsizen:101,sticker:[44,98],still:[3,4,10,34,42,45,46,47,54,57,70,97,143,149,159],stir:10,stop1:8,stop2:8,stop:[1,6,7,8,11,30,33,34,40,50,51,54,55,58,63,85,92,98,99,111,114,115],stop_ad:7,stop_captur:[34,114],stop_freq:61,storag:[7,115,154,159],store:[0,2,7,10,11,18,64,65,67,70,71,74,82,83,91,93,115,120,123,139,147,149,151,152,159],str:[3,18,23,30,31,65,67,68,69,70,71,72,73,75,77,78,79,82,83,88,90,91,93,94,95,96,97,98,99,100,101,104,107,108,109,111,113,114,115,117,118,120],straightforward:[54,159],strang:58,strategi:95,stream:[31,36,58],streamhandl:17,stress:149,strftime:73,strictli:104,string:[2,3,4,11,31,35,38,65,67,73,74,75,76,82,83,92,93,94,96,97,98,99,101,104,106,107,108,109,111,113,114,115,120,123,143,146,150,151,152,156,159],strip:[76,111],strive:143,strongli:[1,3,58,143],struct:27,structur:[64,71,74,93,118,120,146,147,149,156,159],struggl:143,studi:149,studio:113,stuf:156,stuff:[4,6,60,108,115,152],stupid:60,style:152,sub:[2,3],sub_id:[12,16],subclass:[3,13,21,58,65,67,74,75,77,82,83,86,88,92,93,97,98,99,108,115,146],subid:151,subject:[143,149,159],sublim:143,sublimelint:143,submit:[4,160],submodul:[3,24,25,36,78,102],suboptim:147,subplot:[7,10,15,18,41,42,51,53,58,60,122,152],subprocess:[35,38],subscrib:[6,104,152],subscribt:6,subscript:[12,151,152],subscription_tutori:[12,14],subseq:59,subsequ:[59,87,115],subset:51,substitut:3,subsystem:[96,151],subtract:58,succes:115,success:[4,6,30,83,99],successfulli:[6,60,92,113],succinct:143,suddenli:3,suffici:[4,151],suggest:149,suit:[17,111,154],suitabl:[93,147],sum:[0,93,97,160],sum_of_cod:97,summari:152,superclass:[3,115],superconduct:[108,150],suppl:2,suppli:[3,6,64,72,74,106,108,109,111,137,147,151,152,159],support:[0,1,3,6,10,18,23,25,39,40,42,46,47,49,51,52,53,54,57,58,78,79,86,92,93,96,97,98,99,104,107,108,111,113,114,115,133,138,139,141,143,147,151,156,159],suppos:[92,96,98,99,107,108,113,114,115,149],suppress:[3,38,115],sure:[4,15,26,33,50,58,60,97,108,115,143,146,155],surprisingli:14,sv2:85,sv3:85,sv4:85,svg:10,sw01:48,swap:154,sweep:[0,6,14,15,20,23,25,27,28,31,39,45,51,58,63,67,68,83,85,86,90,94,96,104,108,111,113,115,132,141,146,151,152,154,158,159],sweep_format:96,sweep_funct:18,sweep_len:113,sweep_mod:63,sweep_tim:61,sweep_val:[0,1,160],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[24,25,80],sweepabl:90,sweepdata:58,sweeper:[104,137,152],sweeper_bw:58,sweeper_bwmod:58,sweeper_ord:58,sweeper_param:58,sweeper_samplecount:58,sweeper_start:58,sweeper_stop:58,sweeper_xmap:58,sweeper_xxx:58,sweepfixedvalu:[129,146],sweeptraceparamet:113,sweepvalu:[80,129,144],swept:[24,27,149,160],switch_to:98,switchchannelbas:98,switchchannelusb:98,symmetr:62,symmetri:60,sync:[35,36,38,46,47,52,53,58,93,96,113,152,159],sync_delai:47,sync_dur:47,sync_filt:33,sync_output:40,sync_paramet:113,sync_settings_to_card:93,sync_sourc:40,syncchannel:96,synced_to_card:93,synchron:[95,159],syntax:[34,42,154],synthes:137,sys:[5,10,17,31,51],system32:[3,93],system:[3,6,14,42,43,64,65,69,75,82,83,93,108,114,115,123,132,136,149,156,159],system_id:[3,36,93],t_actual:60,t_arrai:7,t_array_add:7,t_array_run_id:7,t_co:[65,82],t_limit:42,t_numer:7,t_numeric_add:7,t_numeric_run_id:7,t_read:[42,97],t_set:60,t_setpoint:[42,97],t_start:[6,26,29,31],t_stop:[26,29,31],taa:7,tab:[58,76,143,155],tabl:[93,99,115,149,150,151,152,156,159],tag:[143,149,151],tailor:1,take:[0,3,7,10,25,29,31,34,36,42,43,47,50,57,63,64,65,66,67,80,82,83,95,99,100,104,108,111,115,138,143,146,149,151,154,155,160],taken:[63,115],talent:143,talk:[3,107,114,159,160],target:[42,45,55,60,85,86,93,99,108,115,117,147,152],target_curr:60,target_field:60,task:[20,25,31,40,61,64,80,89,129,135,143,146,159],tau:13,tcpip0:[3,13,26,27,28,29,30,31,32,34,39,40,43,48,49,50,51,54,55,59,62,109,111],tcpip:[42,62,63,159],tear:[6,13,39,55],teardown:13,tech:154,techniqu:143,technolog:[13,26,28,31,32,40,49,62,63],tektp:53,tektron:140,tektronix:[3,27,34,35,38,39,91,133,137,138,141,152],tektronix_awg5014:[30,54,115],tektronix_awg5200:115,tektronix_awg520:115,tell:[43,63,74,76,89,143,149,159],telnet:98,temp0_0:[46,47],temp2_1:[46,47],temp5_2:[46,47],temp:[41,97],temperatur:[41,97,108,137,152],temperature_coeffici:42,temperature_kei:97,templat:143,temporari:[30,71,120],tempt:149,tempx_i:[46,47],tend:3,tens:143,term:[31,143,149],termin:[3,4,6,27,31,35,38,57,76,77,88,97,100,106,108,111,117,154,155,159],terminolog:148,terribl:59,tesla:[43,60,108],test:[3,6,7,8,9,10,11,12,13,14,15,16,20,23,24,25,26,28,42,44,57,60,62,64,73,92,95,96,100,101,105,109,111,115,136,141,146,151,152,154,159],test_:4,test_ami430:60,test_attenuation_valid:4,test_awg_fil:54,test_field_vector:60,test_hdf5formatt:17,test_init:4,test_instru:[91,143],test_lakeshor:42,test_metadata:143,test_plot_by_id:[10,14],test_plot_by_id_:10,test_plot_util:64,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_send:115,test_snapshot:143,test_weinschel_8320:4,testcas:91,testfil:30,testhdf5_format:17,testmetadat:143,testsweep:[0,25,26,31,35,38],text:[3,10,30,31,41,42,109,143,146,152,159],texttestrunn:17,textual:[42,159],tg_thru_0db:113,tg_thru_20db:113,than:[1,3,4,7,10,34,46,47,51,58,59,64,80,83,143,149,150,151,154,156,159],thank:[42,143],that_setpoint:6,thebrain:143,thei:[2,3,4,6,11,14,20,23,25,35,38,64,70,71,87,92,97,98,107,114,115,143,146,147,149,151,156,159],thelast:6,them:[1,2,3,4,10,11,13,14,21,29,36,39,46,47,61,64,70,91,92,96,98,99,106,107,108,113,114,115,143,149,151,152,155,156,159,160],theme:121,then_act:24,theoret:[64,159],therebi:40,therefor:[3,4,6,7,10,43,45,50,59,62,64,149],thereof:97,thermometri:56,theta:[34,43,60],theta_measur:[43,60],theta_target:43,thi:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,19,20,21,23,24,25,26,28,29,30,31,32,34,35,36,38,39,42,43,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,67,70,71,73,74,75,76,77,78,79,80,82,83,86,88,89,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,111,113,114,115,117,118,120,122,123,129,131,133,134,141,143,144,146,147,149,150,151,154,155,156,158,159,160],thing:[3,5,6,15,25,36,50,59,75,80,85,86,87,89,143,146,149,153,155,159,160],think:[11,143,150,156,159],thinksr:114,third:[11,62,64,149,152,155,159],this_setpoint:6,those:[4,10,20,21,34,42,43,64,70,73,75,97,114,146,149,151,159],though:[1,3,34,83,85,86,92,96,98,99,107,113,114,115,159],thought:149,thread:[101,159],thread_map:31,threadpoolexecutor:160,three:[1,11,21,42,43,46,47,55,58,59,64,76,85,97,106,115,150,159],threefold:64,threshold:[6,10,12],threshold_notifi:12,through:[25,41,42,46,47,54,58,64,70,71,97,109,114,143,155,159,160],throughout:[61,149],thru_coax:63,thu:[6,43,143,149,151,159],thursdai:55,tick:[1,36,152],tidi:18,tight_layout:[1,7,10,34,51,54],tile:[11,34],tim:40,time:[1,2,3,5,6,7,10,11,12,13,14,21,22,23,24,25,26,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,45,46,47,50,51,53,54,55,56,57,58,59,60,62,63,64,66,73,74,80,83,85,86,92,93,95,96,97,101,104,113,114,115,117,143,149,150,151,152,154,159,160],time_const:[13,33,34],time_differ:18,timebase_posit:[13,50,62],timebase_rang:[13,50,62],timebase_scal:50,timeout:[30,31,33,35,36,39,43,50,54,55,58,61,77,88,96,98,108,109,111,114,115],timeout_tick:[36,93],timer:[35,38],timestamp:[150,154,159],titl:1,tmpfile:[56,108],tna:7,tnum:10,to_setpoint:108,to_zero:108,tobyt:30,toc:25,todo:[70,93,96,100,101,104,105,114,143],togeth:[1,20,36,42,54,109,111,149,150,159],toggl:37,toi:6,tol:6,toler:[42,97],tolist:[3,4],ton:3,too:[3,6,11,12,51,65,82,83,92,111,143,149],took:57,tool:[1,10,143],toolkit:63,top:[1,64,121,147,149,150,151],toplevel:139,topo:23,tortur:143,tostr:30,tot_tim:7,total:[3,5,10,21,41,42,51,64,99,108,149],touch:[45,143],toward:[42,43,147],tps1:53,tps1_scope_measurement_0:53,tps1_scope_measurement_1:53,tps2012:[91,152],tps2012channel:115,tps:53,tr1:63,tr2:63,tr3:63,tr4:63,trace:[1,4,25,51,53,58,93,94,96,104,111,113,121,122,152],trace_point:61,traceback:[2,31,35,38,43,154],tracedata:61,tracenotreadi:[94,96,109,115],traceparamet:[36,93,113],tracesetpointschang:96,track:[55,59,93,95,113,115,155,159],tracknr:115,tractabl:149,tradeoff:7,trail:[143,155],train:[114,152],transfer:[30,36,54,55,93,115],transfer_offset:[36,93],transform:[60,75,83,89,93,98,99,108,115],transimped:152,translat:[3,74,104],transmiss:111,travel:[45,99],travi:[7,11,14],trcl:114,treat:[11,95,123,149,159],tree:[148,152,155],trg:[28,31],tri:[13,32,64,109],triangl:[55,64,152],trig:[32,34,58,114,115],trig_engine_j:36,trig_engine_k:36,trig_engine_op_j:36,trig_engine_op_j_and_k:36,trig_engine_op_j_and_not_k:36,trig_engine_op_j_or_k:36,trig_engine_op_j_xor_k:36,trig_engine_op_k:36,trig_engine_op_not_j_and_k:36,trig_slope_neg:36,trig_slope_posit:36,trig_wait:[29,34,54,55,115],triga:[55,115],trigb:[55,115],trigger:[6,13,31,36,40,53,54,58,104,109,111,114,115,140,152],trigger_channel:59,trigger_count:[28,114],trigger_delai:[36,93],trigger_displai:50,trigger_edge_slop:[13,50,62],trigger_edge_sourc:[13,62],trigger_en:[13,62],trigger_engine1:[36,93],trigger_engine2:[36,93],trigger_input_imped:115,trigger_input_polar:115,trigger_input_slop:115,trigger_input_threshold:115,trigger_level1:[36,93],trigger_level2:[36,93],trigger_level:[13,50,53,62],trigger_mod:114,trigger_oper:[36,93],trigger_slop:31,trigger_slope1:[36,93],trigger_slope2:[36,93],trigger_sourc:[28,31,50,53,115],trigger_source1:[36,93],trigger_source2:[36,93],trigger_sweep:13,trigger_typ:[50,53],triton1_thermometri:56,triton:[91,133,137,152],trival:160,trivial:[1,4,143,149],troubleshoot:159,trun:32,truncat:143,trust:83,truthi:[25,66],ts_end:24,ts_start:24,tsclientsourcecodesqcodesqcodesinstrumentparamet:13,tst:17,tstart:[35,38],tudelft:101,tune:[34,42,101,143],tupl:[1,6,10,12,21,34,54,58,64,65,70,75,82,96,100,104,113,114,115,121,122,151],turn:[3,10,13,28,32,34,39,48,49,50,51,57,58,59,96,106,108,115,117],turoti:25,tutori:[8,19,20,21,24,50,61,64,152,158],tutorial_auto_color_scal:64,tutorial_exp:[6,7],tutorial_sequ:55,tval:10,tweak:[6,10],twice:[10,29],twini:30,two:[1,3,5,6,7,12,14,15,21,24,25,27,28,29,33,39,41,42,44,45,51,53,54,55,64,70,83,93,94,97,100,104,106,114,115,143,147,149,151,152,155,160],two_q_corr_id:10,two_q_corr_valu:10,two_qubit_corr:[10,14],twopi:29,txt:[101,115],type:[0,1,2,6,7,10,11,16,21,23,24,25,26,27,28,29,31,33,35,36,38,39,42,50,51,53,54,58,61,62,63,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,91,92,93,96,98,99,100,101,104,107,113,114,115,119,121,122,123,139,143,147,151,155,156,159,160],typeerror:[31,43,66,86,115],typic:[70,143,152,159],typo:143,uc8:[99,152],ufh:137,uhf:[104,141,152],uid:108,uint16:30,unambigu:3,unassign:[46,47],unavail:92,unblock:44,uncanningli:4,unchang:151,uncommit:93,uncondit:115,uncondition:108,undefin:[36,40,92,113],under:[6,19,97,115,151,155],underli:[4,6,93,98,99,108,115,146,159],underrang:97,underscor:143,understand:[64,143,149,159],understood:149,undesir:[25,64,149],undo:115,unexpect:96,unfortun:149,unga:156,uni:101,unicorn:23,unif:141,uniformli:64,unimport:[7,115],uninterest:6,union:[12,70,75,79,83,85,91,93,94,96,113,115],unipolar:[42,97],uniqu:[70,96,150,151],unit:[0,3,4,7,11,12,13,16,21,22,24,25,36,38,41,43,45,46,47,58,65,68,70,82,83,90,94,96,97,101,104,106,108,111,113,114,117,136,137,143,149,152,159,160],unitless:[65,82,83],unittest:[17,91,143],unknown:3,unless:[42,46,47,70,143],unlik:[55,58,65,82,91,114],unload:115,unlock:[108,111],unnecessari:21,unpack:6,unravel:11,unrecogn:92,unregul:49,unrel:[152,159],unsav:159,unscientif:149,unsign:115,unstructur:6,unsubscrib:151,unsubscribe_al:12,until:[3,6,19,34,42,45,54,83,97,108,113,114,151,159],untru:149,unus:[114,120],unusu:[36,149],unwrapped_phas:63,updat:[1,2,4,14,25,30,31,42,43,46,47,50,51,53,55,58,61,63,65,69,82,83,93,94,96,100,104,108,111,113,114,115,117,121,122,123,140,146,151,152,159],update_acquisitionkwarg:[36,93],update_config:2,update_curr:[31,46,47,100],update_display_off:51,update_display_on:51,update_measurement_en:117,update_snapshot:123,upfront:[65,82],upgrad:[58,155],uphold:149,upload:[27,54,55,97,115,152],upload_awg_fil:30,upload_curv:97,upon:[1,10,12,40,43,46,47,91,114,150],upper:[64,97,156],uppercas:108,ups:60,upsteam:2,upto:115,urg:149,url:44,usabl:151,usag:[21,34,64,73,86,108,115,144,152,158],usb:[3,4,42,45,63,98,113,141,152],usb_sa124b:[52,91],usb_spdt:[44,91],usbhidmixin:91,use:[0,1,2,3,4,6,7,10,14,20,21,25,27,29,34,36,42,43,51,53,54,58,61,62,63,64,70,73,75,76,83,85,86,88,89,91,93,97,100,101,106,107,108,111,114,115,122,133,143,146,147,150,151,153,155,156,158,159,160],use_filt:42,use_lock:101,use_thread:[24,31],useag:150,used:[3,4,6,7,10,11,12,14,21,22,25,34,37,39,42,45,50,60,64,65,67,70,73,75,76,82,83,85,86,91,93,96,97,100,101,104,105,107,108,109,111,113,114,115,119,123,146,149,151,154,155,159],useful:[1,4,7,11,12,21,58,100,114,143,147,151,155,159],useless:64,user:[1,2,3,5,10,24,30,31,32,35,42,43,44,51,54,55,83,88,92,93,97,104,106,109,114,115,147,150,151,154,155,156,159],usernam:143,usernot:115,usersjenielseqcodesrc:2,usersjenielsesourcereposqcodesdocsexamplesqcodesrc:2,usersoemdocu:55,usersqcod:58,userwarn:[13,51,58,106],uses:[1,2,3,21,42,63,83,91,92,113,114,146,156,159],using:[1,3,7,11,13,14,23,25,34,39,42,43,46,47,54,55,58,60,64,69,74,76,88,94,96,97,101,106,113,115,141,143,146,147,154,155,159],usual:[3,7,10,25,42,62,78,79,100,114,115,149,159],util:[0,3,4,17,18,31,34,35,36,38,43,64,83,91,115,129,143,148,160],utilis:4,utopia:143,v11:53,v1_point:6,v1_step:6,v1ind:6,v1point:6,v2_point:6,v2ind:6,v2point:6,v_amp_in:114,v_in:114,v_out:114,v_rang:[46,47],val:[0,3,4,6,8,21,24,25,36,42,58,83,84,85,86,115,117,160],val_map:[3,36,83,84],val_step:43,valid:[0,2,3,4,21,31,35,38,51,63,65,69,75,82,83,85,86,97,101,109,114,115,119,121,129,137,138,139,143,144,149,156,159,160],valid_sensor_unit:97,valid_vec:43,validate_al:75,validate_datadict:97,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,11,12,15,20,21,22,23,24,25,26,27,31,33,35,36,38,39,42,43,44,46,47,50,51,52,54,55,58,60,61,64,65,68,69,70,73,75,76,80,82,83,85,86,90,91,92,93,94,95,96,97,99,100,101,104,106,108,111,113,114,115,146,149,151,152,159,160],valuabl:[24,143],value_round:101,value_typ:2,valueerror:[3,4,43,57,63,67,89,91,104,115],valv:108,var_nam:34,vari:[13,25,61,65,82,149,159],variabl:[34,76,83,97,114,115,143,146,149,152,156,159],variat:97,varieti:151,variou:[2,92,96,98,99,107,113,114,115,143,146,151],vast:149,vcm:97,vdif:97,vector:[10,60,106,156,159],vendor:[3,4,24,25,33,36,38,39,43,45,61,92,93,96,98,99,107,108,113,114,115],vendor_id:98,ver1:[13,33],verbos:[17,25,91,94,96,100,111,115,143],verbose_channel:25,veri:[4,6,36,42,46,47,58,63,64,93,96,100,149,159],verifi:[3,57,59,60,114],vernier:114,versa:[39,58,60],version:[3,10,21,23,25,30,42,43,50,52,53,92,93,95,96,100,101,105,108,111,113,114,115,133,135,154,155,160],versu:[115,149,152],vertic:[53,58,111,147,152],veryfirst:6,vi_error_rsrc_nfound:159,vi_error_tmo:31,via:[1,3,6,14,23,42,45,47,55,58,64,78,79,97,106,107,114,115,123,141,149,150,152,155,159],vibuf:31,vice:[39,58],view:[14,50,51,93,143],violat:43,vipuint32:31,virtual:[3,106,107,111,114,160],virtualivvi:160,vis:60,visa:[3,4,18,30,31,34,42,43,45,54,63,83,88,92,94,95,96,97,98,99,100,101,105,107,108,109,111,113,114,115,116,117,155,159],visa_handl:[30,31,88,95,108],visainstru:[4,94,95,96,97,99,100,101,105,108,109,111,114,115,116,117,129,141,146,152,159],visaioerror:31,visalib:[4,31,42,88,108],visess:31,visibl:[46,47,64],vision:143,visit:143,visual:[113,149,154],visualis:[6,54,59,152],viuint32:31,viwrit:31,vmix:97,vna:[51,61,111,113],vna_:51,vna_output_power_set:61,vna_paramet:[51,111],vna_s11:51,vna_s11_magnitud:51,vna_s11_phas:51,vna_s11_power_set:51,vna_s11_trac:51,vna_s12_trac:51,vna_s13_trac:51,vna_s14_trac:51,vna_s21_trac:51,vna_s22_trac:51,vna_s23_trac:51,vna_s24_trac:51,vna_s31_trac:51,vna_s32_trac:51,vna_s33_trac:51,vna_s34_trac:51,vna_s41_trac:51,vna_s42_trac:51,vna_s43_trac:51,vna_s44_trac:51,vna_trac:61,vogel:143,volatg:57,volt:[3,25,26,27,28,35,38,39,57,58,93,95,101,114,115,117],volt_0:38,volt_1:38,volt_:114,volt_set:38,voltag:[3,4,6,10,12,14,21,23,24,25,26,27,28,37,39,43,46,47,48,49,57,83,91,95,97,100,101,107,114,115,117,137,138,146,149,152,159],voltage_limit:57,voltage_rang:57,voltage_range_statu:100,voltage_raw:[3,107,114],voltagedict:114,voltagedivid:91,voltageparamet:114,voltmet:159,volunt:143,vpp:[13,40],vrang:[3,31,46,47,100],vsd:20,w8320_1:3,wai:[1,2,3,4,6,7,11,14,20,25,33,36,43,54,58,67,83,100,108,114,115,121,143,147,149,150,151,159,160],wait:[4,13,25,28,30,34,54,61,75,80,83,93,94,96,97,98,106,108,114,115,129,146,152,159,160],wait_cycle_tim:[42,97],wait_equilibration_tim:[42,97],wait_for_operation_to_complet:115,wait_for_run:115,wait_l:30,wait_toler:[42,97],wait_trigg:115,wait_until_samples_captur:[34,114],wait_until_set_point_reach:[42,97],wait_valu:115,walk:160,wall:[5,10,51],want:[0,1,2,3,6,10,12,13,14,20,32,34,37,50,51,53,58,60,62,63,64,65,71,82,91,92,93,98,100,143,144,146,149,151,153,155,156,158,159,160],warm_up:[42,97],warmup_heat:42,warn:[2,3,12,13,50,51,54,58,60,80,92,104,136,156],warp:152,wav:[18,30,100],wave:[29,30,50,53,62],waveform:[21,32,34,40,50,59,62,96,105,109,115,137,141,152,159],waveform_ch1:34,waveform_nam:115,waveform_param:109,waveformgenerator_33xxx:[13,96],waveformlib:30,waveformlist:[34,55,115],web:[58,104],week:143,weight:2,wein_sim:4,weinschel:[3,4,91],weinschel_8320:[3,91,152],welcom:[19,34,143,153],well:[1,4,10,20,41,42,48,50,58,64,67,74,92,95,96,98,99,107,108,113,114,115,143,149,151,159],went:60,were:[6,10,11,13,70,71,83,93,131,149,151],wf_dummi:30,wfm001ch1:115,wfm002ch1:115,wfm1:115,wfm1ch1:115,wfm1ch2:115,wfm2:115,wfm2ch1:115,wfm2ch2:115,wfm:[29,34,54,55,115],wfm_ch1_n1:55,wfm_ch1_n2:55,wfm_ch2_n1:55,wfm_ch2_n2:55,wfmch1pos1:115,wfmch1pos2:115,wfmch2pos1:115,wfmname:[30,54,115],wfmx:[29,55,115],wfmx_file:[29,55],wfmxfilefold:115,wfname_l:[30,115],wfs1:115,wfs2:115,wfs:115,what:[2,10,11,12,14,24,25,34,41,42,43,46,47,54,58,60,63,77,80,82,85,86,88,95,108,115,117,129,143,149,150,152,156,159,160],whatev:[28,93,149],wheel:143,when:[1,3,4,6,10,11,12,14,21,23,24,34,39,40,42,43,46,47,51,53,54,57,60,65,66,67,70,73,82,83,86,87,91,92,93,95,99,100,101,104,107,109,113,114,115,120,143,150,151,154,156,159,160],whenev:[114,115,159],where:[2,3,4,6,10,11,12,14,21,22,23,25,34,42,46,47,50,55,64,65,71,74,82,85,86,93,95,96,101,104,107,108,114,115,118,120,121,143,149,150,151,156,159,160],wherea:[28,149],whether:[11,34,37,43,50,74,76,77,83,100,106,108,109,115,143,149,155,159],which:[1,2,3,4,6,7,10,20,21,23,25,29,32,34,42,51,54,58,60,65,67,69,70,71,73,74,76,79,80,82,83,85,87,91,92,93,96,97,99,100,106,108,111,113,114,115,118,120,123,143,146,149,150,151,155,156,159,160],whish:0,white:[50,64,121,143],whitespac:76,who:[43,143,153],whole:[3,20,21,59,76,82,107,114,133,143,146,149,159],whose:[70,114,123,159,160],why:[58,143,149],widen:64,widget:[1,35,38,41,42,135],width:[121,122],wihpniel:143,wihtout:15,william:[24,30,31,43,58,143],williamhpnielsen:[100,114],win32:92,win:2,window:[3,10,35,38,51,93,108,115,122,140,155],window_titl:121,windowtitl:38,wire:[6,8],wish:[115,149],with_bg_task:[1,25,31,61],within:[1,3,36,42,62,64,67,70,87,89,93,97,104,108,113,143,150,154,159],without:[10,15,22,34,37,42,57,60,64,98,111,139,147,149,151,152,155,156,159],won:51,wonder:58,word:[14,34,42,43,149,150,152,153],work:[2,3,4,10,14,20,32,36,45,49,52,57,63,64,71,72,96,101,105,109,111,114,115,118,120,143,147,149,150,152,154,155,156,159,160],work_stat:156,workflow:[147,152,154],world:[143,149,154],worri:57,wors:143,worthwhil:24,would:[1,2,8,21,35,38,43,73,111,143,149,153,159],wouldn:4,wrap:[13,21,22,58,72,98,99,108,115,159],wrapper:[8,64,94,101,108,111,156],write:[2,3,4,5,6,7,13,18,23,28,30,31,35,40,71,74,75,76,77,88,92,93,95,96,98,99,100,101,108,113,114,115,117,120,143,147,149,158,159],write_channel:99,write_confirm:77,write_copi:159,write_dataset:151,write_metadata:74,write_modul:114,write_period:[6,71,120],write_pin:92,write_port:92,write_raw:[31,98,99,108,115],written:[1,6,76,93,97,108,115,149,151],wrong:[57,60,95,143,149],wrote:18,ww2:44,x_data:5,x_i:10,x_length:1,x_measur:43,x_offset:33,x_shape:5,x_target:43,x_val:[0,160],x_x:10,x_y:10,x_z:10,xfullnam:16,xlabel:[34,60],xlen:16,xml:[115,143],xname:16,xnois:[34,114],xnum:10,xrm:58,xsp4t:141,xunit:16,xval:10,xxx:95,y_data:5,y_i:10,y_length:1,y_measur:43,y_offset:33,y_setpoint:5,y_shape:5,y_target:43,y_val:[0,160],y_y:10,y_z:10,yai:135,yaml:[2,42,152],yeah:[10,38],year:143,yellow:34,yes:[115,159],yet:[55,58,62,64,74,143,159],yfullnam:16,yield:[4,6,8,80,114],ylabel:[34,60],ylen:16,yml:[2,155],yname:16,ynois:[34,114],yokogawa:[91,136,141,152],yolo:2,you:[0,1,2,3,4,6,7,8,14,19,20,21,23,24,25,34,39,42,43,44,48,49,50,51,52,53,54,58,60,62,63,64,65,69,70,71,72,74,75,80,82,83,85,86,91,93,97,100,107,113,114,115,118,120,122,144,146,152,153,155,156,158,159,160],your:[3,4,13,14,24,25,58,62,63,64,69,75,91,92,96,97,98,99,107,113,114,115,143,152,153,156,159,160],yourself:[24,93,114,155],yrm:58,yscale:58,yunit:16,yvalu:12,z_data:5,z_i:10,z_measur:43,z_target:43,z_val:[0,160],z_z:10,zero:[3,5,16,29,30,34,43,46,47,54,55,60,62,65,82,83,93,97,99,101,104,108,115,151],zero_dataset:5,zero_posit:[45,99],zerodata:[5,14],zip:[10,30,31,60],ziuhfli:[58,91],ziuhfli_rrm:58,ziuhfli_sig:58,ziuhfli_xrm:58,ziuhfli_yrm:58,zn20:152,znb20:91,znb4:111,znb8:[51,111,139],znb:[51,91,133],znbchannel:111,zone:[42,60,97,108],zoom:104,zurich:58,zval:10},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","Dataset Benchmarking","The Context Manager aka the Measurement Object","DataSet Performance","Implementing doND using the dataset","Load old Data","Offline Plotting Tutorial","Paramtypes explained","Pedestrian example of subscribing to a DataSet","Example Measurements with Real Instruments","The Experiment Container","Experiment container and dasets","Subscriber with JSON export","Datasaving Examples","Logfile parsing","Plotting","Measure without a Loop","Parameters in QCoDeS","ScaledParameter","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","Example notebook for the Rigol DG 1062 instrument","QCoDeS example with SR830","Standford Research SR86x Lock-in Amplifier example (with buffered readout)","Qcodes example with Agilent 34400A","Qcodes example with Alazar ATS 9360","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Lakeshore 325 driver example","Example usage of the Lakeshore Model 372 to control the temperature of the Bluefors fridge","QCodes example with Mercury iPS","Example for Minicircuits Switch Boxes controlled via USB","Qcodes example with Newport AG-UC8 piezo motion controller","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with R&S HMC 8043 Power supply","Qcodes example with Rigol DP832 Power supply","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","Frequency trace","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+broadbean example with Tektronix AWG5208","QCoDeS example with AMI430","Qcodes example with HP8753D","Example Notebook for Keysight Infiniium Oscilloscopes","Example Notebook for Keysight Network Analyzers","Auto Color Scale","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.Newport 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.rigol.private package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.rohde_schwarz.private 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.10","Changelog for QCoDeS 0.1.11","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","Dataset Design","DataSet","Interdependent Parameters","Introduction","DataSet Specification","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":27,"33500b":40,"34400a":35,"34411a":26,"34465a":[26,28],"break":[132,133,135,136,137,141],"case":10,"class":[3,129,130,131],"default":[64,156],"export":16,"function":[55,75,129,130,131],"import":[25,26,27,34,54,62],"new":[6,132,133,135,136,137,138,139,140,141,143],"public":131,"switch":44,"while":61,ATS:[36,93],Not:4,One:34,THE:53,THERE:54,That:[4,43],The:[4,6,14,23,24,25],Using:[2,40,58,64,155,156],abort:157,access:[34,151],acquir:[53,61],acquisit:[33,50,53,62],action:[23,25,131],add:5,adding:3,advantech:92,after:[5,34],ag_uc8:99,aggreg:0,agil:[26,35,105],agilent_34400a:105,aka:6,alazar:36,alazartech:93,all:[20,149],american_magnet:106,ami430:[60,106],amplifi:[22,34],analyz:63,approach:30,arrai:[5,6,11,15,20],arrayparamet:[21,65],ascii:12,asymmetr:64,async:160,ats9360:93,ats9870:93,ats_acquisition_control:93,attent:[46,47],auto:64,automat:[42,64],avanc:160,averag:[50,52],awai:43,awg5014:[54,115],awg5014c:30,awg5200:115,awg5208:[59,115],awg520:115,awg70000a:115,awg70002a:[29,55,115],awg:[34,54,55],awgfilepars:115,background:64,base:[3,42],base_spdt:98,baselin:5,basic:[25,32,34,39,40,43,46,47,58,150,151,152],benchmark:[5,27,28,29,30,31,51,152],block:42,bluefor:42,bonu:4,box:44,breakif:66,broadbean:59,buffer:[31,33,34],bug:143,build:29,burst:[32,40],calibr:41,call:12,can:25,captur:[34,59],categori:10,caution:58,chang:[2,132,133,135,136,137,141],changelog:[132,133,134,135,136,137,138,139,140,141,142],channel:[3,34,42,46,47,51],channellist:67,chat:153,chees:10,clever:143,close:42,code:[143,145],color:64,combin:[0,90,160],combinedparamet:68,command:[32,41,124],commit:143,commun:144,compensatori:149,complic:59,comprehens:1,conduct:149,config:[2,14,69,131,156],configur:[2,34,156],congratul:4,connect:[43,63],construct:[6,151],cont:50,contain:[14,15],content:[25,54,58,64,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,143],context:6,continu:50,continuo:42,contribut:143,control:[42,44,45],core:2,creat:[3,4,62],creation:151,curv:[39,53],custom:[2,3,64],cutoff:64,cuttoff:64,d5a:101,daset:15,data:[5,9,10,17,25,34,62,64,131],dataarrai:70,databas:[6,14],dataformat:17,datasav:17,dataset:[5,7,8,12,71,147,148,149,150,151,152,159],date:155,decadac:[37,95],decoupl:149,deferred_oper:125,defin:25,demo:20,demodul:58,depend:[10,62,155],design:147,develop:143,devic:91,dg1062:109,dg4000:109,differ:43,dimens:149,disabl:42,diskio:72,divid:22,dll:3,dond:8,doubl:5,dp821:109,dp831:109,dp832:[49,109],dp8xx:110,driver:[3,34,41,42,43,152,160],ds4000:109,dummi:17,dynam:3,e8267c:105,e8527d:105,elaps:18,emit:34,environ:155,error:40,event:1,examp:64,exampl:[3,4,6,11,12,13,15,17,25,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,64,149,152,159],experi:[2,6,14,15,150],explain:11,extran:32,f1d:101,familiar:143,fanci:10,faq:157,fast:39,featur:143,feedback:42,few:149,file:[4,14,29,54,156],find:18,first:43,fix:[132,135,136,137],format:143,formatloc:73,formatt:[23,74],frequenc:[12,13,52],fridg:42,from:[17,34,43,53,155],gener:[5,17,30,55,149],get:[18,27,28,54,59,153,155],git:143,github:155,global:25,gnuplotformat:76,good:149,gs200:[57,117],gs210:57,guid:[144,158],handl:[1,40],happi:43,harvard:95,heat:42,heater:[41,42],help:153,helper:126,hierarchi:146,higher:149,hmc8041:111,hmc8042:111,hmc8043:111,hmc804x:112,hmc:48,hole:10,homogen:64,horizont:50,how:[1,4,157],hp33210a:105,hp8133a:94,hp8753d:[61,94],hp_83650a:94,iPS:43,idea:43,idl:32,ilm200:108,immedi:34,imped:32,implement:8,improv:[132,133,135,136,137,138,139,140,141],includ:4,independ:10,indepent:10,individu:58,infiniium:[62,96],infrastructur:34,initi:[34,43],initialis:[27,54],input:[50,58],insert:5,insid:[5,14],instal:155,instanti:[20,25,43],instrument:[3,4,13,17,20,24,25,32,59,62,63,78,131,146,159,160],instrument_driv:[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],instrumentchannel:79,intent:149,interact:25,interdepend:149,interfac:[1,34,151],interleav:10,intern:32,interrupt:10,introduct:[64,147,149,150,151,159],invalid:43,involv:3,ipinstru:77,ips120:108,issu:151,ithaco:[38,107],ithaco_1211:107,ivvi:101,json:16,keep:155,keithlei:39,keithley_2000:115,keithley_2400:115,keithley_2600:115,keithley_2600_channel:115,keithley_2700:115,kelvinox:108,keysight:[26,28,31,40,62,63,96],keysight_33500b:96,keysight_33500b_channel:96,keysight_34460a:96,keysight_34461a:96,keysight_34465a:96,keysight_34470a:96,keysight_b2962a:96,keysight_e8267d:96,keysight_n5183b:96,keysightagilent_33xxx:96,lakeshor:[41,42,97],lakeshore_bas:97,latest:155,lazi:54,level:32,linkag:146,list:[33,54,55],live:25,load:[9,25,41],load_data:118,locat:[23,25],lock:34,logfil:18,loop:[5,15,17,20,24,25,26,42,80,131,159],m3201a:96,m3300a:96,mai:6,make:[54,55,59],manag:6,mani:5,manual:3,manualparamet:81,matplot:[1,122],matplotlib:1,measur:[6,13,20,24,25,58,61,63,119,131,149,157,159,160],mercuri:43,mercuryip:108,mercuryips_visa:108,messag:143,meta:160,metadata:[127,151],minicircuit:[44,98],misc:131,miss:6,mode:[40,54],model:42,model_325:97,model_336:97,model_372:97,modul:[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],more:[3,153,156],motion:45,multiparamet:[6,21,82],multipl:[25,63],multipli:22,n51x1:96,n5230c:96,n5245a:96,n52xx:96,necessari:149,need:20,network:63,new_data:120,newport:[45,99],noisi:64,note:143,notebook:[32,62,63],notif:12,now:43,nplc:27,number:149,numer:11,object:[6,146],observ:42,offlin:10,old:9,onc:5,one:[26,34,63],onli:20,onto:59,open:151,oper:[39,55],optimis:6,order:12,organ:3,origin:43,oscilloscop:[50,53,62],other:155,out:50,outer:5,outlier:64,output:[20,25,58],overview:[43,46,47,159],oxford:108,packag:[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],paramamet:42,paramet:[0,3,4,5,10,21,24,33,34,43,63,83,146,149,159,160],paramspec:151,paramtyp:11,pars:18,part:[26,59],pcie_1751:92,pedestrian:12,per:[34,149],percentil:64,perform:7,persist:151,phase:154,piezo:45,plai:59,plan:154,plot:[1,10,19,25,64,121,122,131,149,152],plotter:12,point:41,possibl:149,power:[6,48,49,52],practic:149,pre:28,predefin:51,prepar:62,prerequisit:58,print:6,privat:[110,112,130],problem:64,project:154,provid:25,pull:143,puls:34,push:143,py_head:103,pyqtgraph:121,pyvisa:4,qcmatplotlib:122,qcode:[2,3,6,21,25,26,33,35,36,37,38,39,40,43,45,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,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,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,132,133,134,135,136,137,138,139,140,141,152,154,155,156,157],qdac:[31,46,47,100],qdac_channel:[47,100],qdev:100,qtplot:[1,121],queri:18,qutech:101,ramp:43,random:6,rang:42,raster:10,rate:34,raw:26,rc_sp4t:98,rc_spdt:98,reach:42,read:[26,34,42,50,63],readout:[34,42],real:13,realli:[143,149],record:50,rectangular:10,reg:103,region:43,regular:10,releas:155,remov:3,report:143,request:143,requir:[151,155],rescal:10,research:34,resist:22,respons:159,restructur:149,result:[27,28],rigol:[32,49,109,110],risk:64,rohd:[50,51],rohde_schwarz:[111,112],rough:146,rte1000:111,rto1000:111,rto:50,rudat_13g_90:98,run:[17,50,54,143,157],s5i:101,safe:43,sampl:[6,34,58],save:[2,5,156],scale:64,scaledparamet:22,scan:10,schwarz:[50,51],scientif:149,scope:[58,59],script:27,second:43,select:42,send:[54,55],sensor:[41,42,46,47],sent:34,sequenc:[55,59],seqx:29,seri:50,set:[25,27,28,32,34,41,46,47,50,53,58,149],setpoint:42,setup:[5,26,34,42,62,143],sg384:114,sgs100a:111,shot:[31,34],signal:[34,50,58],signal_hound:113,signatur:12,sim928:114,simpl:[0,1,3,6,10,34,63],simul:[3,4,43,160],singl:[10,31,50,61],smr40:111,snapshot:24,softwar:28,some:[6,54],sourc:145,spcerr:103,specif:151,spectrum:[102,103],sr560:114,sr830:[33,114],sr860:[18,114],sr865:114,sr865a:114,sr86x:[34,114],stage:149,standardparamet:84,standford:34,stanford_research:114,start:[17,155],state:6,station:[123,131,146],storag:151,store:5,string:10,stuff:31,style:[55,143],submodul:[91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],subpackag:[91,102,109,111],subplot:1,subscrib:[12,16,151],subscript:6,summari:28,suppli:[48,49],sweep:[1,10,13,24,26,42,43,61,149,160],sweeper:58,sweepfixedvalu:85,sweepvalu:[86,146],sync:[31,32],tabl:[25,54,58,64],target:43,task:87,tektronix:[29,30,53,54,55,59,115],temperatur:[42,46,47],terminolog:151,test:[4,17,91,143],text:11,them:54,third:43,tick:10,time:[18,27],todo:[80,86,108,111,115,146,156,160],tps2012:[53,115],trace:[13,50,52,61,62,63],train:34,transimped:22,tree:149,triangl:13,trigger:[28,32,34,50,62],triton:[56,108],tutori:[10,25,160],two:[10,26,43],typic:25,uc8:45,uhf:58,unit:[10,42],unrel:42,updat:[41,155,156],upload:[29,30],usag:[32,40,42,46,47,58,143,157],usb:44,usb_sa124b:113,usb_spdt:98,usbhidmixin:98,user:158,using:[6,8,152],util:[93,124,125,126,127,128,131,151],valid:[128,146],valu:[10,34,41,156],variabl:2,versu:26,vertic:50,via:[34,44,54],visainstru:[3,88],visualis:18,voltag:22,wait:[42,89],warp:10,waveform:[29,30,54,55],weinschel:116,weinschel_8320:[4,116],what:[3,4],without:[20,51],word:58,work:42,workflow:25,write:[151,160],yaml:4,yokogawa:[57,117],you:143,your:[2,155],ziuhfli:104,zn20:51,znb20:111,znb:111}})
\ 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/DataSet/Benchmarking","_notebooks/DataSet/Dataset Context Manager","_notebooks/DataSet/Dataset Performance","_notebooks/DataSet/Implementing_doND_using_the_dataset","_notebooks/DataSet/Load old data","_notebooks/DataSet/Offline Plotting Tutorial","_notebooks/DataSet/Paramtypes explained","_notebooks/DataSet/Pedestrian example of subscribing to a DataSet","_notebooks/DataSet/Real_instruments/Example Measurements with Real Instruments","_notebooks/DataSet/The Experiment Container","_notebooks/DataSet/example-creation","_notebooks/DataSet/subscriber json exporter","_notebooks/Datasaving examples","_notebooks/Logfile parsing","_notebooks/Main","_notebooks/Measure without a Loop","_notebooks/Parameters","_notebooks/Scaled Parameter","_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 Rigol DG1062","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Alazar 9360","_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 Lakeshore 325","_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control","_notebooks/driver_examples/Qcodes example with Mercury iPS","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT)","_notebooks/driver_examples/Qcodes example with Newport AG-UC8","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with R&S HMC8043","_notebooks/driver_examples/Qcodes example with Rigol DP832","_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 Signal Hound USB-SA124B","_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+broadbean_example_with_Tektronix_AWG5208","_notebooks/driver_examples/Qcodes_example_with_AMI430","_notebooks/driver_examples/Qcodes_example_with_HP8753D","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope","_notebooks/driver_examples/Qcodes_example_with_Keysight_Network_Analyzer","_notebooks/plotting/auto_color_scale","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.Newport","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.rigol.private","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.rohde_schwarz.private","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.10","changes/0.1.11","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","dataset/dataset_design","dataset/index","dataset/interdependentparams","dataset/introduction","dataset/spec","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:55,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/DataSet/Benchmarking.rst","_notebooks/DataSet/Dataset Context Manager.rst","_notebooks/DataSet/Dataset Performance.rst","_notebooks/DataSet/Implementing_doND_using_the_dataset.rst","_notebooks/DataSet/Load old data.rst","_notebooks/DataSet/Offline Plotting Tutorial.rst","_notebooks/DataSet/Paramtypes explained.rst","_notebooks/DataSet/Pedestrian example of subscribing to a DataSet.rst","_notebooks/DataSet/Real_instruments/Example Measurements with Real Instruments.rst","_notebooks/DataSet/The Experiment Container.rst","_notebooks/DataSet/example-creation.rst","_notebooks/DataSet/subscriber json exporter.rst","_notebooks/Datasaving examples.rst","_notebooks/Logfile parsing.rst","_notebooks/Main.rst","_notebooks/Measure without a Loop.rst","_notebooks/Parameters.rst","_notebooks/Scaled Parameter.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 Rigol DG1062.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 with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Alazar 9360.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 Lakeshore 325.rst","_notebooks/driver_examples/Qcodes example with Lakeshore 336 or 372 - Bluefors T control.rst","_notebooks/driver_examples/Qcodes example with Mercury iPS.rst","_notebooks/driver_examples/Qcodes example with Minicircuits Switch boxes (USB-XSPDT).rst","_notebooks/driver_examples/Qcodes example with Newport AG-UC8.rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with R&S HMC8043.rst","_notebooks/driver_examples/Qcodes example with Rigol DP832.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 Signal Hound USB-SA124B.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+broadbean_example_with_Tektronix_AWG5208.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","_notebooks/driver_examples/Qcodes_example_with_Keysight_Network_Analyzer.rst","_notebooks/plotting/auto_color_scale.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.Newport.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.rigol.private.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.private.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.10.rst","changes/0.1.11.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","dataset/dataset_design.rst","dataset/index.rst","dataset/interdependentparams.rst","dataset/introduction.rst","dataset/spec.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__:[64,1,1,""]},"qcodes.BreakIf":{__init__:[65,1,1,""]},"qcodes.ChannelList":{__init__:[66,1,1,""]},"qcodes.CombinedParameter":{__init__:[67,1,1,""]},"qcodes.Config":{__init__:[68,1,1,""],config_file_name:[68,2,1,""],current_config:[68,2,1,""],current_config_path:[68,2,1,""],current_schema:[68,2,1,""],cwd_file_name:[68,2,1,""],default_file_name:[68,2,1,""],env_file_name:[68,2,1,""],home_file_name:[68,2,1,""],schema_cwd_file_name:[68,2,1,""],schema_default_file_name:[68,2,1,""],schema_env_file_name:[68,2,1,""],schema_file_name:[68,2,1,""],schema_home_file_name:[68,2,1,""]},"qcodes.DataArray":{__init__:[69,1,1,""]},"qcodes.DataSet":{__init__:[70,1,1,""],background_functions:[70,2,1,""]},"qcodes.DiskIO":{__init__:[71,1,1,""]},"qcodes.FormatLocation":{__init__:[72,1,1,""]},"qcodes.Formatter":{__init__:[73,1,1,""]},"qcodes.Function":{__init__:[74,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[75,1,1,""]},"qcodes.IPInstrument":{__init__:[76,1,1,""]},"qcodes.Instrument":{__init__:[77,1,1,""],functions:[77,2,1,""],name:[77,2,1,""],parameters:[77,2,1,""],submodules:[77,2,1,""]},"qcodes.InstrumentChannel":{__init__:[78,1,1,""],functions:[78,2,1,""],name:[78,2,1,""],parameters:[78,2,1,""]},"qcodes.Loop":{__init__:[79,1,1,""]},"qcodes.ManualParameter":{__init__:[80,1,1,""]},"qcodes.MultiParameter":{__init__:[81,1,1,""]},"qcodes.Parameter":{__init__:[82,1,1,""]},"qcodes.StandardParameter":{__init__:[83,1,1,""]},"qcodes.SweepFixedValues":{__init__:[84,1,1,""]},"qcodes.SweepValues":{__init__:[85,1,1,""]},"qcodes.Task":{__init__:[86,1,1,""]},"qcodes.VisaInstrument":{__init__:[87,1,1,""],visa_handle:[87,2,1,""]},"qcodes.Wait":{__init__:[88,1,1,""]},"qcodes.instrument_drivers":{Advantech:[91,4,0,"-"],AlazarTech:[92,4,0,"-"],HP:[93,4,0,"-"],Harvard:[94,4,0,"-"],Keysight:[95,4,0,"-"],Lakeshore:[96,4,0,"-"],Minicircuits:[97,4,0,"-"],Newport:[98,4,0,"-"],QDev:[99,4,0,"-"],QuTech:[100,4,0,"-"],Spectrum:[101,4,0,"-"],ZI:[103,4,0,"-"],agilent:[104,4,0,"-"],american_magnetics:[105,4,0,"-"],devices:[90,4,0,"-"],ithaco:[106,4,0,"-"],oxford:[107,4,0,"-"],rigol:[108,4,0,"-"],rohde_schwarz:[110,4,0,"-"],signal_hound:[112,4,0,"-"],stanford_research:[113,4,0,"-"],tektronix:[114,4,0,"-"],test:[90,4,0,"-"],weinschel:[115,4,0,"-"],yokogawa:[116,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[91,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[91,0,1,""],DAQNaviException:[91,5,1,""],DAQNaviWarning:[91,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[91,2,1,""],check:[91,1,1,""],close:[91,1,1,""],get_idn:[91,1,1,""],port_count:[91,1,1,""],read_pin:[91,1,1,""],read_port:[91,1,1,""],write_pin:[91,1,1,""],write_port:[91,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9360:[92,4,0,"-"],ATS9870:[92,4,0,"-"],ATS:[92,4,0,"-"],ATS_acquisition_controllers:[92,4,0,"-"],utils:[92,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[92,0,1,""],AlazarTech_ATS:[92,0,1,""],Buffer:[92,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[92,2,1,""],buffer_done_callback:[92,1,1,""],handle_buffer:[92,1,1,""],post_acquire:[92,1,1,""],pre_acquire:[92,1,1,""],pre_start_capture:[92,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[92,1,1,""],channels:[92,2,1,""],clear_buffers:[92,1,1,""],config:[92,1,1,""],dll_path:[92,2,1,""],find_boards:[92,6,1,""],get_board_info:[92,6,1,""],get_idn:[92,1,1,""],get_num_channels:[92,7,1,""],get_sample_rate:[92,1,1,""],signal_to_volt:[92,1,1,""],sync_settings_to_card:[92,1,1,""],syncing:[92,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[92,1,1,""],free_mem:[92,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9360":{AlazarTech_ATS9360:[92,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9360.AlazarTech_ATS9360":{samples_divisor:[92,2,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[92,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[92,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[92,1,1,""],fit:[92,1,1,""],handle_buffer:[92,1,1,""],post_acquire:[92,1,1,""],pre_acquire:[92,1,1,""],pre_start_capture:[92,1,1,""],update_acquisitionkwargs:[92,1,1,""]},"qcodes.instrument_drivers.AlazarTech.utils":{TraceParameter:[92,0,1,""]},"qcodes.instrument_drivers.AlazarTech.utils.TraceParameter":{set_raw:[92,1,1,""],synced_to_card:[92,2,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[93,4,0,"-"],HP8753D:[93,4,0,"-"],HP_83650A:[93,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[93,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[93,0,1,""],HP8753DTrace:[93,0,1,""],HPIntParser:[93,3,1,""],TraceNotReady:[93,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[93,1,1,""],reset:[93,1,1,""],run_N_times:[93,1,1,""],run_continously:[93,1,1,""],startup:[93,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[93,1,1,""],prepare_trace:[93,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[93,0,1,""],parsestr:[93,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[93,1,1,""],print_modstatus:[93,1,1,""],reset:[93,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[94,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[94,5,1,""],DacChannel:[94,0,1,""],DacReader:[94,0,1,""],DacSlot:[94,0,1,""],Decadac:[94,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[94,1,1,""],write:[94,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[94,2,1,""],ask:[94,1,1,""],write:[94,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[94,2,1,""],DAC_SLOT_CLASS:[94,2,1,""],__repr__:[94,1,1,""],_ramp_state:[94,2,1,""],_ramp_time:[94,2,1,""],connect_message:[94,1,1,""],get_idn:[94,1,1,""],ramp_all:[94,1,1,""],set_all:[94,1,1,""],write:[94,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[95,4,0,"-"],KeysightAgilent_33XXX:[95,4,0,"-"],Keysight_33500B:[95,4,0,"-"],Keysight_33500B_channels:[95,4,0,"-"],Keysight_34460A:[95,4,0,"-"],Keysight_34461A:[95,4,0,"-"],Keysight_34465A:[95,4,0,"-"],Keysight_34470A:[95,4,0,"-"],Keysight_B2962A:[95,4,0,"-"],Keysight_E8267D:[95,4,0,"-"],Keysight_N5183B:[95,4,0,"-"],M3201A:[95,4,0,"-"],M3300A:[95,4,0,"-"],N51x1:[95,4,0,"-"],N5230C:[95,4,0,"-"],N5245A:[95,4,0,"-"],N52xx:[95,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[95,0,1,""],InfiniiumChannel:[95,0,1,""],MeasurementSubsystem:[95,0,1,""],RawTrace:[95,0,1,""],TraceNotReady:[95,5,1,""],TraceSetPointsChanged:[95,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[95,1,1,""],prepare_curvedata:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[95,0,1,""],SyncChannel:[95,0,1,""],WaveformGenerator_33XXX:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[95,0,1,""],Keysight_33500B_Channels:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34460A":{Keysight_34460A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34461A":{Keysight_34461A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{Keysight_34465A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34470A":{Keysight_34470A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_B2962A":{B2962A:[95,0,1,""],B2962AChannel:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_B2962A.B2962A":{get_idn:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[95,0,1,""],parse_on_off:[95,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[95,1,1,""],on:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[95,0,1,""],M3300A_DIG:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.N5230C":{N5230C:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.N5245A":{N5245A:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.N52xx":{FormattedSweep:[95,0,1,""],PNABase:[95,0,1,""],PNAPort:[95,0,1,""],PNASweep:[95,0,1,""],PNATrace:[95,0,1,""],PNAxBase:[95,0,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.FormattedSweep":{get_raw:[95,1,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNABase":{averages_off:[95,1,1,""],averages_on:[95,1,1,""],get_options:[95,1,1,""],reset_averages:[95,1,1,""],traces:[95,2,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNASweep":{setpoints:[95,2,1,""],shape:[95,2,1,""]},"qcodes.instrument_drivers.Keysight.N52xx.PNATrace":{ask:[95,1,1,""],parse_paramstring:[95,7,1,""],run_sweep:[95,1,1,""],write:[95,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_325:[96,4,0,"-"],Model_336:[96,4,0,"-"],Model_372:[96,4,0,"-"],lakeshore_base:[96,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_325":{Model_325:[96,0,1,""],Model_325_Curve:[96,0,1,""],Model_325_Heater:[96,0,1,""],Model_325_Sensor:[96,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325":{upload_curve:[96,1,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325_Curve":{get_data:[96,1,1,""],set_data:[96,1,1,""],temperature_key:[96,2,1,""],valid_sensor_units:[96,2,1,""],validate_datadict:[96,6,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_325.Model_325_Sensor":{curve:[96,2,1,""],decode_sensor_status:[96,1,1,""],sensor_status_codes:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[96,0,1,""],Model_336_Channel:[96,0,1,""],Output_336_CurrentSource:[96,0,1,""],Output_336_VoltageSource:[96,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Model_336":{CHANNEL_CLASS:[96,2,1,""],channel_name_command:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Model_336_Channel":{SENSOR_STATUSES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Output_336_CurrentSource":{MODES:[96,2,1,""],RANGES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_336.Output_336_VoltageSource":{MODES:[96,2,1,""],RANGES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372":{Model_372:[96,0,1,""],Model_372_Channel:[96,0,1,""],Output_372:[96,0,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Model_372":{CHANNEL_CLASS:[96,2,1,""],channel_name_command:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Model_372_Channel":{SENSOR_STATUSES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.Model_372.Output_372":{MODES:[96,2,1,""],POLARITIES:[96,2,1,""],RANGES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base":{BaseOutput:[96,0,1,""],BaseSensorChannel:[96,0,1,""],LakeshoreBase:[96,0,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.BaseOutput":{MODES:[96,2,1,""],RANGES:[96,2,1,""],set_range_from_temperature:[96,1,1,""],set_setpoint_and_range:[96,1,1,""],wait_until_set_point_reached:[96,1,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.BaseSensorChannel":{SENSOR_STATUSES:[96,2,1,""]},"qcodes.instrument_drivers.Lakeshore.lakeshore_base.LakeshoreBase":{CHANNEL_CLASS:[96,2,1,""],channel_name_command:[96,2,1,""]},"qcodes.instrument_drivers.Minicircuits":{Base_SPDT:[97,4,0,"-"],RC_SP4T:[97,4,0,"-"],RC_SPDT:[97,4,0,"-"],RUDAT_13G_90:[97,4,0,"-"],USBHIDMixin:[97,4,0,"-"],USB_SPDT:[97,4,0,"-"]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT":{SPDT_Base:[97,0,1,""],SwitchChannelBase:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.Base_SPDT.SPDT_Base":{CHANNEL_CLASS:[97,2,1,""],add_channels:[97,1,1,""],all:[97,1,1,""],get_number_of_channels:[97,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T":{MC_channel:[97,0,1,""],RC_SP4T:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SP4T.RC_SP4T":{ask:[97,1,1,""],get_idn:[97,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT":{MC_channel:[97,0,1,""],RC_SPDT:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RC_SPDT.RC_SPDT":{ask:[97,1,1,""],get_idn:[97,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90":{RUDAT_13G_90:[97,0,1,""],RUDAT_13G_90_USB:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90.RUDAT_13G_90":{get_idn:[97,1,1,""]},"qcodes.instrument_drivers.Minicircuits.RUDAT_13G_90.RUDAT_13G_90_USB":{product_id:[97,2,1,""],vendor_id:[97,2,1,""]},"qcodes.instrument_drivers.Minicircuits.USBHIDMixin":{MiniCircuitsHIDMixin:[97,0,1,""],USBHIDMixin:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USBHIDMixin.USBHIDMixin":{ask_raw:[97,1,1,""],close:[97,1,1,""],enumerate_devices:[97,6,1,""],product_id:[97,2,1,""],vendor_id:[97,2,1,""],write_raw:[97,1,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT":{SwitchChannelUSB:[97,0,1,""],USB_SPDT:[97,0,1,""]},"qcodes.instrument_drivers.Minicircuits.USB_SPDT.USB_SPDT":{CHANNEL_CLASS:[97,2,1,""],PATH_TO_DRIVER:[97,2,1,""],get_idn:[97,1,1,""]},"qcodes.instrument_drivers.Newport":{AG_UC8:[98,4,0,"-"]},"qcodes.instrument_drivers.Newport.AG_UC8":{Newport_AG_UC8:[98,0,1,""],Newport_AG_UC8_Axis:[98,0,1,""],Newport_AG_UC8_Channel:[98,0,1,""],Newport_AG_UC8_ErrorCode:[98,5,1,""],Newport_AG_UC8_Exception:[98,5,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8":{ask_channel:[98,1,1,""],command_delay:[98,2,1,""],default_timeout:[98,2,1,""],get_idn:[98,1,1,""],get_last_error:[98,1,1,""],reset:[98,1,1,""],reset_delay:[98,2,1,""],slow_command_timeout:[98,2,1,""],write:[98,1,1,""],write_channel:[98,1,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8_Axis":{SPEED_TABLE:[98,2,1,""],jog:[98,1,1,""],measure_position:[98,1,1,""],move_abs:[98,1,1,""],move_limit:[98,1,1,""],move_rel:[98,1,1,""],stop:[98,1,1,""],zero_position:[98,1,1,""]},"qcodes.instrument_drivers.Newport.AG_UC8.Newport_AG_UC8_Channel":{ask:[98,1,1,""],write:[98,1,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[99,4,0,"-"],QDac_channels:[99,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[99,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[99,1,1,""],max_status_age:[99,2,1,""],print_overview:[99,1,1,""],printslopes:[99,1,1,""],read:[99,1,1,""],read_state:[99,1,1,""],snapshot_base:[99,1,1,""],voltage_range_status:[99,2,1,""],write:[99,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[99,0,1,""],QDacChannel:[99,0,1,""],QDacMultiChannelParameter:[99,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[99,1,1,""],max_status_age:[99,2,1,""],print_overview:[99,1,1,""],printslopes:[99,1,1,""],read:[99,1,1,""],read_state:[99,1,1,""],snapshot_base:[99,1,1,""],voltage_range_status:[99,2,1,""],write:[99,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[99,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[99,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[100,4,0,"-"],D5a:[100,4,0,"-"],F1d:[100,4,0,"-"],IVVI:[100,4,0,"-"],S5i:[100,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[100,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[100,1,1,""],get_filter_value:[100,1,1,""],get_mode:[100,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[100,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[100,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[100,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[100,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[100,2,1,""],Halfrange:[100,2,1,""],adjust_parameter_validator:[100,1,1,""],ask:[100,1,1,""],get_all:[100,1,1,""],get_idn:[100,1,1,""],get_pol_dac:[100,1,1,""],read:[100,1,1,""],round_dac:[100,1,1,""],set_dacs_zero:[100,1,1,""],set_parameter_bounds:[100,1,1,""],set_pol_dacrack:[100,1,1,""],write:[100,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[100,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[102,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[102,4,0,"-"],spcerr:[102,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[102,3,1,""],GIGA_B:[102,3,1,""],KILO:[102,3,1,""],KILO_B:[102,3,1,""],MEGA:[102,3,1,""],MEGA_B:[102,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[103,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[103,0,1,""],Scope:[103,0,1,""],Sweep:[103,0,1,""],ZIUHFLI:[103,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[103,1,1,""],get:[103,1,1,""],names:[103,2,1,""],post_trigger_actions:[103,2,1,""],prepare_scope:[103,1,1,""],setpoint_names:[103,2,1,""],setpoints:[103,2,1,""],shapes:[103,2,1,""],units:[103,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[103,1,1,""],get:[103,1,1,""],names:[103,2,1,""],setpoint_names:[103,2,1,""],setpoints:[103,2,1,""],shapes:[103,2,1,""],units:[103,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[103,7,1,""],add_signal_to_sweeper:[103,1,1,""],close:[103,1,1,""],print_sweeper_settings:[103,1,1,""],remove_signal_from_sweeper:[103,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[104,4,0,"-"],E8267C:[104,4,0,"-"],E8527D:[104,4,0,"-"],HP33210A:[104,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[104,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[104,1,1,""],display_clear:[104,1,1,""],init_measurement:[104,1,1,""],reset:[104,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[104,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[104,7,1,""],rad_to_deg:[104,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[104,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[104,1,1,""],off:[104,1,1,""],on:[104,1,1,""],parse_on_off:[104,1,1,""],rad_to_deg:[104,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[104,0,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[105,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[105,0,1,""],AMI430Exception:[105,5,1,""],AMI430SwitchHeater:[105,0,1,""],AMI430Warning:[105,5,1,""],AMI430_3D:[105,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{ramp_to:[105,1,1,""],set_field:[105,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430SwitchHeater":{check_enabled:[105,1,1,""],check_state:[105,1,1,""],disable:[105,1,1,""],enable:[105,1,1,""],off:[105,1,1,""],on:[105,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[90,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[90,1,1,""],get_raw:[90,1,1,""],set_raw:[90,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[106,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[106,0,1,""],Ithaco_1211:[106,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[106,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[106,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[107,4,0,"-"],IPS120:[107,4,0,"-"],MercuryiPS_VISA:[107,4,0,"-"],kelvinox:[107,4,0,"-"],mercuryiPS:[107,4,0,"-"],triton:[107,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[107,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[107,1,1,""],get_all:[107,1,1,""],get_idn:[107,1,1,""],local:[107,1,1,""],remote:[107,1,1,""],set_remote_status:[107,1,1,""],set_to_fast:[107,1,1,""],set_to_slow:[107,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[107,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[107,1,1,""],examine:[107,1,1,""],get_all:[107,1,1,""],get_changed:[107,1,1,""],get_idn:[107,1,1,""],heater_off:[107,1,1,""],heater_on:[107,1,1,""],hold:[107,1,1,""],identify:[107,1,1,""],leave_persistent_mode:[107,1,1,""],local:[107,1,1,""],remote:[107,1,1,""],run_to_field:[107,1,1,""],run_to_field_wait:[107,1,1,""],set_persistent:[107,1,1,""],to_setpoint:[107,1,1,""],to_zero:[107,1,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA":{MercurySlavePS:[107,0,1,""],MercuryiPS:[107,0,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA.MercurySlavePS":{ramp_to_target:[107,1,1,""]},"qcodes.instrument_drivers.oxford.MercuryiPS_VISA.MercuryiPS":{ask:[107,1,1,""],ramp:[107,1,1,""],set_new_field_limits:[107,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[107,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[107,1,1,""],get_all:[107,1,1,""],get_idn:[107,1,1,""],identify:[107,1,1,""],local:[107,1,1,""],remote:[107,1,1,""],rotate_Nvalve:[107,1,1,""],set_mix_chamber_heater_mode:[107,1,1,""],set_mix_chamber_heater_power_range:[107,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[107,0,1,""],MercuryiPSArray:[107,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[107,1,1,""],rtos:[107,1,1,""],to_zero:[107,1,1,""],write:[107,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[107,1,1,""],set:[107,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[107,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[107,1,1,""],set_B:[107,1,1,""]},"qcodes.instrument_drivers.rigol":{"private":[109,4,0,"-"],DG1062:[108,4,0,"-"],DG4000:[108,4,0,"-"],DP821:[108,4,0,"-"],DP831:[108,4,0,"-"],DP832:[108,4,0,"-"],DS4000:[108,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG1062":{DG1062:[108,0,1,""],DG1062Burst:[108,0,1,""],DG1062Channel:[108,0,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062":{waveforms:[108,2,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062Burst":{trigger:[108,1,1,""]},"qcodes.instrument_drivers.rigol.DG1062.DG1062Channel":{apply:[108,1,1,""],current_waveform:[108,1,1,""],max_impedance:[108,2,1,""],min_impedance:[108,2,1,""],waveform_params:[108,2,1,""],waveforms:[108,2,1,""]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[108,0,1,""],clean_string:[108,3,1,""],is_number:[108,3,1,""],parse_multiple_outputs:[108,3,1,""],parse_single_output:[108,3,1,""],parse_string_output:[108,3,1,""]},"qcodes.instrument_drivers.rigol.DP821":{RigolDP821:[108,0,1,""]},"qcodes.instrument_drivers.rigol.DP831":{RigolDP831:[108,0,1,""]},"qcodes.instrument_drivers.rigol.DP832":{RigolDP832:[108,0,1,""]},"qcodes.instrument_drivers.rigol.DS4000":{DS4000:[108,0,1,""],RigolDS4000Channel:[108,0,1,""],ScopeArray:[108,0,1,""],TraceNotReady:[108,5,1,""]},"qcodes.instrument_drivers.rigol.DS4000.ScopeArray":{get_preamble:[108,1,1,""],get_raw:[108,1,1,""],prepare_curvedata:[108,1,1,""]},"qcodes.instrument_drivers.rigol.private":{DP8xx:[109,4,0,"-"]},"qcodes.instrument_drivers.rigol.private.DP8xx":{RigolDP8xxChannel:[109,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{"private":[111,4,0,"-"],HMC8041:[110,4,0,"-"],HMC8042:[110,4,0,"-"],HMC8043:[110,4,0,"-"],RTE1000:[110,4,0,"-"],RTO1000:[110,4,0,"-"],SGS100A:[110,4,0,"-"],SMR40:[110,4,0,"-"],ZNB20:[110,4,0,"-"],ZNB:[110,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.HMC8041":{RohdeSchwarzHMC8041:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.HMC8042":{RohdeSchwarzHMC8042:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.HMC8043":{RohdeSchwarzHMC8043:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[110,0,1,""],ScopeChannel:[110,0,1,""],ScopeTrace:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.RTO1000":{run_cont:[110,1,1,""],run_single:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get_raw:[110,1,1,""],prepare_trace:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{get_parser_on_off:[110,1,1,""],off:[110,1,1,""],on:[110,1,1,""],set_parser_on_off:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[110,1,1,""],do_get_power:[110,1,1,""],do_get_pulse_delay:[110,1,1,""],do_get_status:[110,1,1,""],do_get_status_of_ALC:[110,1,1,""],do_get_status_of_modulation:[110,1,1,""],do_set_frequency:[110,1,1,""],do_set_power:[110,1,1,""],do_set_pulse_delay:[110,1,1,""],do_set_status:[110,1,1,""],do_set_status_of_ALC:[110,1,1,""],do_set_status_of_modulation:[110,1,1,""],get_all:[110,1,1,""],off:[110,1,1,""],off_modulation:[110,1,1,""],on:[110,1,1,""],on_modulation:[110,1,1,""],reset:[110,1,1,""],set_ext_trig:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[110,0,1,""],FrequencySweepMagPhase:[110,0,1,""],ZNB:[110,0,1,""],ZNBChannel:[110,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[110,1,1,""],get_raw:[110,1,1,""],set_sweep:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get_raw:[110,1,1,""],set_sweep:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{CHANNEL_CLASS:[110,2,1,""],add_channel:[110,1,1,""],clear_channels:[110,1,1,""],display_grid:[110,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.private":{HMC804x:[111,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.private.HMC804x":{RohdeSchwarzHMC804xChannel:[111,0,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[112,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{Constants:[112,0,1,""],ExternalRefParameter:[112,0,1,""],FrequencySweep:[112,0,1,""],ScaleParameter:[112,0,1,""],SignalHound_USB_SA124B:[112,0,1,""],SweepTraceParameter:[112,0,1,""],TraceParameter:[112,0,1,""],saStatus:[112,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.Constants":{SA_MAX_DEVICES:[112,2,1,""],TG_THRU_0DB:[112,2,1,""],TG_THRU_20DB:[112,2,1,""],sa124_MAX_FREQ:[112,2,1,""],sa124_MIN_FREQ:[112,2,1,""],sa44_MAX_FREQ:[112,2,1,""],sa44_MIN_FREQ:[112,2,1,""],saDeviceTypeNone:[112,2,1,""],saDeviceTypeSA124A:[112,2,1,""],saDeviceTypeSA124B:[112,2,1,""],saDeviceTypeSA44:[112,2,1,""],saDeviceTypeSA44B:[112,2,1,""],sa_AUDIO:[112,2,1,""],sa_AUDIO_AM:[112,2,1,""],sa_AUDIO_CW:[112,2,1,""],sa_AUDIO_FM:[112,2,1,""],sa_AUDIO_LSB:[112,2,1,""],sa_AUDIO_USB:[112,2,1,""],sa_AUTO_ATTEN:[112,2,1,""],sa_AUTO_GAIN:[112,2,1,""],sa_AVERAGE:[112,2,1,""],sa_BYPASS:[112,2,1,""],sa_IDLE:[112,2,1,""],sa_IQ:[112,2,1,""],sa_IQ_SAMPLE_RATE:[112,2,1,""],sa_LIN_FULL_SCALE:[112,2,1,""],sa_LIN_SCALE:[112,2,1,""],sa_LOG_FULL_SCALE:[112,2,1,""],sa_LOG_SCALE:[112,2,1,""],sa_LOG_UNITS:[112,2,1,""],sa_MAX_ATTEN:[112,2,1,""],sa_MAX_GAIN:[112,2,1,""],sa_MAX_IQ_DECIMATION:[112,2,1,""],sa_MAX_RBW:[112,2,1,""],sa_MAX_REF:[112,2,1,""],sa_MAX_RT_RBW:[112,2,1,""],sa_MIN_IQ_BANDWIDTH:[112,2,1,""],sa_MIN_MAX:[112,2,1,""],sa_MIN_RBW:[112,2,1,""],sa_MIN_RT_RBW:[112,2,1,""],sa_MIN_SPAN:[112,2,1,""],sa_POWER_UNITS:[112,2,1,""],sa_REAL_TIME:[112,2,1,""],sa_REF_EXTERNAL_IN:[112,2,1,""],sa_REF_INTERNAL_OUT:[112,2,1,""],sa_REF_UNUSED:[112,2,1,""],sa_SWEEPING:[112,2,1,""],sa_TG_SWEEP:[112,2,1,""],sa_VOLT_UNITS:[112,2,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.ExternalRefParameter":{set_raw:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.FrequencySweep":{get:[112,1,1,""],get_raw:[112,1,1,""],set_sweep:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.ScaleParameter":{set_raw:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[112,1,1,""],abort:[112,1,1,""],check_for_error:[112,7,1,""],close:[112,1,1,""],configure:[112,1,1,""],dll_path:[112,2,1,""],get_idn:[112,1,1,""],openDevice:[112,1,1,""],preset:[112,1,1,""],sync_parameters:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SweepTraceParameter":{set_raw:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.TraceParameter":{set_raw:[112,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.saStatus":{saBandwidthClamped:[112,2,1,""],saBandwidthErr:[112,2,1,""],saCompressionWarning:[112,2,1,""],saDeviceNotConfiguredErr:[112,2,1,""],saDeviceNotFoundErr:[112,2,1,""],saDeviceNotIdleErr:[112,2,1,""],saDeviceNotOpenErr:[112,2,1,""],saExternalReferenceNotFound:[112,2,1,""],saFrequencyRangeErr:[112,2,1,""],saInternetErr:[112,2,1,""],saInvalidDetectorErr:[112,2,1,""],saInvalidDeviceErr:[112,2,1,""],saInvalidModeErr:[112,2,1,""],saInvalidParameterErr:[112,2,1,""],saInvalidScaleErr:[112,2,1,""],saNoCorrections:[112,2,1,""],saNoError:[112,2,1,""],saNotConfiguredErr:[112,2,1,""],saNullPtrErr:[112,2,1,""],saOvenColdErr:[112,2,1,""],saParameterClamped:[112,2,1,""],saTooManyDevicesErr:[112,2,1,""],saTrackingGeneratorNotFound:[112,2,1,""],saUSBCommErr:[112,2,1,""],saUnknownErr:[112,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[113,4,0,"-"],SIM928:[113,4,0,"-"],SR560:[113,4,0,"-"],SR830:[113,4,0,"-"],SR860:[113,4,0,"-"],SR865:[113,4,0,"-"],SR865A:[113,4,0,"-"],SR86x:[113,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[113,1,1,""],byte_to_bits:[113,7,1,""],check_module_errors:[113,1,1,""],find_modules:[113,1,1,""],get_module_idn:[113,1,1,""],get_module_status:[113,1,1,""],get_voltage:[113,1,1,""],reset_module:[113,1,1,""],set_smooth:[113,1,1,""],set_voltage:[113,1,1,""],write_module:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[113,0,1,""],VoltageParameter:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[113,0,1,""],SR830:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get_raw:[113,1,1,""],prepare_buffer_readout:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865A":{SR865A:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[113,0,1,""],SR86xBuffer:[113,0,1,""],SR86xBufferReadout:[113,0,1,""],SR86xDataChannel:[113,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86x":{PARAMETER_NAMES:[113,2,1,""],get_data_channels_dict:[113,1,1,""],get_data_channels_parameters:[113,1,1,""],get_data_channels_values:[113,1,1,""],get_values:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_one_sample_per_trigger:[113,1,1,""],capture_samples:[113,1,1,""],capture_samples_after_trigger:[113,1,1,""],get_capture_data:[113,1,1,""],set_capture_length_to_fit_samples:[113,1,1,""],set_capture_rate_to_maximum:[113,1,1,""],snapshot_base:[113,1,1,""],start_capture:[113,1,1,""],stop_capture:[113,1,1,""],wait_until_samples_captured:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[113,1,1,""],prepare_readout:[113,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xDataChannel":{cmd_id:[113,2,1,""],cmd_id_name:[113,2,1,""],color:[113,2,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[114,4,0,"-"],AWG5200:[114,4,0,"-"],AWG5208:[114,4,0,"-"],AWG520:[114,4,0,"-"],AWG70000A:[114,4,0,"-"],AWG70002A:[114,4,0,"-"],AWGFileParser:[114,4,0,"-"],Keithley_2000:[114,4,0,"-"],Keithley_2400:[114,4,0,"-"],Keithley_2600:[114,4,0,"-"],Keithley_2600_channels:[114,4,0,"-"],Keithley_2700:[114,4,0,"-"],TPS2012:[114,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[114,0,1,""],parsestr:[114,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[114,2,1,""],AWG_FILE_FORMAT_HEAD:[114,2,1,""],all_channels_off:[114,1,1,""],all_channels_on:[114,1,1,""],change_folder:[114,1,1,""],clear_message_queue:[114,1,1,""],create_and_goto_dir:[114,1,1,""],delete_all_waveforms_from_list:[114,1,1,""],force_event:[114,1,1,""],force_trigger:[114,1,1,""],force_trigger_event:[114,1,1,""],generate_awg_file:[114,1,1,""],generate_channel_cfg:[114,1,1,""],generate_sequence_cfg:[114,1,1,""],get_all:[114,1,1,""],get_current_folder_name:[114,1,1,""],get_error:[114,1,1,""],get_filenames:[114,1,1,""],get_folder_contents:[114,1,1,""],get_sq_mode:[114,1,1,""],get_sqel_loopcnt:[114,1,1,""],get_sqel_trigger_wait:[114,1,1,""],get_sqel_waveform:[114,1,1,""],get_state:[114,1,1,""],goto_root:[114,1,1,""],is_awg_ready:[114,1,1,""],load_awg_file:[114,1,1,""],make_and_save_awg_file:[114,1,1,""],make_awg_file:[114,1,1,""],make_send_and_load_awg_file:[114,1,1,""],newlinestripper:[114,1,1,""],pack_waveform:[114,1,1,""],run:[114,1,1,""],send_DC_pulse:[114,1,1,""],send_awg_file:[114,1,1,""],send_waveform_to_list:[114,1,1,""],set_current_folder_name:[114,1,1,""],set_sqel_event_jump_target_index:[114,1,1,""],set_sqel_event_jump_type:[114,1,1,""],set_sqel_event_target_index:[114,1,1,""],set_sqel_goto_state:[114,1,1,""],set_sqel_goto_target_index:[114,1,1,""],set_sqel_loopcnt:[114,1,1,""],set_sqel_loopcnt_to_inf:[114,1,1,""],set_sqel_trigger_wait:[114,1,1,""],set_sqel_waveform:[114,1,1,""],start:[114,1,1,""],stop:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[114,1,1,""],clear_waveforms:[114,1,1,""],delete_all_waveforms_from_list:[114,1,1,""],force_logicjump:[114,1,1,""],force_trigger:[114,1,1,""],get_all:[114,1,1,""],get_current_folder_name:[114,1,1,""],get_filenames:[114,1,1,""],get_folder_contents:[114,1,1,""],get_jumpmode:[114,1,1,""],get_state:[114,1,1,""],goto_root:[114,1,1,""],load_and_set_sequence:[114,1,1,""],make_directory:[114,1,1,""],resend_waveform:[114,1,1,""],return_self:[114,1,1,""],send_pattern:[114,1,1,""],send_sequence2:[114,1,1,""],send_sequence:[114,1,1,""],send_waveform:[114,1,1,""],set_current_folder_name:[114,1,1,""],set_jumpmode:[114,1,1,""],set_sequence:[114,1,1,""],set_setup_filename:[114,1,1,""],start:[114,1,1,""],stop:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5208":{AWG5208:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A":{AWG70000A:[114,0,1,""],AWGChannel:[114,0,1,""],SRValidator:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWG70000A":{clearSequenceList:[114,1,1,""],clearWaveformList:[114,1,1,""],delete_sequence_from_list:[114,1,1,""],force_triggerA:[114,1,1,""],force_triggerB:[114,1,1,""],loadSEQXFile:[114,1,1,""],loadWFMXFile:[114,1,1,""],makeSEQXFile:[114,7,1,""],makeWFMXFile:[114,7,1,""],make_SEQX_from_forged_sequence:[114,7,1,""],play:[114,1,1,""],sendSEQXFile:[114,1,1,""],sendWFMXFile:[114,1,1,""],sequenceList:[114,2,1,""],stop:[114,1,1,""],wait_for_operation_to_complete:[114,1,1,""],waveformList:[114,2,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.AWGChannel":{setSequenceTrack:[114,1,1,""],setWaveform:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70000A.SRValidator":{validate:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG70002A":{AWG70002A:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[114,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[114,0,1,""],parse_output_bool:[114,3,1,""],parse_output_string:[114,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[114,1,1,""],display_clear:[114,1,1,""],display_normal:[114,1,1,""],exit_key:[114,1,1,""],get_idn:[114,1,1,""],reset:[114,1,1,""],write:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[114,0,1,""],Keithley_2600:[114,0,1,""],LuaSweepParameter:[114,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[114,1,1,""],reset:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[114,1,1,""],display_clear:[114,1,1,""],display_normal:[114,1,1,""],exit_key:[114,1,1,""],get_idn:[114,1,1,""],reset:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[114,1,1,""],prepareSweep:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[114,0,1,""],bool_to_str:[114,3,1,""],parsebool:[114,3,1,""],parseint:[114,3,1,""],parsestr:[114,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[114,1,1,""],reset:[114,1,1,""],set_defaults:[114,1,1,""],set_mode:[114,1,1,""],set_mode_volt_dc:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[114,0,1,""],TPS2012:[114,0,1,""],TPS2012Channel:[114,0,1,""],TraceNotReady:[114,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[114,1,1,""],get:[114,1,1,""],prepare_curvedata:[114,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[114,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[90,0,1,""],test_instrument:[90,3,1,""],test_instruments:[90,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[90,2,1,""],setUpClass:[90,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[115,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[115,0,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[116,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[116,0,1,""],GS200Exception:[116,5,1,""],GS200_Monitor:[116,0,1,""],float_round:[116,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[116,1,1,""],on:[116,1,1,""],ramp_current:[116,1,1,""],ramp_voltage:[116,1,1,""],state:[116,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[116,1,1,""],on:[116,1,1,""],state:[116,1,1,""],update_measurement_enabled:[116,1,1,""]},"qcodes.measure":{Measure:[118,0,1,""]},"qcodes.measure.Measure":{__init__:[118,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[120,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[120,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[121,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[121,1,1,""]},"qcodes.station":{Station:[122,0,1,""]},"qcodes.station.Station":{"default":[122,2,1,""],__init__:[122,1,1,""],delegate_attr_dicts:[122,2,1,""]},"qcodes.utils":{command:[123,4,0,"-"],deferred_operations:[124,4,0,"-"],helpers:[125,4,0,"-"],metadata:[126,4,0,"-"],validators:[127,4,0,"-"]},qcodes:{ArrayParameter:[64,0,1,""],BreakIf:[65,0,1,""],ChannelList:[66,0,1,""],CombinedParameter:[67,0,1,""],Config:[68,0,1,""],DataArray:[69,0,1,""],DataSet:[70,0,1,""],DiskIO:[71,0,1,""],FormatLocation:[72,0,1,""],Formatter:[73,0,1,""],Function:[74,0,1,""],GNUPlotFormat:[75,0,1,""],IPInstrument:[76,0,1,""],Instrument:[77,0,1,""],InstrumentChannel:[78,0,1,""],Loop:[79,0,1,""],ManualParameter:[80,0,1,""],MultiParameter:[81,0,1,""],Parameter:[82,0,1,""],StandardParameter:[83,0,1,""],SweepFixedValues:[84,0,1,""],SweepValues:[85,0,1,""],Task:[86,0,1,""],VisaInstrument:[87,0,1,""],Wait:[88,0,1,""],combine:[89,3,1,""],instrument_drivers:[90,4,0,"-"],load_data:[117,3,1,""],new_data:[119,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":38,"001_":[24,38],"001_13":72,"001_testsweep_11":25,"001_testsweep_15":9,"002_2d_test_15":9,"00370000e":37,"003_":61,"003_alazartest_15":36,"005_unicorn_2017":23,"006_":[23,52],"007_":[49,52],"008_":49,"009_testsweep_15":31,"01084000e":37,"011_":[49,57,60],"011_randomnumber_69_2017":23,"01227539e":7,"012_":[49,57],"012_hp8753d_tutorial_14":60,"013_":33,"013_n_1000_setget_11":28,"014_n_1000_setget_11":28,"015_n_1000_setget_11":28,"01627233e":7,"016_n_1000_setget_11":28,"01763000e":37,"017_n_1000_setget_11":28,"018_n_1000_setget_11":28,"018_testsweep_12":26,"01900884e":7,"019_n_1000_setget_11":28,"019_testsweep_12":26,"01s":34,"020_n_1000_setget_11":28,"020_testsweep_12":26,"02185224e":7,"021_testsweep_12":26,"02591257e":7,"025_":31,"026_":31,"02736941e":7,"027_":31,"028_":31,"029_":31,"02s":50,"030_":31,"03102061e":7,"031_":31,"032_":31,"033_":31,"034_":31,"035_":31,"036_":31,"03851879e":7,"03909777e":7,"03d":[30,53],"03s":51,"04963856e":7,"04s":61,"05050056e":7,"05190757e":7,"05296136e":7,"05408311e":7,"05478762e":7,"05535159e":7,"05946108e":7,"05962981e":7,"06s":[4,26],"073_":50,"076_":50,"076_n_100_setget_16":27,"077_":50,"077_n_100_setget_16":27,"07845534e":7,"078_":50,"078_n_100_setget_16":27,"079_":50,"079_n_100_setget_16":27,"07s":31,"08071351e":7,"080_":50,"080_n_100_setget_16":27,"08157481e":7,"081_n_100_setget_16":27,"08253916e":7,"082_n_100_setget_16":27,"083_":50,"083_n_100_setget_16":27,"084_":[27,50],"085_":[27,50],"086_":[27,50],"08746794e":7,"087_":[27,50],"088_":[27,50],"089_":[27,50],"08s":[13,56],"09065882e":7,"090_":[27,50],"091_":27,"092_n_1000_setget_16":27,"093_n_1000_setget_16":27,"094_n_1000_setget_16":27,"095_n_1000_setget_16":27,"096_n_1000_setget_16":27,"097_n_1000_setget_16":27,"098_n_1000_setget_16":27,"09919609e":7,"0994e":38,"099_n_1000_setget_16":27,"09s":38,"0x111defb70":30,"0x1191c2e10":18,"0x19110a8f390":36,"0x1ba0bf174a8":62,"0x1ba0d6aca58":62,"0x1ba0d6cab00":62,"0x1ba0e6fe668":62,"0x1ba0e8b3470":62,"0x1ba0e976a90":62,"0x1ba0e9b90f0":62,"0x1c10ee73a58":31,"0x1d551d8c2e8":51,"0x1d552f82780":51,"0x278d4c91780":57,"0x7ed0668":37,"0x7f8a0ff67320":63,"0x7f8a101b3f60":63,"0x7f920ec0eef0":155,"0x7f9e3c153240":6,"0x7f9e3cf9a470":6,"0x7f9e3d365940":6,"0x7f9e3d3858d0":6,"0x7fa7515d8a20":15,"0x7fa7535f32b0":15,"0x7fad64a80390":10,"0x7fd834e99ea0":0,"1000k44":49,"100\u03bca":[41,96],"100_":27,"100e":27,"100e3":[49,50,60],"100e6":62,"100k":61,"100khz":61,"100ma":[41,96],"100x100":26,"101_":27,"10226022e":7,"102_":27,"10398435e":7,"103_":27,"104_":27,"105_":27,"106_":27,"107_":27,"108_n_100_setget_16":27,"109_n_100_setget_16":27,"10e":[13,34,52,56,57,61],"10e3":[13,56],"10e6":[36,51,54,57],"10kohm":56,"10ma":[41,96],"10mhz":112,"10s":42,"10th":5,"10v":[56,82],"110_n_100_setget_16":27,"11169432e":7,"111_n_100_setget_16":27,"112_n_100_setget_16":27,"113_n_100_setget_16":27,"114_n_100_setget_16":27,"115_n_100_setget_16":27,"116_":27,"117_":27,"11816746e":7,"118_":27,"119_":27,"11s":39,"1206e":38,"120_":27,"120e":58,"121_":27,"122_":27,"123_":27,"124_":27,"125_":27,"126_":27,"127_":27,"128_":27,"129_":27,"12e9":3,"12f":3,"12s":[34,48],"130_":27,"131_":27,"132_":27,"133_":27,"13460634e":7,"134_":27,"135_":27,"136_":27,"137_":27,"138_":27,"139_":27,"13_testsweep":0,"13_testsweep_002":0,"140_":27,"14191701e":7,"141_":27,"142_":27,"143_":27,"144_":27,"14521978e":7,"145_":27,"1462531069e":34,"146_":27,"14711533e":7,"147_":27,"148_":27,"149_":27,"14e":22,"14s":28,"150_":27,"151_":27,"152_":27,"153_":27,"154_":27,"155_":27,"156_":27,"157_":27,"158_":27,"159_":27,"15_11":23,"15_hammer_tim":23,"15_rainbow_test":72,"15e3":13,"15g":75,"15s":[13,27,40,50],"160_":27,"161_":27,"16232448e":7,"162_":27,"163_":27,"164_":27,"165_":27,"166_":27,"167_":27,"168_":27,"1690581181e":34,"169_":27,"16bit":61,"16ma":[41,96],"16s":[33,50],"170_":27,"171_":27,"172_":27,"173_":27,"174_":27,"175_":27,"176_":27,"177_":27,"178_":27,"179_":27,"18032116e":7,"180_":27,"1813903572e":34,"181_":27,"18256132e":7,"182_":27,"183_":27,"184_":27,"185_":27,"18650078e":7,"186_":27,"18760459e":7,"187_":27,"188_":27,"189_":27,"18s":32,"190_":27,"19139818e":7,"191_":27,"192_":27,"193_":27,"194_":27,"195_":27,"196_":27,"197_n_1000_setget_16":27,"198_n_1000_setget_16":27,"199_n_1000_setget_16":27,"19s":[41,43],"1ct":52,"1e3":[10,13,30,32,39,57,62,108],"1e5":58,"1e6":[22,50,57],"1e8":22,"1e9":[30,49,51,54,58,60,62],"1khz":62,"1ma":[41,56,96],"1ms":151,"1sp4t":140,"1vpp":61,"20000000e":53,"200_n_1000_setget_16":27,"200e":58,"200e3":50,"200uw":107,"2012b":[52,114],"20171599e":7,"201_n_1000_setget_16":27,"202_n_1000_setget_16":27,"20399034e":7,"203_n_1000_setget_16":27,"204223103e":34,"204_n_1000_setget_16":27,"20539539e":7,"205_":27,"206_":27,"20717220e":7,"207_":27,"20883090e":7,"208_":27,"209_":27,"20e":[57,58],"20ma":91,"20mw":107,"20uw":107,"210_":27,"211_":27,"212_":27,"21453783e":7,"2155235747e":34,"21s":62,"22078490e":7,"22133554e":7,"22412464e":7,"23160746e":57,"23485252e":7,"23655701e":7,"23972845e":7,"23s":[49,60],"24196156e":7,"24196735e":57,"24544100e":7,"25025292e":7,"25062832e":7,"25325928e":7,"25e":[46,52,54],"25s":34,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"2614b":[3,27,38,114],"2635b":3,"2636b":3,"26955113e":7,"28021441e":7,"28253372e":7,"29722569e":7,"29967507e":7,"2d_test":25,"2e3":39,"2e5":58,"2min":50,"2mw":107,"2uw":107,"30456775e":7,"30946150e":7,"30990617e":7,"30s":58,"31040107e":7,"31121562e":7,"31425783e":7,"31485086e":7,"316\u03bca":[41,96],"3243408148e":34,"32636936e":7,"32895809e":7,"32c1770":13,"32s":29,"33431104e":7,"33475730e":7,"33500b":[95,136,151],"33522b":[13,39],"33xxx":95,"34127943e":7,"34400a":151,"34411a":151,"34460a":95,"34461a":95,"34465a":[31,95,136,138,151],"34470a":95,"34693028e":7,"34907877e":7,"34946454e":7,"34949391e":7,"35060617e":7,"35195625e":7,"35414889e":7,"35448718e":7,"35450871e":7,"36030199e":7,"36997335e":7,"36s":50,"37292027e":7,"37320113e":7,"37430033e":7,"37868320e":7,"37959339e":7,"38156460e":7,"38276384e":7,"38315272e":7,"39513690e":7,"39569393e":7,"39759855e":57,"39968014e":7,"3e2":13,"3x2":21,"40460171e":7,"40dbm":62,"40e":58,"40s":30,"41340704e":7,"41456750e":7,"41594265e":7,"42214451e":7,"42637000e":37,"42638283e":7,"43364833e":7,"44224324e":7,"44430102e":7,"44486903e":7,"44930488e":7,"44s":[47,52],"44xx":135,"45158991e":7,"45760304e":7,"46113058e":7,"4647376645e":34,"47373859e":7,"48143513e":7,"49462013e":7,"4port":50,"4spdt":[43,140],"500e":34,"50505234e":7,"50e":[39,52],"51633572e":7,"52304533e":7,"52603138e":7,"52608e":45,"53283265e":7,"54972e":38,"54s":54,"55158802e":7,"55158856e":7,"55420754e":7,"55610577e":7,"56454650e":7,"56792749e":7,"56s":50,"57290807e":7,"57s":59,"58358959e":7,"59147783e":7,"59786253e":7,"59802518e":7,"5e3":13,"5e4":58,"5e9":50,"5gb":36,"60250884e":7,"60s":59,"61757847e":7,"6225968125e":34,"62941746e":7,"62s":59,"63064879e":7,"63565639e":7,"63591360e":7,"63783900e":7,"65435381e":7,"65538036e":7,"67546639e":7,"68505437e":7,"68807255e":7,"69014000e":37,"69067700e":7,"6955e":38,"696416459e":34,"69644709e":7,"69755058e":7,"69948192e":7,"6\u03bca":[41,96],"6a5acd":53,"6e6":50,"6ma":[41,96],"70069415e":7,"70211163e":7,"72115638e":7,"72116158e":7,"72243794e":7,"72645814e":7,"72776583e":7,"72779556e":7,"73311654e":7,"74034846e":7,"75638870e":7,"75982255e":7,"77432241e":7,"78467288e":7,"78789177e":7,"79455468e":7,"79830117e":7,"80182704e":7,"80919668e":7,"8133a":[93,136],"81470130e":7,"81724284e":7,"81734506e":7,"82117662e":7,"82636529e":7,"83164465e":7,"83344773e":7,"83650a":136,"84199062e":7,"84418478e":7,"84442695e":7,"844e846b99a2":31,"84739894e":7,"84816504e":7,"85170018e":7,"85404352e":7,"85704813e":7,"85938362e":7,"87038365e":7,"8753d":[60,93],"88696597e":7,"89018776e":7,"90942808e":7,"91020840e":7,"91s":13,"91t928108":56,"92111333e":7,"92117793e":7,"9253033a050c":42,"92694100e":7,"93160507e":7,"93894931e":7,"93s":26,"9464794099e":34,"94678191e":7,"94851000e":37,"94998831e":7,"95535000e":37,"95601493e":7,"95819088e":7,"96216000e":37,"96703218e":7,"97013130e":7,"97200287e":7,"9734803775e":34,"97871539e":7,"98352141e":7,"98941000e":37,"99331984e":7,"99400338e":7,"99618000e":37,"9e3":50,"9voltag":48,"\u03bca":[45,46],"abstract":[10,92,158],"boolean":[42,100,107,114,138,155],"break":[3,4,6,25,65,113,114,141,142],"byte":[92,100,113,114],"case":[2,3,6,8,9,21,22,34,36,41,44,47,48,51,53,57,58,63,74,79,82,90,92,108,113,114,121,142,146,148,150,151,158,159],"catch":3,"char":99,"class":[1,4,11,21,35,37,41,57,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,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,120,121,122,123,124,125,126,127,140,142,145,150,151,159],"default":[1,2,3,4,10,11,14,15,20,21,25,34,45,46,50,64,68,69,70,72,74,75,76,79,81,82,87,90,93,94,95,97,99,100,106,107,108,110,112,113,114,117,119,120,121,122,131,134,139,142,145,148,150,151,154,157],"enum":[2,3,4,35,36,37,57,82,112,114,145,155],"export":[92,107,151],"final":[6,8,10,18,25,31,32,34,36,38,41,47,53,54,57,60,73,74,82,148,150,154,158],"float":[3,4,6,8,28,70,74,82,84,90,92,93,94,95,96,97,100,103,107,108,110,112,113,114,116,119,121,138],"function":[0,1,3,4,6,7,8,10,11,12,13,18,21,24,25,29,30,31,34,36,37,38,41,42,51,52,53,59,60,61,62,63,65,67,70,77,78,80,82,84,86,89,91,92,96,98,100,103,104,107,108,110,112,113,114,125,127,132,138,139,142,145,146,148,149,150,151,153,155,158,159],"goto":[53,114],"import":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,23,24,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,62,63,114,138,142,148,151,155,158,159],"int":[1,3,12,21,28,29,30,31,36,53,54,57,64,69,74,76,81,82,84,90,92,93,94,95,96,97,98,99,100,103,107,108,110,112,113,114,145],"long":[3,4,49,50,63,64,81,82,108,114,142,150],"new":[1,2,3,4,7,9,10,13,14,15,21,25,34,38,40,41,42,44,57,62,63,69,72,73,74,75,95,96,97,98,107,113,114,117,119,121,141,148,149,150,151,153,154,155,158,159],"null":[91,150,155],"public":[108,113,128,142],"return":[0,1,3,4,6,7,8,10,11,20,21,25,28,29,30,31,34,35,38,41,42,44,45,46,50,51,53,57,59,60,64,65,66,72,74,81,82,84,90,91,92,93,94,95,96,97,98,99,100,103,106,107,108,110,112,113,114,116,117,118,119,145,150,158,159],"short":[69,150,158],"static":[18,76,77,87,92,95,103,104,112,113,114],"super":[3,4,11,21,97,98,107,114,159],"switch":[13,26,41,44,50,54,57,97,107,112,114,140,151,155,158],"throw":148,"true":[2,3,6,8,10,11,13,16,18,24,30,31,35,37,40,41,42,45,46,49,50,54,56,57,60,61,62,63,64,66,69,75,76,81,82,87,92,94,95,96,99,100,105,107,110,113,114,120,122,148,150,155,158],"try":[0,3,10,18,25,28,30,31,32,34,35,39,41,42,45,50,56,59,62,82,142,158],"var":75,"while":[1,6,8,13,25,30,34,35,37,41,42,44,52,54,56,63,91,114,146,148,150,151,158],AND:[12,114],ATS:[90,151],Added:6,Adding:142,And:[3,6,7,8,10,21,47,49,50,57,58,155,159],Are:[119,158],Axes:1,BUS:[28,39],BUT:142,But:[0,2,3,4,15,24,50,57,63,88,92,145,146],Doing:[6,50],For:[1,2,3,4,6,8,10,11,12,14,20,21,24,25,32,34,39,41,49,50,52,53,57,59,62,63,64,72,75,81,82,87,91,92,94,100,103,110,113,114,120,142,148,149,152,154,155,158,159],Has:[3,95],IDs:97,IPS:[42,107],Its:[155,158],NOT:[3,41,54,57,72,90,103,142],Not:[2,3,12,14,49,60,64,81,91,122,142,148,151,155],ONE:[34,113,142],One:[1,2,15,57,63,103,148,149,151,153,158,159],POS:[31,39,49,100],PRs:142,SRS:136,THE:[49,57,151],THERE:151,TPS:[52,136,137],That:[3,11,14,23,41,84,85,114,148,149,151,159],The:[0,1,2,3,8,10,11,12,13,20,22,26,27,28,31,32,33,34,36,38,39,40,41,42,43,44,45,46,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,66,67,69,72,74,75,76,79,81,82,84,86,87,89,90,91,92,94,95,96,97,99,100,103,107,108,110,112,113,114,116,120,121,132,140,142,144,146,148,149,150,151,154,155,158,159],Then:[4,33,41,44,50,53,54,57,61,142,148,154,159],There:[1,3,4,7,14,25,38,41,44,52,53,63,96,107,140,142,145,148,150,154,155],These:[3,10,15,34,45,46,57,63,75,112,113,114,151,158],Use:[30,34,64,70,81,82,92,114,142,153,155],Used:[108,114],Useful:[34,80,82],Uses:72,Using:[10,14,151,157],Will:[69,81,155],With:[32,50,59,154,158],_000_000_000:36,_10:[49,50],_11:[50,57],_13:[33,61],_14:[38,60],_15:31,_16:[27,52],_17:24,_2017:23,__call__:[31,42,72],__class__:[0,24,25,36],__del__:92,__doc__:[41,57,64,74,81,82],__enter__:[35,37],__exit__:[35,37],__file__:[4,41],__getattr__:[66,99],__init__:[3,4,11,21,35,37,41,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,94,118,120,121,122,159],__iter__:[84,85],__main__:30,__name__:57,__next__:85,__param__:150,__repr__:94,_alazar:92,_assigned_fg:31,_ats_dll:3,_attenu:90,_bdaqctrl:91,_call:31,_check_for_error:35,_check_respons:35,_coil_const:59,_count:21,_current_r:59,_current_ramp_limit:59,_display_settext:3,_do_measur:18,_error_queu:35,_expect_error:35,_field_limit:42,_get:159,_get_cmd:107,_get_temp_channel:55,_handl:3,_indic:21,_instrument:[3,31,35],_instrument_list:159,_irang:3,_keysight_344xxa:95,_measured_param:3,_mode:114,_parent:3,_poll:35,_ramp_stat:94,_ramp_tim:94,_randomnumber_:23,_raw:3,_read_cmd:107,_recv:107,_rem_file_path:30,_response_queu:35,_return_handl:31,_rigoldp8xx:108,_rohdeschwarzhmc804x:110,_run_loop:31,_run_wrapp:31,_save_v:[3,42,64,81],_scale_param:21,_send:107,_set:159,_set_async:159,_set_blocking_t:41,_set_both:159,_set_target:42,_setget:[27,28],_step:113,_subplot:[6,10,51,62],_syncoutput:31,_t0:94,_trace:50,_val:21,_vrang:3,_win32:91,_write_cmd:107,_write_respons:99,a118e754f9e:35,a18:[43,140],a6fc2471013f:42,a_good_run:14,a_nother_run:14,a_sweep:24,a_val:148,abax:6,abil:[134,148],abl:[59,146,148,150,154,158,159],abort:[28,112],abort_measur:28,about:[3,4,14,24,34,35,36,44,46,49,50,56,57,63,114,142,145,148,150,152,153,155,159],abov:[1,3,4,6,7,10,11,13,34,41,44,50,53,91,114,148,154,158],abridg:3,abs:[59,96],abscissa:148,absolut:[14,44,57,71,98,114,142,155],accept:[3,42,70,71,73,74,75,86,91,95,97,98,106,107,112,113,114,148,150,158],acces:[25,53],access:[1,6,7,13,32,40,57,66,91,92,105,108,113,148,151],accident:150,accommod:[108,114],accompani:142,accord:[41,96,98,114,148,149,154],accordingli:[31,96],account:[82,90,94,142,154],accumul:44,accur:[64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,118,120,121,122],achiev:[41,53,63],acknowledg:76,acquir:[4,27,31,33,34,36,38,49,50,57,61,92,103,113,151,158],acquire_averag:13,acquire_point:[13,61],acquire_sample_r:[13,61],acquisiion:92,acquisit:[28,36,50,57,92,103,112,113,142,151,158],acquisition_conrol:92,acquisition_control:[36,92],acquisition_controller_acquisit:36,acquisition_mod:113,acquisition_sample_r:49,acquisitioncontrol:92,acquisiton:92,acquist:92,acqusit:49,across:[6,45,46,56,95,149,158],act:[69,82,90],action:[1,6,10,13,20,21,24,31,35,55,65,69,79,103,114,118,122,128,145,151,153,158,159],action_indic:[24,31,69],activ:[1,2,14,49,63,95,107,110,145,154],activeloop:[24,79,145],actual:[1,3,6,13,26,34,41,44,56,59,63,90,92,100,110,114,142,148,149,158],actuat:44,acut:0,adapt:[6,84,85],adaptivesweep:[85,145],adawpt:85,adc:100,add:[1,2,3,4,6,7,14,15,17,25,28,31,33,38,40,41,50,52,57,60,70,72,76,77,87,92,95,96,99,100,103,104,110,113,114,119,120,121,122,134,135,138,142,145,150,151,154,155],add_after_run:[6,13],add_arrai:[69,70,119],add_before_run:[6,13],add_channel:[50,97,110],add_compon:[17,30,38,122],add_funct:[77,78,142],add_metadata:[15,150],add_paramet:[3,4,11,15,25,77,78,113,142,150,158,159],add_parameter_valu:150,add_post_trigger_act:103,add_result:[5,6,7,8,10,11,12,13,15,16,51,62,148,150],add_signal_to_sweep:[57,103],add_submodul:[3,77,96],add_subplot:[30,53],add_subscrib:6,add_tim:7,addblueprint:58,added:[1,6,10,12,14,24,41,50,59,64,69,70,103,113,114,119,120,121,122,132,140,142,146,149,150,154,158],addel:58,adding:[1,6,12,57,63,149,150,151],addit:[1,3,42,53,76,77,82,87,105,106,107,112,113,146,150,153,154,155,158],addition:[1,57,103],address:[3,4,34,41,44,46,47,48,55,59,61,62,66,76,87,93,94,95,96,97,98,99,100,104,105,107,108,110,113,114,115,116,142,158],addsubsequ:58,addtion:41,adjust:[10,34,50,59,60,61,100,158],adjust_parameter_valid:100,adopt:153,advanc:[6,82,146],advantag:1,advantech:[90,136],advantech_pcie_1751:91,aeroflex:[3,4,115],affect:[44,57,71,103,142],after:[1,12,14,24,25,31,32,36,44,51,75,79,82,86,92,98,103,107,113,114,134,142,148,149,150,151,154,155,158],ag_uc8:[44,90],again:[34,36,42,56,63,114,154,158],against:[145,148],aggeg:0,aggreag:0,aggreg:[67,89,151,159],agi:[26,35,37],agil:[13,37,39,62,90,95,136,142,151],agilent1:[35,37],agilent2:[35,37],agilent_34400a:[26,35,37,90],agilent_34401a:104,agilent_34410a:104,agilent_34411a:104,agilent_e8527d:[104,142],agilent_hp33210a:104,agilent_volt:26,agili:98,agre:149,agreement:38,agument:65,ahead:[57,84,85],aid:158,aim:[1,146,148,149],airbnb:142,aka:[142,151],akin:158,ala:153,alazar1:36,alazar1_alloc_buff:36,alazar1_allocated_buff:36,alazar1_aux_io_mod:36,alazar1_aux_io_param:36,alazar1_buffer_timeout:36,alazar1_buffers_per_acquisit:36,alazar1_bwlimit1:36,alazar1_bwlimit2:36,alazar1_channel_range1:36,alazar1_channel_range2:36,alazar1_channel_select:36,alazar1_clock_edg:36,alazar1_clock_sourc:36,alazar1_coupling1:36,alazar1_coupling2:36,alazar1_decim:36,alazar1_enable_record_head:36,alazar1_external_sample_r:36,alazar1_external_startcaptur:36,alazar1_external_trigger_coupl:36,alazar1_external_trigger_rang:36,alazar1_fifo_only_stream:36,alazar1_get_processed_data:36,alazar1_idn:36,alazar1_impedance1:36,alazar1_impedance2:36,alazar1_interleave_sampl:36,alazar1_mod:36,alazar1_records_per_buff:36,alazar1_sample_r:36,alazar1_samples_per_record:36,alazar1_timeout_tick:36,alazar1_transfer_offset:36,alazar1_trigger_delai:36,alazar1_trigger_engine1:36,alazar1_trigger_engine2:36,alazar1_trigger_level1:36,alazar1_trigger_level2:36,alazar1_trigger_oper:36,alazar1_trigger_slope1:36,alazar1_trigger_slope2:36,alazar1_trigger_source1:36,alazar1_trigger_source2:36,alazar:[3,11,92,132,136,151],alazar_driv:92,alazar_nam:[36,92],alazargetboardbysystemid:3,alazarparamet:3,alazarstartcaptur:92,alazartech:[3,36,90],alazartech_at:[3,36,92],alazartech_ats9360:[36,92],alazartech_ats9870:[3,92],alazartest:36,alert:14,alexcjohnson:142,algorithm:6,alia:[80,94,96,97,110],alik:107,all:[1,2,3,4,6,7,10,11,12,13,21,23,24,25,27,34,36,38,41,42,43,45,46,49,50,53,57,61,63,64,66,67,69,72,73,74,75,77,78,81,82,84,87,89,90,91,92,94,95,97,99,100,103,104,107,108,110,113,114,120,121,122,139,142,145,147,149,150,151,153,154,155,158,159],all_channels_off:114,all_channels_on:114,alloc:[36,92],alloc_buff:[36,92],allocated_buff:[36,92],allow:[1,3,4,10,11,24,34,36,41,42,45,46,54,59,60,61,63,66,76,82,84,85,87,95,100,103,107,110,113,114,119,142,148,150,158],almost:[63,113,158],alon:[59,69],along:[1,29,41,42,59,64,81,82,113,120,121,142,145,148,150,158],alongsid:[21,24],alpha:[30,53,95,100],alreadi:[9,64,69,73,81,150],also:[1,2,3,4,6,10,11,13,22,23,24,25,32,34,36,41,42,44,50,51,52,53,57,59,62,63,69,71,73,75,82,84,88,91,94,95,96,97,98,106,107,112,113,114,119,138,140,142,145,146,148,153,154,155,158],altern:[10,32,53,154],alternativli:32,although:[3,53,62,93,103,142,148,150,154],alwai:[1,2,3,4,11,14,20,25,33,41,42,52,54,57,75,81,94,99,103,113,114,142,158],always_nest:75,ambigu:148,amen:142,american:[59,105],american_magnet:[59,90],ami430:[90,136,139,151],ami430_2d:105,ami430_3d:[59,105],ami430except:105,ami430switchheat:105,ami430warn:105,ammet:158,among:[72,146,159],amount:[22,63,140,148,150],amp:[3,38,59,106,113],amper:116,ampl:[32,108],amplifi:[3,25,106,113,140,148,151],amplitud:[13,18,21,22,33,34,44,45,46,49,54,57,58,92,98,113,114,148,159],amplitude_unit:13,anaconda3:[30,31,35,154],anaconda:[153,154],analog:[34,99],analog_amplitude_n:114,analog_direct_output_n:114,analog_filter_n:114,analog_heat:41,analog_high_n:114,analog_low_n:114,analog_method_n:114,analog_offset_n:114,analys:110,analysi:[142,150,158],analyt:150,analyz:[51,60,93,140,151,153],angl:59,angle_deg:104,angle_rad:104,ani:[0,2,3,4,7,10,12,14,21,22,25,34,35,37,45,46,47,48,50,51,53,59,62,63,64,67,69,71,72,73,74,75,76,79,81,82,84,85,86,87,89,92,94,95,97,98,103,107,112,113,114,118,122,142,145,146,148,149,150,153,154,158,159],annoy:63,anoth:[6,8,21,25,26,53,72,79,84,96,114,116,148,153,158],answer:[94,100],anymor:4,anyon:10,anyth:[3,8,24,25,28,36,49,114,145,148],anywai:[21,34],ap_tim:28,apart:148,apertur:[26,28],api:[1,4,128,130,132,140,149,153,155,158],app:61,apparatu:145,appdata:2,appear:[44,54,63,114,150],append:[5,6,7,8,12,29,30,35,40,41,53,59,62,69,84,159],appli:[32,45,46,49,59,70,74,82,91,95,97,98,106,108,112,113,114,150],applic:[3,32,41,150,154],apply_auto_color_scal:63,approach:151,appropri:[1,11,92,114,150,158],approv:142,approxim:7,apropri:10,aqcuisit:49,aquir:60,arang:[3,4,5,11,30,40,41],arb:[32,108],arbitrari:[10,74,75,81,104,108,114,145,148,150,153],architectur:[153,159],arctan:53,area:63,arg:[1,2,3,12,13,30,31,35,40,41,42,64,74,81,82,84,86,92,99,105,107,112,120,121,150,159],arg_count:[31,42],arg_pars:74,argu:[63,148],argument:[0,1,3,6,10,12,14,20,25,31,32,34,42,65,69,70,73,74,81,86,97,103,105,108,113,145,150],arithmet:49,arm:[34,103],around:[13,50,51,53,63,69,92,142,158],arrai:[0,1,7,21,23,24,25,26,27,28,29,30,31,33,34,36,37,38,41,49,50,52,53,54,57,60,61,64,69,70,73,81,92,103,108,110,112,113,114,118,119,121,134,145,150,151,155,158,159],array0d_dataset:5,array0ddata:[5,14],array1d_dataset:5,array1ddata:[5,14],array_count:21,array_id:[0,1,21,23,24,25,26,27,28,31,33,36,38,49,50,52,57,60,61,69,73,159],arraycount:21,arraygett:20,arrayparamet:[3,11,13,27,93,95,108,110,112,113,114,128,151],arriv:158,arrow:148,asc:49,ascii:151,ascii_plotter_5bit:12,asctim:6,ask:[3,28,29,35,42,49,55,57,62,94,95,97,98,100,107,113,114,142,158],ask_channel:98,ask_modul:113,ask_raw:[18,97,114],asopc:92,asopc_typ:[36,92],asrl1:52,asrl2:87,asrl3:[44,98],asrl4:[26,107],asrl6:[31,45,46],asrl7:28,asrl:100,asrln:94,assert:[4,40,56,59,113,114],assign:[31,34,42,45,46,54,58,99,107,113,114,142,148],assigned_paramet:34,associ:[34,95,149,150,158],assuem:5,assum:[3,50,53,60,85,99,114,148,154,158],assumpt:[57,114,148],astafev:142,astyp:18,asymmetr:151,asymptot:11,async:157,asynchron:25,atob:[42,107],ats9360:[36,90,132],ats9870:[3,90],ats_acquisition_control:[36,90],ats_contr:36,ats_inst:36,atsapi:[3,92],atsdriv:36,attach:[1,3,34,66,70,77,78,79,90,95,99,110,113,114],attempt:[18,94],attent:[34,142,151],attenu:[3,4,45,46,115],attn:[3,4],attribut:[1,3,34,57,64,68,69,70,72,73,76,77,78,80,81,82,83,87,103,113,118,120,121,122,142,149,150,158],author:142,auto:[19,56,57,62,72,110,151,155],auto_color_scal:[63,155],auto_color_scale_from_config:63,auto_rang:[41,56],auto_sweep:62,autofmt_xd:18,autom:[4,153],automat:[1,3,6,10,13,21,23,50,57,62,72,91,92,98,99,110,116,135,139,142,146,149,150,151,153,154,155],autorang:31,autoreload:2,autoscal:[40,41,50],autoscale_view:[40,41],aux:36,aux_in1:[33,34,113],aux_in2:[33,34,113],aux_in3:[33,34,113],aux_in4:[33,34,113],aux_in_auxiliari:36,aux_in_trigger_en:[36,92],aux_io_mod:[36,92],aux_io_param:[36,92],aux_out1:[33,34,113],aux_out2:[33,34,113],aux_out3:33,aux_out4:33,aux_out_trigg:36,auxiliari:[10,11,142,148],auxoutputchannel:103,avail:[1,3,4,19,32,34,39,49,53,54,57,60,90,91,95,96,99,100,104,107,110,113,114,128,130,153,154,158],avanc:157,averag:[50,57,60,62,92,95,114,151],averageandraw:20,averages_en:62,averages_off:95,averages_on:95,avg:[50,51,112],avoid:[28,49,59,61,140],awai:[10,63,148,151],awar:[42,142],awg1:[30,53],awg5014:[30,90,135,137,151],awg5014c:151,awg5200:[90,139],awg5208:[34,90,132,151],awg520:90,awg70000a:[90,140],awg70001a:114,awg70002a:[90,151],awg:[4,25,29,30,32,58,95,114,132,151],awg_amplitud:[34,54,58],awg_ch1:54,awg_ch2:54,awg_fil:[30,114],awg_file_format_channel:114,awg_file_format_head:114,awgchannel:114,awgfil:53,awgfilenam:30,awgfilepars:[53,90],awgfilepath:114,awgseq:30,ax1:[30,53],ax2:[30,53],ax3:53,ax4:53,axes:[1,6,8,10,42,44,50,51,62,98,107,148],axes_api:1,axesimag:15,axeslist:10,axessubplot:[6,10,51,62],axi:[1,6,10,44,50,57,59,64,69,75,81,82,98,103,112,148,158],axis1:44,axis2:44,axs:[9,57],axvlin:63,b020203:58,b020205:34,b020397:[29,54],b051039:30,b0cc11f2d82e:2,b200:49,b20:49,b2962a:95,b2962achannel:95,b800:49,b_val:148,babi:[18,159],back:[4,6,11,13,14,25,41,42,43,44,50,53,56,59,62,63,85,94,97,107,110,114,142,148,153,155,158,159],backend:[1,87,140,146],background:[35,37,148,151,158],background_color:120,background_funct:70,backslash:142,backward:[71,100],bad:2,bad_valu:4,bake:42,bandwidth:[36,49,50,57,103,110],bar:[63,142,155],bare:[63,76,84],base0:159,base1:159,base2:159,base:[1,14,21,27,31,49,59,66,69,70,71,72,73,77,78,85,87,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,132,142,150,151,154,155,158,159],base_loc:[2,24,71],base_spdt:90,baselin:151,baseoutput:96,baseplot:120,basesensorchannel:96,baseserv:159,bash:154,basi:[54,81,146],basic:[3,4,24,30,36,52,63,75,92,100,146,147,153],basicconfig:[6,16,30,31,60],batch:6,baud:[94,113],bdaqctrl:91,bear:142,becaus:[1,2,3,41,52,56,63,69,70,73,91,96,113,142,158,159],becom:[7,36,53,63,107,145,158],been:[3,6,11,12,21,34,41,52,53,59,61,82,92,95,96,103,112,113,114,149,150,158,159],beenmark:150,befor:[2,3,4,12,24,25,26,29,31,33,34,41,42,44,49,50,52,57,59,60,61,72,76,79,82,86,90,91,92,93,95,96,103,107,112,113,114,140,142,150,154,155,158],beforehand:[90,148],begin:41,begin_tim:94,behav:142,behavior:[35,37,41,112,142,158],behaviour:[38,82,103],behind:[57,149],being:[2,10,11,24,25,29,32,34,36,40,41,53,54,56,69,92,96,112,113,114,146,148],belong:[3,64,81,82,96,108,110,112,149],below:[1,2,3,4,6,7,10,12,13,25,27,34,41,53,62,63,142,145,148,151],ben:59,benchmark:[7,14,26,139],benchmark_data:[5,14],benchmark_seqx:29,benchmarkingqcod:29,besid:148,best:142,beta:[52,92,95,104,107,110,113,114,132],better:[3,6,7,13,28,49,54,63,74,132,139,142,146,158],between:[1,3,6,7,8,39,40,41,44,56,63,70,73,76,82,84,96,103,112,114,116,119,120,121,146,148,150],bewar:34,beyond:[63,114,149,150],bid:91,bidirect:82,big:[7,41],bin:63,binari:[7,11,27,29,54,91,97,114],binascii:52,bind:57,biodaq:91,bip:100,bipolar:[41,96],bit:[6,12,13,28,29,34,49,54,91,110,113,114],bitarrai:92,bits_per_sampl:[36,92],black:[63,120],blame:[45,46,114],blank:[43,75,107,142],blind:25,blip:[12,14],blob:[7,11],block:[12,25,34,35,42,75,100,105,107,113,114,151,159],blocking_t:41,blop:[12,14],blue:[34,63,148],bluefor:151,blueprint:58,bnc:112,board:[3,36,41,45,46,92],board_id:[3,36,92],board_kind:[36,92],bodi:142,boil:3,boilerpl:[3,74],bold:145,bonu:151,bool:[3,64,66,69,76,81,82,92,94,95,96,99,100,105,106,110,112,113,114,116,119,122],bool_to_str:114,bootstrap:29,bore:61,born:142,borrow:8,bot:[137,138],both:[1,2,3,7,10,11,21,26,50,54,57,71,113,114,142,145,148,153,154,158,159],bottom:[63,100,120],bound:[3,25,110,158],box:151,bracket:142,branch:142,brand:132,brand_new_sampl:14,brdige:[14,15],breakif:[25,128,158],breviti:148,brief:14,briefli:54,bring:[11,148],brittl:158,broadbean:[29,34,54,114,151],broader:153,broadli:3,broken:[2,82,154],brows:[154,159],browser:154,buf:92,buffer:[36,91,92,113,137,151],buffer_acq_mod:33,buffer_done_callback:92,buffer_list:3,buffer_npt:33,buffer_numb:92,buffer_paus:33,buffer_reset:33,buffer_sr:33,buffer_start:33,buffer_timeout:[36,92],buffer_trig_mod:33,buffers_complet:92,buffers_per_acquisit:[36,92],bug:[61,143],build:[7,11,53,54,57,103,114,135,136,142,151,158],build_sweep:[57,103],built:[1,21,44,57],builtin:74,bunch:[7,57],bundl:114,burden:158,burn:12,burst:[108,151],burst_stat:13,busi:[41,91],button:[41,114,142,154],bwlimit1:36,bwlimit2:36,bwlimit:92,bwmode:57,byref:31,byte_rep:92,byte_to_bit:113,byte_to_value_dict:[3,92],bytecod:4,c_amp_in:[3,106],c_sample_typ:92,c_set:21,c_val:148,cabl:[34,114,158],cach:113,calc_set_point:114,calcul:[59,63,103,110,145,158],calibr:[90,92,151],california:4,call:[2,3,6,7,21,31,34,35,38,41,42,49,50,52,53,59,60,63,64,67,69,70,72,73,74,76,81,82,86,87,89,91,92,94,97,98,99,100,103,107,112,113,114,116,119,142,150,151,154,158],call_by_str:31,call_by_str_parsed_out:31,call_cmd:74,callabl:[6,25,34,35,65,67,70,72,79,82,86,88,89,103,107,113,119,137,158],callback:[6,12,92,150],callback_kwarg:16,callsig:53,came:92,camp1:37,camp:37,can:[0,1,2,3,4,5,6,7,8,10,11,12,14,15,21,22,23,28,29,32,33,34,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,56,57,58,59,61,62,63,64,65,68,69,70,72,74,75,79,81,82,84,85,88,91,92,93,94,95,96,99,100,103,107,108,110,112,113,114,118,119,120,121,122,140,142,145,148,149,150,151,152,153,154,155,158,159],cancel:[45,114],cann:15,cannot:[32,42,50,59,63,64,81,91,96,113,114,158],canva:[1,40,41],capabl:[10,145,153,158],capit:142,captur:[11,25,50,51,63,92,113,151],capture_config:[34,113],capture_data:113,capture_one_sample_per_trigg:[34,113],capture_r:34,capture_sampl:[34,113],capture_samples_after_trigg:[34,113],card:[3,11,36,91,92,95,136],care:[2,3,36,41,54,154],careful:100,cartesian:[42,59,158],cartesian_measur:59,cash:113,cast:[28,53,54,74,148],categori:[11,151],caus:[45,46,113],caution:[113,114,151],caveat:158,cbax:[6,8,9,10],cdirectori:30,cdll:[3,92],cell:[6,49,53],center:[50,51,63,112],central:[6,150],certain:[12,14,25,41,57,59,92,96,105,107,148,149],cesr:113,cffi:91,ch01:[41,46,96],ch01_i:45,ch01_irang:45,ch01_slope:[31,45],ch01_sync:31,ch01_sync_delai:31,ch01_sync_dur:31,ch01_v:[28,31,45],ch01_vrang:45,ch02:[41,45,46,96],ch02_slope:45,ch02_sync:45,ch02_v:[31,45],ch03:[41,96],ch04:[41,96],ch05:[41,96],ch06:[41,96],ch07:[41,96],ch08:[41,96],ch09:[41,96],ch10:[41,96],ch11:[41,96],ch12:[41,96],ch13:[41,96],ch14:[41,96],ch15:[41,96],ch16:[41,96],ch1:[6,8,11,13,14,24,25,29,30,32,34,47,48,49,54,58,114],ch1_amp:[54,114],ch1_amplitud:39,ch1_amplitude_unit:39,ch1_burst_mod:39,ch1_burst_ncycl:39,ch1_burst_phas:39,ch1_burst_polar:39,ch1_burst_stat:39,ch1_curvedata:52,ch1_databuff:33,ch1_displai:[13,33],ch1_frequenc:39,ch1_function_typ:39,ch1_offset:39,ch1_output:39,ch1_posit:52,ch1_ramp_symmetri:39,ch1_ratio:33,ch1_scale:52,ch1_state:52,ch1_trigger_count:39,ch1_trigger_delai:39,ch1_trigger_slop:39,ch1_trigger_sourc:39,ch1_trigger_tim:39,ch2:[6,8,11,13,14,24,25,47,48,52,54,58,114],ch2_amp:[54,114],ch2_curvedata:52,ch2_databuff:33,ch2_displai:33,ch2_offset:[30,53],ch2_posit:52,ch2_ratio:33,ch2_scale:52,ch2_state:52,ch3:48,ch3_state:53,ch41_v:26,ch42_v:26,ch4:61,ch_name:3,ch_rang:109,cha0:90,chain:158,challeng:146,chan0:90,chan1:[57,65],chan1_list:30,chan2:57,chan:[95,99],chan_alia:55,chan_go:31,chan_list:66,chan_reset_1:31,chan_reset_2:31,chan_reset_3:31,chan_typ:66,chanc:[92,154],chandata:57,chang:[1,3,4,10,14,22,25,32,36,41,42,43,44,45,46,51,52,57,63,64,68,71,81,82,92,100,103,112,113,114,141,142,148,150,151,153,154,155,158],change_autozero:114,change_displai:114,change_fold:114,changearg:58,channel1:13,channel4:61,channel:[13,25,26,29,32,33,35,36,37,38,40,44,47,48,49,52,53,54,58,61,66,77,78,87,91,92,94,95,96,97,98,99,100,103,105,107,108,109,110,111,113,114,116,137,138,145,151,152,158],channel_a:[36,92],channel_b:36,channel_cfg:[30,114],channel_class:[96,97,110],channel_color:113,channel_id:113,channel_lett:97,channel_map:[58,114],channel_nam:[110,113],channel_name_command:96,channel_numb:98,channel_rang:92,channel_range1:36,channel_range2:36,channel_select:[36,92],channel_skew_n:114,channel_state_n:114,channel_to_read:[40,41],channelbuff:113,channelis:[38,99,114,140],channelist:66,channellist:[99,128],channum:[95,99,103,110],charact:[64,75,76,81,82,87,107,110,142,149],characteris:149,characterist:158,charg:[10,154],chassi:[95,96],check:[3,4,15,19,32,40,42,56,59,88,91,105,107,110,113,116,120,121,132,142,152,156,158,159],check_en:105,check_error:31,check_for_error:112,check_module_error:113,check_schema:2,check_stat:105,checklist:142,chees:151,chime:142,chnum:53,choic:[50,63,92,148],choos:[10,34,41,53,100,103,114,154,158],chore:142,chose:[6,7],chosen:[41,56,103],chx:25,circuit:[43,60,97,140],circular:148,circumst:148,circumv:63,claim:63,clariti:[3,14],classic:28,classmethod:[90,92,96,97],clean:[49,108,114,132,134,142],clean_str:108,cleanup:[73,139],clear:[12,30,31,33,50,52,53,54,87,95,113,114,148],clear_buff:92,clear_channel:[50,110],clear_error:104,clear_message_queu:[52,53,114],clear_waveform:114,clearer:63,clearli:[63,142,148],clearqueu:30,clearsequencelist:[29,34,54,58,114],clearwaveformlist:[29,34,54,58,114],clever:[6,143],cli:153,click:[1,43,154],clim:1,clip:[41,63,155,158],clock:[3,36,92,114],clock_edg:[36,92],clock_edge_fal:36,clock_edge_ris:36,clock_external_frequ:54,clock_freq:30,clock_sourc:[3,36,54,92,114],clone:[142,154],close:[1,4,7,26,29,38,40,42,45,46,50,52,53,54,55,57,59,91,96,97,103,107,112,139,142,151],close_ev:1,close_fil:73,closed_loop:[41,96],cls:2,cmd:[31,42,93,94,95,97,98,99,107,113,114],cmd_id:[34,113],cmd_id_nam:[34,113],cmd_str:31,coars:94,code:[1,3,4,34,62,74,82,93,94,96,98,104,113,122,132,143,146,148,149,153,155,158],codebas:[4,132,153],coil:59,coil_const:59,col:110,cold:107,collabor:149,collect:[6,21,24,84,92,145,150,153,158],colloqui:[3,107,114],colon:[91,95,97,98,106,107,112,113,114,142],color:[1,10,19,30,34,53,57,113,120,151,155],color_ov:[63,155],color_und:[63,155],colorbar:[1,6,10,63,69],colormap:155,column:[1,18,75,148,149,150,158],com2:87,com3:[44,98],com:[43,95,113,142,144,151,152,154],combin:[10,67,70,75,82,92,117,119,128,138,145,151,157,158],combinator:148,combined_set:0,combinedparamet:[0,128],come:[10,11,29,34,42,75,113,142,148,154,158],comma:[91,95,97,98,106,107,112,113,114],command:[1,3,4,27,28,31,34,36,41,42,44,52,53,57,74,82,91,94,95,96,97,98,99,100,104,107,108,110,113,114,128,142,145,151,153,154,155,158],command_delai:98,commenc:149,comment:[3,10,75,91,142],commit:[92,152,153,154],common:[3,63,91,95,97,98,106,107,110,112,113,114,145,158],commonli:[95,104,110,114],commun:[3,34,36,44,59,76,87,92,94,97,98,100,107,112,113,114,145,146,152,158],communc:59,compani:3,compar:[7,22,26,36,41,49,50,51,142],comparison:7,compat:[13,41,79,86,99,100,113,153,158],compatibil:114,compens:[114,148],compet:146,compil:54,complain:[25,158],complet:[1,11,29,31,44,49,53,69,70,91,92,114,148,149,150,158,159],completed_acquisit:49,completli:6,complex:[10,50,82,142,148,158],compliant:142,complic:[8,10,74,146,151,158],compon:[6,10,24,42,81,92,122,150,153,158],compos:[54,114,149],composit:[31,158],comprehens:[142,151],comput:[1,5,22,38,41,92,96,103,107,142,158],con:136,concaten:[6,15,29,34,54,99,142],concept:[62,148,159],conceptu:150,concern:148,conclus:28,concret:4,concurr:158,conda:154,condit:[3,25,65,82,91,107,114,158],config:[3,5,7,10,15,34,63,92,113,114,128,138,142,151,157],config_file_nam:68,configur:[4,14,15,40,51,57,68,91,92,112,114,131,150,151,153,157,158],conflict:[91,150,158],confus:34,confusingli:159,congratul:151,connect:[3,4,13,14,16,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,87,92,94,95,97,100,103,107,112,113,114,122,145,148,151,158],connect_messag:[3,4,94,99],consequ:158,consid:[3,6,25,38,49,63,114,142],consider:148,consist:[25,45,46,50,100,112,114,118,142,148,158],consol:4,consolid:153,constant:[13,20,25,41,57,59,100,103,112,113,148],constantli:41,constantvoltag:48,constitut:4,constraint:29,construct:[3,19,20,41,50,69,76,82,92,146,151,159],constructor:[3,64,69,81,96,100,120,121,150],consult:[113,158],consum:63,cont:[62,110,113,151],cont_meas_off:50,cont_meas_on:50,conta:103,contact:139,contain:[3,4,5,6,10,18,20,24,25,34,38,42,50,53,54,66,68,69,70,72,75,91,92,94,95,96,97,98,99,103,104,106,107,110,112,113,114,122,142,145,148,149,150,151,154,155,158,159],contantli:[40,41],content:[69,150,151],context:[14,36,92,97,98,107,114,146,151,158],contextmanag:8,contin:[93,114],contini:50,continu:[4,6,10,13,41,53,57,62,79,113,114,122,142,151],continuo:151,continuum:2,contrast:[4,142],contribut:[3,61,143,152],contributor:142,control:[2,3,11,23,24,35,36,37,38,40,45,46,50,53,57,92,94,96,98,100,105,107,110,112,114,132,136,148,151,153,155,158,159],control_mod:40,controlthermometri:107,conveni:[6,8,10,34,41,108,113,114,122,149,150,158],convent:[3,4],converg:41,convers:[114,142,148],convert:[3,4,22,59,69,71,92,99,107,113,114,148,158],convex:[42,107],coordin:[42,59],copi:[2,4,10,16,35,58,69,84,92,100,103,158],core:[0,1,5,6,7,9,10,13,14,15,18,30,31,33,34,35,36,37,40,41,49,50,51,52,55,57,58,60,113,142,148,151,153,155],corner:[35,37,63],correct:[1,3,10,40,49,53,57,59,62,73,92,95,108,113,138,146,148],correctli:[4,56,59,132,154],correl:10,correspond:[1,26,33,34,38,44,49,53,54,58,63,75,92,94,96,100,103,110,112,113,114,148,150],corrupt:133,cos:10,cosmet:[134,135],cost:[7,100,146],could:[6,31,34,53,142,148,150,158],coulomb:148,count:[12,21,31,44,74,91,99,114,150,159],counter:[2,23,25,44,72,91,92,98],counterintuit:146,coupl:[3,36,49,57,92,110,114],coupling1:36,coupling2:36,cours:[14,24,49,63,142,148,158],cov:142,cover:[34,54,63,142,159],coverag:[13,142,153],coveragerc:142,cpld:92,cpld_version:[36,92],cpu:[5,10,50],crash:[12,92,153],creat:[1,5,6,10,14,15,17,21,23,25,34,35,37,38,47,48,60,63,66,69,73,79,81,82,84,90,92,94,96,100,103,107,114,118,119,145,150,151,154,155,158,159],create_and_goto_dir:114,creation:[3,25,149,159],critic:[2,149,155],cryo:136,cryogen:140,ctl:44,ctwrapper:31,ctype:[3,92],cumbersom:99,curernt:159,curiou:10,curr:[3,27,37,38,56,106,113],current:[2,3,10,11,12,14,22,23,24,27,37,38,42,44,45,46,47,48,50,52,53,56,57,59,70,71,72,91,92,95,96,98,99,103,105,106,107,108,112,113,114,116,117,119,122,142,146,148,149,150,155,158,159],current_config:[2,68],current_config_path:[14,68],current_directori:54,current_field:59,current_persist:42,current_r:59,current_ramp_limit:[59,105],current_ramp_r:42,current_rang:56,current_schema:[2,68],current_source_shunt:41,current_target:[42,59],current_to_field:59,current_valu:31,current_waveform:[32,108],currentparamet:[3,37,106],cursor:150,curv:[27,40,95,96,108,114,151],curve_data:40,curve_nam:40,curve_numb:41,curve_x:40,curve_x_data:40,custom:[10,21,23,68,71,93,146,151],customawgfil:114,customgett:6,customis:99,cut:63,cutoff:151,cutoff_hi:113,cutoff_lo:113,cutoff_percentil:[63,155],cuttoff:151,cwd:[7,68],cwd_file_nam:[2,68],cycl:[3,32,35,36,37,38,39,113,158],cylindirc:59,cylindr:[42,59],cylindrical_measur:59,d5a:90,d5a_modul:100,d5mux:100,d_bdaq_c_interfac:91,d_val:148,dac0:22,dac1:[20,22],dac1_too_high:11,dac2:20,dac3:20,dac:[6,8,11,20,24,25,90,94,100,138],dac_ch1:[11,24,25],dac_ch1_set:[24,25],dac_ch2:[24,25],dac_channel_class:94,dac_commands_v_13:99,dac_control:11,dac_delai:100,dac_idn:[24,25],dac_slot_class:94,dac_step:100,dac_v:11,dac_verbose_channel:25,dacchannel:94,dacexcept:94,dacn:100,dacnam:100,dacread:94,dacslot:94,dacx:100,dai:[63,142],daili:154,dancer:142,daqnavi:91,daqnaviexcept:91,daqnaviwarn:91,dark:120,daset:151,dat1:34,dat2:34,dat3:34,dat4:34,dat:75,data1:50,data2:[17,23,52],data:[0,1,2,3,6,7,11,12,14,15,16,18,20,21,23,24,26,27,28,29,31,33,35,36,37,38,40,41,49,50,52,54,57,60,62,69,70,71,72,73,75,79,81,82,91,92,95,96,97,99,100,103,108,110,113,114,117,119,120,121,128,138,142,145,146,148,149,150,151,153,155,158,159],data_arrai:24,data_avgd:49,data_buff:31,data_channel:34,data_channel_3:34,data_channel_:34,data_dict:96,data_export:[6,7,11],data_hd:49,data_l:17,data_ld:49,data_outside_iqr:63,data_set:[2,7,9,11,12,14,15,16,17,18,24,25,31,73,114,131],data_v:82,data_with_outli:63,dataarrai:[0,1,21,24,37,64,70,73,81,119,128,145,158],databas:[5,7,8,9,10,11,12,146,148,149,151,155],databs:15,dataflow:92,dataformat:[49,151],dataformatt:142,datafram:[18,150],dataframe_from_dataset:150,dataid:[6,8,10,62],datamanag:[145,158],datamin:158,datamod:[0,21,26,37,57,159],datapoint:[7,61,114,155],datasav:[6,7,8,10,11,13,51,62,148,151],dataserv:[70,145,158],dataset:[0,1,2,6,9,10,11,13,14,15,16,17,18,20,21,23,24,25,26,27,28,31,33,36,37,38,49,50,51,52,57,60,61,62,63,69,72,73,75,81,114,117,118,119,128,132,140,145,155,157,159],dataset_hm:16,dataset_with_data_outside_iqr_high_outli:63,dataset_with_data_outside_iqr_low_outli:63,dataset_with_outli:63,datatyp:[11,92],date:[2,23,25,72,92,150],datetim:72,datetime64:18,dateutil:18,daunt:142,db_debug:[2,155],db_locat:[2,5,7,14,15,155],dbm:[4,50,60,110],dc50:13,dc_channel_numb:114,dc_output_level_n:114,dch:34,dcl:49,dclimit:49,ddl:91,deactiv:[63,100],dead:11,deadlin:35,deal:42,dealt:158,dearest:63,debug:[2,6,17,18,30,52,57,60,61,62,155,158,159],debugmod:31,decadac:[90,132,137,139,140],decadec:94,decai:6,decid:[2,6,15,54,120,148,149,154,158,159],decim:[36,92],declar:[91,148],decode_sensor_statu:96,decor:4,decoupl:142,decreas:26,deem:103,deep:149,deepcopi:16,deeper:35,def:[0,1,2,3,4,6,7,8,10,11,12,13,21,25,28,29,30,31,35,37,40,41,42,59,107,159],default_color_map:155,default_figs:1,default_fil:[2,155],default_file_nam:68,default_fmt:[2,155],default_fold:[2,155],default_formatt:[70,117,119],default_io:[70,117,119],default_measur:24,default_parameter_nam:139,default_timeout:98,defaultcolormap:2,defaulttestload:17,deferred_oper:128,defin:[0,2,3,6,7,10,13,34,41,50,51,53,57,63,64,74,81,96,97,98,100,106,107,112,113,114,142,145,146,148,150,151,155,158,159],definit:[4,49,57,74,110,158],defit:49,deg:[33,57],deg_to_rad:104,degre:[39,54,57,82],del:3,delai:[0,1,8,24,25,31,36,41,44,46,56,57,59,79,82,83,85,88,100,110,116,158,159],delay1:8,delay2:8,delay_in_points_n:114,delay_in_time_n:114,deleg:69,delegate_attr_dict:122,delet:[3,114,142],delete_all_waveforms_from_list:[30,53,114],delete_sequence_from_list:114,deliber:56,demand:[12,158],demo:151,demod1:[57,103],demod1_harmon:57,demod1_i:57,demod1_ord:57,demod1_phaseshift:57,demod1_phi:57,demod1_r:57,demod1_sampl:57,demod1_sampler:57,demod1_signalin:57,demod1_sinc:57,demod1_stream:57,demod1_timeconst:57,demod1_trigg:57,demod1_x:57,demod:57,demodul:[13,36,103,148,151],demodulation_acquisitioncontrol:[36,92],demodulation_frequ:[36,92],demonstr:[21,34],demontr:10,denot:[64,75,81,119],depend:[1,3,6,7,36,44,45,46,57,62,75,110,113,114,130,139,142,146,148,149,150,151,158],dependend:154,depends_on:148,deploi:[27,114],deprec:[30,69,114,135],deprecationwarn:[30,114],depth:61,deriv:[145,148],describ:[2,3,21,25,54,63,64,79,81,98,103,107,114,142,148,149,150,155,158],descript:[2,19,63,68,69,114,142,150,155,158],descriptor:100,design:[114,147,148,149,158],desir:[10,23,25,41,49,59,63,113,148],desktop:[31,42,154],destin:150,destruct:158,detail:[1,6,10,14,63,113,142,158],detect:[6,34,110,138],determin:[41,63,73,96,98,121],dev2235:57,dev:[2,5,27,28,43,132],develop:[4,103,143,153,154],deviat:29,devic:[4,41,43,44,51,87,91,95,97,98,100,103,107,110,112,113,114,136,158],device_clear:[41,87],device_descript:91,device_id:103,dft:[36,92],dg1062:[32,90],dg1062burst:108,dg1062channel:[32,108],dg1062z:32,dg1za195006397:32,dg4000:90,dg4062:108,dg4102:108,dg4162:108,dg4202:108,dhcp:41,diagon:145,diagram:148,dialogu:4,diamond:148,dicitonari:113,dict:[6,10,12,23,64,68,69,72,73,76,77,78,81,82,87,91,92,94,95,96,97,98,99,106,107,108,112,113,114,116,119,137,158],dict_kei:40,dictionari:[3,34,53,92,96,108,113,114,122,150,155,158],did:[3,26,148],didact:25,diff:114,differ:[1,2,3,6,7,10,11,14,21,22,23,38,50,58,64,70,81,96,99,103,110,112,113,114,142,145,146,148,149,150,151,153,158,159],differenti:69,difficult:[142,146,148],difficulti:[63,142],dig:[57,95,138],digit:[3,22,25,91,92,95,99,114,136],digital_amplitude_n:114,digital_high_n:114,digital_low_n:114,digital_method_n:114,digital_offset_n:114,digitis:12,dilut:107,dim:[13,60],dimens:[7,21,64,69,75,81,147,158],dimension:[1,69,70,107,148],dio:91,dir:[2,114],direcli:7,direct:[7,44,54,64,80,81,92,98,142,148],directli:[1,2,3,7,13,20,21,34,44,45,46,53,57,59,70,79,107,114,146,148,149,151,158],directori:[2,3,14,63,68,70,71,114,117,119,142,154,155],disabl:[36,54,62,66,70,105,112,151],disadvantag:158,disallow:148,disappear:158,disc:114,discard:155,disconnect:[41,112,155,158],discov:90,discret:158,discuss:[142,152],disk:[11,14,24,34,70,71,73,114,119,146,158],diskio:[24,70,72,117,119,128,145],displai:[0,1,3,6,7,9,10,13,15,18,26,28,30,31,33,34,35,36,37,40,41,49,50,51,52,55,57,58,60,61,63,110,113,114],display_clear:[26,28,31,104,114],display_format:60,display_grid:[50,110],display_norm:114,display_refer:60,display_scal:60,display_settext:[3,38],display_sij_split:50,display_single_window:50,display_text:[26,28],disregard:63,dissip:158,distanc:63,distinguish:30,distribut:153,div:[49,52],dived:90,divid:[82,90,136,137,151],divider_r:114,divis:[22,52,90],division_valu:90,divsion:90,dll:[43,91,92,112,151,158],dll_path:[3,92,112],dma:[91,92],dmm:[6,8,24,25,26,28,31,104,138,139],dmm_data_buff:31,dmm_idn:24,dmm_v1:24,dmm_v2:24,dmm_volt:28,dmm_voltag:25,do1d:8,do2d:8,do_acquisit:92,do_get_frequ:110,do_get_pow:110,do_get_pulse_delai:110,do_get_statu:110,do_get_status_of_alc:110,do_get_status_of_modul:110,do_set_frequ:110,do_set_pow:110,do_set_pulse_delai:110,do_set_statu:110,do_set_status_of_alc:110,do_set_status_of_modul:110,doc:[7,11,24,100,142,151,154],docstr:[3,21,41,64,74,81,82,114,142],document:[1,6,10,18,19,30,59,64,74,81,82,92,114,131,132,134,136,140,142,146,153,154,158],doe:[1,4,6,7,10,13,14,24,25,34,41,42,50,54,56,57,59,63,69,72,75,79,80,87,90,91,95,97,98,100,104,106,107,110,112,113,114,132,142,146,148,150,158],doesn:[3,4,21,53,69,91,114,142],dofastsweep:[27,38,114],doing:[5,36,41,50,142,158],domain:[57,107],domin:153,dominik:142,don:[1,3,4,5,7,14,15,19,52,73,84,85,94,99,114,142,150,158,159],dond:[18,41,151],done:[1,14,25,29,41,42,44,53,54,57,92,107,134,146,158,159],doneyet:6,door:41,dot:[2,142,155],doubl:[72,114,151],double_dataset:5,doubledata:[5,14],doubt:[57,142],dovog:[43,142],down:[3,6,13,24,38,41,42,51,53,54,59,142,148],downhil:6,download:[43,57,92,113,151,154],dp821:90,dp831:90,dp832:[90,151],dp8xx:[90,108],dp8xxxxxxxxxx:48,drain:148,dramat:158,draw:[40,41,63,148],drive:[98,114,148,149],driver:[4,13,20,21,25,32,33,36,38,44,45,46,49,50,51,52,53,57,59,60,61,62,90,91,92,93,94,95,96,98,99,100,103,104,105,106,107,108,110,112,113,114,115,116,132,134,135,136,137,138,139,140,142,153,157,158],driver_path:[43,97],driver_vers:[36,92],drivertestcas:90,drop:[56,132],drown:63,ds4000:90,dso:92,dtype:[11,16,30,150],due:[3,29,45,46,49,57,63,94,158,159],dummi:[6,8,20,25,30,36,118,151,159],dummy_2d_multi_paramet:6,dummy_set:36,dummychannelinstru:6,dummyinstru:[6,8,11,20,23,24,25],dump:92,duplic:[3,114],dur:[57,58],durat:[46,57],dure:[1,31,42,82,84,88,92,114,130,148,158,159],dut:[50,60,148],dwell:41,dynam:[45,46,91,151],e1cb66:53,e8267:104,e8267c:[90,136],e8267d:140,e8527d:[90,95,142],each:[0,1,3,4,5,6,10,11,12,14,17,21,23,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,41,42,44,45,46,49,50,52,53,54,57,60,62,63,64,69,70,73,74,75,76,79,81,82,84,91,92,98,99,100,103,108,113,114,120,121,122,142,145,146,148,149,150,153,158,159],eachot:159,earli:52,earlier:92,eas:146,easi:[4,13,20,36,142,145,146,148,153],easier:[103,139,140,142,158],easiest:2,easili:[1,6,25,62,114,150,153],echo:94,ect:146,edg:[34,36,49,52],edit:[63,154],editor:142,ee82e:53,effect:[49,63,92,114,148,155],effort:[3,146],eight:[45,46],either:[1,3,7,38,45,46,49,57,73,91,96,105,107,108,114,121,148,150,154,158],elaps:[12,31,35,37,151],elapsed_times_lvl:18,elapsed_times_r:18,electron:[3,153],elem1m1ch1:114,elem1m1ch2:114,elem1m2ch1:114,elem1m2ch2:114,elem2m1ch1:114,elem2m1ch2:114,elem2m2ch1:114,elem2m2ch2:114,element:[1,34,53,58,114,121,150,155,158],element_no:114,elemnum:53,elif:35,elnum:53,elpi:142,els:[2,6,10,11,31,34,41,42,50,54,91,114,142,148],elsewher:[122,148],emac:142,email:[142,152],embed:1,emerg:148,emit:[13,151],emoji:142,empow:63,empti:[2,14,15,21,25,35,53,94,110,150],emwri:13,enabl:[36,41,57,60,61,62,63,82,105,112,116,146,155],enable_forced_reconnect:[2,155],enable_record_head:[36,92],enable_remot:100,encapsul:[34,158],enco:31,encod:[31,74,82,91,150],encount:[91,96],encourag:[3,57,142],end:[3,6,14,15,23,63,72,84,87,91,92,110,114,142,146,149,150,153,158],endpoint:[26,114],enforc:[8,146,148],engin:36,enough:[4,6,25,91,96,107,142,145],ensuer:7,ensur:[34,49,52,60,92,107,113,142,146,148,150,154,158],entail:11,enter:[64,81,154,158],entir:[10,33,36,39,56,110,113,122,148,158],entri:[2,73,79,81,92,114,128],entrypoint:130,enumer:[6,8,10,57,58,112,149],enumerate_devic:97,env:[2,30,31,68,154,155],env_file_nam:[2,68],envelop:49,environ:[2,153,155],envis:146,eom:4,equal:[113,150,155],equip:[148,150],equitim:113,equival:[21,114,150,153],err:[98,112],error:[0,2,3,4,18,31,35,45,51,56,59,69,79,82,91,95,98,100,113,114,138,150,151,155,159],error_cod:[98,100],errorcod:91,errormsg:91,escap:18,especi:[63,154],esr:113,essenti:[25,104,113,149,150],establish:[41,59,148,149],estim:[63,148],etc:[1,3,21,24,38,50,64,69,74,81,114,142,148,150,158],ethernet:[3,4,47,48,76,114],etr_2v5:36,etr_ttl:36,eumer:85,evalu:86,even:[4,6,21,28,34,45,46,59,71,73,82,84,85,87,91,95,97,98,99,106,112,113,114,142,148,150,158],event:[53,54,57,91,92,94,113,114,151],event_input_imped:114,event_input_polar:114,event_input_threshold:114,event_jump:[29,34,54,114],event_jump_to:[29,34,54,114],eventu:[19,54],ever:149,everi:[1,3,6,12,24,32,34,67,70,79,89,103,113,150,154,158,159],everybodi:142,everyon:142,everyth:[15,53,57,72,128,142,148,150],exactli:[10,20,31,42,49,92,142,148,149,150],examin:[60,107],examp:151,exampl:[0,1,2,7,10,21,22,23,24,64,65,69,72,81,82,85,87,92,95,96,98,108,113,114,136,140,142,145,147,149,153,154,155,156,159],examplewaveform1:54,exce:[42,142],exceed:[12,53,91,107],excel:4,except:[2,3,18,30,31,32,42,56,59,62,91,93,94,95,97,98,105,107,108,113,114,116,123],excitation_mod:41,excitation_range_numb:41,exclus:[96,146],exec_funct:[31,42],exec_str:31,execut:[14,25,31,49,57,74,86,90,91,100,103,110,112,114,145,153,154,158],executor:159,exemplifi:[11,57],exept:57,exercis:[142,148],exis:50,exist:[3,6,8,13,15,18,25,41,50,53,72,73,85,91,114,117,119,140,142,146,148,150,153,155,158],exit:114,exit_kei:114,exmapl:19,exp:[5,6,8,15,56,62],exp_2:14,exp_container_tutori:[5,6,8,9,10,12,14,15],exp_id:[5,14,15],exp_nam:62,expand:[63,95,143],expect:[2,3,6,8,11,31,35,51,57,61,64,73,79,81,91,95,96,99,113,114,142,146,150,159],experi:[5,7,8,9,13,18,23,25,62,63,68,146,147,148,150,151,153,155,158],experiment:[6,7,8,9,10,11,13,51,62,63,148,150,153,158],experiment_contain:[6,7,8,9,11,12,14,62],experimentalist:148,experimentcontain:150,expir:31,explain:[10,14,41,142,146,148,149,151,154,155],explan:113,explanatori:60,explicit:[53,82,84],explicitli:[10,64,69,81,142,158],explor:[25,114,148],exponenti:[6,93],exponential_decai:6,exponentialdecai:54,export_data_as_json_heatmap:16,export_data_as_json_linear:16,expos:[41,42,99,110,155],express:[82,148,158],ext:[31,32,39,54],ext_trigg:33,extend:[53,75,84,96,110,150],extens:[54,75,112,114],extern:[10,36,39,92,110,112,114,150],external_add_n:114,external_clock:36,external_clock_10_mhz_ref:3,external_clock_10mhz_ref:36,external_clock_ac:3,external_reference_typ:114,external_sample_r:[36,92],external_startcaptur:[36,92],external_trigger_coupl:[36,92],external_trigger_rang:[36,92],externalrefparamet:112,extra:[21,28,64,81,82,95,97,98,107,114,116,142,149,158],extra_schema_path:2,extract:[96,107],extrainfo:112,extran:151,extrem:158,f008:107,f1d:90,face:146,facilit:[146,154],fact:[10,112,142,148],facto:148,factor:[3,45,46,57,148],factori:[93,114],fail:[2,139,142,158],failur:3,fairli:63,fairlt:10,faith:148,fake:41,falcon:142,fall:[14,34,110,114],fals:[2,6,10,13,16,21,24,30,31,35,37,41,45,46,50,56,57,61,62,63,64,69,70,81,82,83,93,94,95,99,100,104,105,107,108,110,113,114,119,150,155,158],familiaris:24,fanci:151,faq:157,far:[42,63,148],fast:[99,107,114,140,151,158],fast_external_clock:36,faster:[11,50,53,139,142],fastest:[53,57],fastsweep:38,fatol:6,favourit:[24,154],feasibl:[4,153],feat:142,featur:[1,3,4,10,34,61,63,132,136,137,138,139,140,143,153,155],fed:148,feed:[3,41,106,113],feedback:[85,148,151,158],feel:[10,61,142],fetch:[28,107],few:[23,39,50,74,95,103,142,147,152],fewer:[45,46],ff4500:53,ff8c00:53,fft:103,fgen:54,fgen_amplitud:54,fgen_dclevel:54,fgen_frequ:54,fgen_offset:54,fgen_period:54,fgen_phas:54,fgen_signalpath:54,fgen_symmetri:54,fgen_typ:54,field:[23,40,41,42,59,64,74,75,81,82,105,107,153,159],field_limit:[42,59,105,107],field_measur:59,field_persist:42,field_ramp_r:42,field_target:[42,59],field_target_cartesian:59,field_target_cylindr:59,field_target_spher:59,field_valu:107,field_vector:59,fieldvector:59,fifo:36,fifo_only_stream:[36,92],fig1:30,fig:[1,7,10,15,18,34,40,41,50,53,57,59,146,148],fig_x_po:120,fig_x_posit:120,fig_y_po:120,fig_y_posit:120,figax:10,figsiz:[1,25,34,120,121],figur:[1,10,30,31,34,53,57,62,120,121,142,149,158],figure_api:1,file:[2,6,8,10,15,18,25,34,54,63,68,70,72,73,75,91,92,100,107,112,114,117,119,133,142,151,154,157,158],file_loglevel:[2,155],file_path:114,filenam:[30,53,54,58,68,114],filepath:[18,53],filestructur:114,fill:[10,21,23,25,33,62,63,79,114,158],filter:[57,60,103],filter_slop:33,filw:114,final_simplex:6,finalis:18,find:[19,32,35,43,61,72,92,108,142,146,148,151,152,154,155],find_board:[36,92],find_modul:113,findal:107,finder:25,fine:[6,100,158],finish:[1,11,23,24,25,27,28,36,50,57,60,92,98,105,114,116,134,158],finit:[32,45,46,99,100],fire:[45,46],firmwar:[3,4,13,24,25,26,27,28,29,30,31,32,33,34,36,38,39,40,41,42,43,44,47,48,49,50,51,52,54,56,58,59,60,61,62,91,92,94,95,97,98,106,107,110,112,113,114,137],first:[1,2,4,6,7,8,10,12,14,21,23,24,25,28,29,31,32,34,36,39,41,44,50,53,58,59,61,63,64,69,75,81,82,86,93,105,114,120,121,142,148,150,151,154,158,159],first_delai:31,first_exp:14,first_param_list:6,fit:[34,53,60,92,113,142,148,150],five:[63,112],fix:[22,41,49,57,59,69,74,84,107,132,133,137,138,139,140,141,142,158,159],fixabl:142,fixtur:[4,9,90],flag:[45,46,92,100,112],flake8:142,flat:34,flavor:158,flexibl:[6,57,145,146,153],float_round:116,flow:[45,46,56],flower:11,flush:[39,113,114,146],flush_error_queu:[39,95],fly:[14,15],fmt:[2,23,25,72],fmt_counter:72,fmt_date:72,fmt_time:72,fname:114,focus:142,folder:[2,3,4,14,19,71,75,114,155],follow:[1,3,4,6,10,12,18,20,25,26,34,39,40,41,53,58,59,60,62,63,82,94,96,114,142,148,149,150,154,155,158,159],foo:[16,142,150,155,159],footer:142,forbidden:10,forc:[35,37,50,53,114,146],force_ev:114,force_logicjump:114,force_reload:114,force_trigg:[52,114],force_trigger_ev:114,force_triggera:114,force_triggerb:114,foreground:[139,158],foreground_color:120,foreign:91,forev:96,forg:[58,114],forget:19,fork:142,form:[3,4,6,27,58,74,92,107,148,150],format:[3,6,7,10,11,23,25,26,27,28,29,30,31,38,40,41,42,45,46,50,53,54,56,57,59,70,72,74,75,91,96,110,114,117,119,150,153,155,158],formatloc:[2,23,25,119,128,145],formatt:[17,24,70,117,119,128,136,145,151,155,158],formattedsweep:95,former:[27,28],formerli:[3,4,115],formul:146,formula:96,forth:6,forward:[36,71,92,132],foul:53,found:[3,4,14,42,50,53,73,86,91,92,96,100,113,114,142,149,151],four:[3,61,91,108,148],fourier:92,fourth:150,fpga:92,fpt:32,fraction:120,framework:[34,142,153,158],free:[6,61,91,97,150,154],free_mem:92,freedom:82,freeli:[148,150,158],freq:[13,32,50,58,108,112],freqfactor:13,frequenc:[3,11,25,33,34,50,57,58,60,62,92,93,110,112,113,114,148,151,159],frequency0:11,frequency1:11,frequency2:11,frequency_ext:[34,113],frequency_set:50,frequencysweep:[110,112],frequencysweepmagphas:110,frequent:[12,34,142],freshli:154,fridg:[107,151,153],friendli:103,from:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,20,22,23,24,25,26,27,28,29,31,32,33,35,36,37,38,39,40,41,43,44,45,46,49,50,51,53,54,56,57,58,59,60,61,62,63,64,69,70,72,73,74,75,79,81,82,91,92,93,95,96,99,100,103,104,106,107,110,112,113,114,116,117,118,121,122,138,142,144,145,148,149,150,151,153,158,159],front:[57,100,114],frontend:155,full:[0,7,18,34,39,44,45,49,56,57,63,70,75,113,114,117,119,150,153],full_nam:[0,16,24,25,36,69],full_trac:50,fulli:[10,49,50,57,63,142],fullrang:100,fun:[6,12,99],func:[3,31,86,114],func_nam:35,function_typ:13,functool:[6,8,60],fundament:158,further:[19,63,108,145,153],furthermor:[1,6,10,59,103],futur:[44,114,142,146,159],gain:[22,106,113,148],garbag:92,gate:[6,8,11,14,15,23,24,25,39,65,94,145,148,158,159],gate_frequ:159,gate_frequency_set:159,gauss:[6,8],gauss_model:[6,8],gaussian:[6,8],gave:53,gcc:91,gd_ch1:32,gee:57,gen:114,gener:[3,4,6,8,10,13,25,29,32,34,39,49,52,53,59,61,62,70,72,84,91,93,95,100,103,104,108,110,112,113,114,136,140,142,145,147,150,151,153,155,158],generate_awg_fil:[30,114],generate_channel_cfg:114,generate_sequence_cfg:114,geograph:155,get:[0,2,3,4,6,7,8,10,11,13,20,21,22,23,24,25,26,30,31,34,35,36,37,38,40,41,42,45,46,49,51,52,55,56,57,59,60,62,63,64,65,69,73,80,81,82,90,92,95,98,99,100,103,106,107,108,110,112,113,114,122,142,148,150,151,155,158,159],get_al:[100,107,110,114],get_arrai:63,get_board_info:92,get_buffers_en:100,get_capture_data:[34,113],get_chang:107,get_cmd:[3,4,10,11,25,82,83,92,107,159],get_compon:[42,59],get_current_folder_nam:114,get_data:[7,15,40,96,150],get_data_by_id:[7,11],get_data_channels_dict:[34,113],get_data_channels_paramet:[34,113],get_data_channels_valu:[34,113],get_data_set:[0,1,25,26,27,28,31,60],get_error:114,get_filenam:114,get_filter_valu:100,get_folder_cont:114,get_idn:[3,36,44,91,92,94,95,97,98,100,106,107,112,113,114],get_instrument_valu:90,get_jumpmod:114,get_last_error:98,get_latest:[52,57,64,81,82],get_list_of_first_param:6,get_metadata:150,get_mod:100,get_module_idn:113,get_module_statu:113,get_num_channel:92,get_number_of_channel:97,get_opt:95,get_paramet:150,get_pars:[3,4,82,83],get_parser_on_off:110,get_pol_dac:100,get_preambl:108,get_processed_data:[36,92],get_raw:[11,13,57,90,93,95,108,110,112,113,114],get_remote_set:100,get_sample_r:92,get_shaped_data_by_runid:6,get_sq_mod:114,get_sqel_loopcnt:114,get_sqel_trigger_wait:114,get_sqel_waveform:114,get_stat:114,get_v:6,get_valu:[34,113],get_voltag:113,get_ydata:[40,41],getattr:3,getcwd:[7,11,18,53],getlogg:[17,52,53,57,61,62],gettabl:[3,10,21,64,81,82,106,113,118,145,158],getter:[4,31,145],getx:159,ghz:[60,62],giga:102,giga_b:102,gimm:39,git:[35,151,153,154],github:[142,144,145,151,153],giulioungaretti:142,give:[1,4,21,25,32,41,59,60,61,62,63,79,94,107,114,142,158],given:[0,1,6,12,34,45,46,54,59,66,76,91,92,94,96,97,108,113,142,148,150,158,159],global:[3,49,50,98,151],glori:4,gloriou:12,gnuplot:[75,153],gnuplot_format:[17,18,24],gnuplotformat:[17,24,70,117,119,128,145,158],go_to:[29,34,54,114],goal:142,goe:[4,41,56],going:[3,20,34,61,100,148,149],golden:3,gone:[51,56],good:[2,3,10,13,25,40,42,52,54,57,110,142,146,147,149],googl:142,got:[18,28,142],gotexcept:30,goto_l:30,goto_root:114,goto_st:[53,114],goto_to_index_no:114,gotten:[39,45,46,53,158],gpib0:[13,33,34,35,37,40,56,60],gpib:[3,4,41,62,114,116],grab:154,grade:63,gradient:63,grai:[63,120],grant:148,graph:[25,60,64,81,82,148,150],graphic:148,graphicswindow:120,great:[49,142],greatest:158,green:34,grei:63,grid:[10,34,50,110,146],grim:15,ground:[49,96,110],group:[1,3,18,77,91,108,110,142,148,149,153,158],group_delai:62,group_paramet:41,groupparamet:41,grow:[148,152],grpx:[42,107],grpy:42,grpz:42,gs200:[90,135,140,151],gs200_monitor:116,gs200except:116,gs210:151,guarante:[2,34,42,113],gui:[1,2,31,37,57,142,153,155],guid:[1,92,140,142,149,152,154,155],guid_compon:155,guidelin:142,h5fmt:17,hack:[114,142,155],hackish:30,had:[11,53,91],half:[10,34,41,57,63],halfrang:100,halt:88,hammer_tim:23,han:53,hand:[7,10,53,54,63,146],handel:112,handl:[3,4,6,21,64,69,70,74,81,91,92,95,99,100,112,120,139,145,148,150,151],handle_buff:92,handle_clos:1,handler:[17,95],hang:142,happen:[3,6,45,46,53,69,86,92,148,158],happi:[142,151],hard:[114,142,149],harder:[142,158],hardwar:[45,46,53,58,59,62,94,97,98,100,107,110,112,114,142,145,158],harm:[32,108],harmon:33,harvard:90,has:[1,3,6,10,11,12,21,24,25,33,34,38,39,41,44,45,46,49,51,52,53,56,57,59,61,62,63,64,69,75,81,82,91,92,95,96,103,105,112,113,114,142,148,149,150,155,158,159],has_current_r:105,has_pid:96,hasattr:[31,35,42],hasn:[3,91],have:[1,2,3,4,5,6,8,10,12,13,14,15,20,21,23,24,25,34,38,41,42,44,45,46,50,52,53,54,57,58,59,60,61,62,63,64,69,73,75,80,81,82,85,90,91,92,93,94,95,96,97,99,100,103,106,110,113,114,121,142,145,146,148,150,152,153,154,155,158,159],haz:134,hdf5:[136,158],hdf5_format:17,hdf5format:17,head:114,header:[36,39,91,142],heart:148,heat:[63,151],heater:[96,107,151],heater_1:40,heater_off:107,heater_on:107,heatmap:[16,120,121,148,155],heck:149,height:[120,121],helium:[107,139],help:[2,3,19,53,57,58,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,95,108,114,118,120,121,122,142,148,153,158],helper:[2,17,53,103,128,155],henc:[34,41,94,96],here:[1,3,4,6,7,10,13,14,21,33,34,36,38,40,41,43,44,45,46,49,50,57,63,69,91,95,96,97,98,99,103,106,107,112,113,114,118,142,148,149,150,154,158],hesit:142,hewlett:[60,93],hidden:61,hierarch:146,hierarchi:143,high:[3,11,25,34,49,54,63,96,110,114,142,146,158],high_definition_bandwidth:49,high_definition_st:49,higher:[59,147,155,158],highest:[14,72,155,158],highlevel:31,highli:[6,154],highz:32,hislip0:28,hist:63,histogram:63,histori:[114,142],hiswaveform:30,hkey_current_usersoftwareoxford:107,hmc8041:90,hmc8042:90,hmc8043:[47,90],hmc804x:[90,110],hmc:151,hold:[3,6,12,14,28,33,38,42,57,93,95,107,110,113,114,145,148,149,150,158,159],hold_repetition_r:114,holdoff:57,hole:151,home:[2,7,11,14,63,68,142,155],home_file_nam:[2,68],homepag:154,homogen:151,hood:6,hook:[10,90],hopefulli:61,horisont:[52,57],horizont:[52,151],horizontal_scal:52,host:[45,46,92],hot:2,hotfix:142,hound:[51,112],how:[2,3,6,10,11,14,20,21,25,41,44,50,53,57,59,60,63,64,73,75,79,81,82,84,85,92,107,120,142,144,145,148,149,151,152,158,159],howev:[4,7,10,32,42,49,50,59,63,92,142,146,148],hp33210a:90,hp8133a:90,hp8753d:[90,140,151],hp8753d_tutori:60,hp8753dtrace:93,hp_83650a:90,hpintpars:93,htm:[95,100],html:[1,4,43,87],http:[1,4,43,87,95,100,113,142,144,151,154],hub:41,huge:[64,81],human:[3,25,97,135,149],hw42000000:47,i3d:59,iPS:[136,151],ib_command_find:95,id1:75,id2:75,id3:75,idea:[3,25,54,110,142,148,149,151,152],ideal:142,ident:[3,21,38,103,114,159],identi:32,identif:155,identifi:[64,70,73,75,77,81,82,94,96,107,113,149,150,155],idl:[55,114,151],idn:[3,4,24,25,30,33,36,38,42,49,54,55,60,91,94,95,97,98,99,100,106,107,112,113,114],idn_dict:4,idn_param:94,idr:107,iew:63,if_bandwidth:62,iff:114,igh:107,ignor:[50,54,64,81,86,92,114],ignore_kwarg:31,igor:153,ill:148,illustr:[1,60,148],ilm200:90,ilm:[107,139],imag:[15,63],imagin:12,imaginari:[50,62],imedi:41,imm:[28,34,39,113],immedi:[25,26,32,39,44,45,46,66,71,92,103,113,122,142,146,151,158],immut:150,imp:30,impact:158,imped:[3,4,25,36,49,57,92,110,151],impedance1:36,impedance2:36,imper:142,implement:[36,41,59,61,62,63,73,76,84,85,91,92,95,96,97,103,107,110,112,113,114,122,146,149,151],implic:5,implicit:142,implicitli:158,import_dat_fil:9,importantli:[34,146],importlib:17,impos:158,imposs:6,improv:[141,142,150],imprrov:137,imshow:15,inc:[27,38,59],inch:121,includ:[3,21,26,34,63,64,72,81,82,84,87,91,95,97,98,104,106,107,112,113,114,118,120,121,142,145,148,150,151,152,153,155,158,159],include_decim:92,inclus:114,inconsist:158,inconsistensi:114,inconsit:52,incorrect:[4,10,92,142],increas:[7,10,21,49,59,63,142,149],increment:[75,82,138,158],ind:57,inde:[12,13,56,59,60,142,148],indend:57,indendet:[61,62],indent:142,independ:[6,8,73,146,148,150,151,158],indepent:151,index0:21,index1:21,index:[1,18,21,96,99,100,114,121,150,158],indic:[0,1,59,63,69,96,114,150,158,159],indirectli:34,individu:[1,6,7,10,11,32,34,41,44,50,59,62,66,70,84,95,100,105,112,151],induc:[63,148],inf:[31,32,39,45,46,95],infer:[69,146,148,150],inferred_from:148,infin:114,infiniium:[13,90,140,151],infiniiumchannel:95,infinit:[32,53,54,114],infinium:61,info:[2,3,12,16,31,37,57,72,92,114,152,155],inform:[3,12,14,24,25,29,34,36,54,64,72,76,81,82,87,92,112,114,120,139,142,148,150,153,155,158],infrastructur:151,inherit:[31,92,110,114,150],inifit:[45,46],init:[42,94],init_measur:[28,31,104],init_s_param:[50,110],initi:[1,3,25,44,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,90,91,107,113,114,117,118,119,120,121,122,148,151,153,158],initial_valu:[1,3,21,22,80,82],initialis:[4,13,24,31,95,108,110,114,151],initialise_databas:[5,6,7,8,9,10,12,14],initialise_or_create_database_at:[11,63],initialz:100,inlin:[61,62],inner:[0,1,21,69,75,158],inp:96,input:[2,3,13,31,35,41,42,53,59,61,74,82,90,91,92,96,100,107,110,112,113,114,142,145,150,151,158],input_channel:[40,41],input_config:[33,34],input_coupl:33,input_imped:3,input_rang:34,input_shield:33,insert:[3,6,7,11,12,61,62,72,146,151,155],insert_data:7,insertseg:58,insid:[2,3,11,21,26,42,64,66,70,79,81,96,107,114,117,119,142,148,151,153,158],insist:148,inspect:[2,6,14,59],inst0:[3,13,26,27,29,30,31,34,38,39,47,48,49,50,53,54,58,61,62,108,110],inst1:6,inst2:6,inst:30,instal:[57,87,91,100,103,112,113,116,130,139,140,142,144,153],instanc:[1,2,3,25,30,34,64,70,74,81,82,90,92,94,96,100,103,106,107,113,114,148,158],instance_id:97,instant:91,instantan:[45,46],instanti:[3,4,32,36,38,57,60,70,99,105,142,151,155,158],instdict:53,instead:[0,1,10,13,14,22,25,30,34,57,63,69,97,98,107,114,159],institut:3,instr:[3,4,13,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,45,46,47,48,49,50,52,53,54,56,58,60,61,62,94,107,108,110],instruct:[4,59,140,148,153,154],instrument:[0,6,7,8,11,18,21,22,26,27,30,31,33,34,35,36,37,38,39,41,42,43,45,46,47,48,49,50,53,54,55,56,57,59,60,64,66,69,74,76,78,80,81,82,83,87,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,113,114,115,116,128,137,139,140,142,143,150,151,153,154,155,157],instrument_cod:82,instrument_config:2,instrument_driv:[3,4,13,18,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,142],instrument_i:105,instrument_mock:[6,8,11,17,20,23,24,25],instrument_nam:[24,25,36,69],instrument_testcas:90,instrument_x:105,instrument_z:105,instrumentchannel:[3,66,94,95,96,97,98,99,103,105,107,108,109,110,111,113,114,116,128],instrumentrefparamet:137,instrumentserv:[158,159],instrumentstriton:107,instur:34,insuffici:158,intact:10,integ:[3,6,14,21,64,69,72,81,91,113,114,116,121,149,155,158],integr:[1,4,13,35,37,38,142,150,154,158],intellig:[107,158],intend:[59,64,81,85,92,112,149,158],intent:147,intenum:112,inter:[32,63,100],inter_delai:[24,25,36,82,100],interact:[1,3,34,40,41,96,113,142,151,158],interchang:149,interdepend:[147,149,158],interest:[41,57,63,142,148,158],interfac:[3,4,41,57,91,96,97,108,114,146,147,151,158],interleav:[36,114,151],interleave_adj_amplitud:114,interleave_adj_phas:114,interleave_sampl:[36,92],intermedi:142,intermix:150,intern:[3,7,11,33,34,36,39,54,57,59,69,82,92,95,103,107,113,114,151],internal_clock:[3,36],internal_trigger_r:114,interpret:[25,38,148,150,158],interrupt:[91,151,156],interv:[12,63,120,121,146],intervent:146,intrins:146,introduc:[132,140],introduct:[147,151,157],intrument:54,intuit:148,inv:39,invalid:[3,96,148,151],invalidate_trac:93,invert:[3,22,37,49,106,110,113,148],investig:[5,29],invit:142,invok:[3,57,150],involv:[24,151,153,158],io_manag:[70,117,119,158],iomanag:145,ion:[40,41,57],ipinstru:[3,91,95,97,98,105,106,107,112,113,114,128,145],ips120:[90,139],ipykernel:30,ipynb:14,ipython:[0,1,2,6,7,9,10,13,15,18,30,31,33,34,35,36,37,40,41,42,49,50,51,52,55,57,58,60,153,154,155],ipywidget:[40,41],iq_arrai:21,iqarrai:21,iqr:63,irang:[3,46,99],irrelev:54,irrespect:[45,46,49,114],irrevers:[54,91,97,158],is_awg_readi:114,is_empti:150,is_marked_complet:150,is_numb:108,is_setpoint:[16,24,69],is_typ:2,isobu:107,issu:[59,114,134,135,138,142,145,147],issue_warning_on:31,ital:145,item:[21,55,64,72,81,84,99,150],iter:[66,84,85,145,150],iter_error:2,ithaco:[3,90,151],ithaco_1211:[3,37,90],its:[1,3,4,6,8,21,24,25,26,34,41,44,45,46,49,53,57,58,63,69,74,82,91,92,97,107,113,114,118,121,142,145,148,149,150,158,159],itself:[13,22,41,61,66,72,82,92,96,114,142,148,150,158],iv_sweep:[27,38],ivvi:[34,90,136,138,139,140],javascript:[0,1,6,7,9,10,13,15,18,30,31,33,34,35,36,37,40,41,49,50,51,52,55,57,58,60,142],jen:[142,152],jeniels:2,jhn:50,jhnsrcqcodesqcodesinstrumentparamet:57,job:[158,159],jog:98,join:[2,7,11,12,18,34,53,142,152],jorgenschaef:142,json:[2,6,10,14,24,50,63,64,68,76,77,81,82,87,99,113,114,136,150,151,153,155,158],json_config:2,json_export:16,json_template_heatmap:16,json_template_linear:16,jsonschema:2,jtar_index_no:114,jtar_stat:114,jump:[25,53,54,100,114],jump_log:114,jump_tim:114,jump_to:[53,114],jumplog:114,jupyt:[1,25,41,153,154,156],just:[0,3,8,10,20,25,26,28,34,38,41,52,53,57,61,74,75,88,94,96,99,100,113,142,145,148,154,157,158,159],keep:[14,58,59,63,73,92,94,112,137,142,153,155,158],kei:[1,3,13,15,34,40,41,53,70,84,96,113,114,119,122,149,150,155,158],keightlei:137,keith:[27,35,37,38,135],keith_smua_curr:27,keith_smua_iv_sweep:27,keith_smua_volt_set:27,keithlei:[3,27,114,132,136,140,151],keithley1:[35,37],keithley2:[35,37],keithley_2000:90,keithley_2400:90,keithley_2600:[3,27,35,37,38,90],keithley_2600_channel:[3,27,38,90],keithley_2614b:[3,114],keithley_2700:90,keithley_smua:38,keithley_smua_iv_sweep:38,keithley_smub:38,keithleychannel:[3,114],kelvin:[40,41,96],kelvinox:[90,139],kept:[148,149,155],kernel:[14,155,156],keysight:[13,25,90,136,137,138,139,140,151],keysight_33500b:[25,39,90],keysight_33500b_channel:90,keysight_34460a:90,keysight_34461a:90,keysight_34465a:[26,28,31,90],keysight_34470a:90,keysight_344xxa:95,keysight_b2962a:90,keysight_e8267d:90,keysight_m3201a:95,keysight_n5183b:90,keysight_setup:13,keysight_teardown:13,keysight_volt:26,keysightagilent_33xxx:[13,90],keysightchannel:95,keyword:[10,14,34,63,72,74,86,150],khz:[3,49,50,51,52,60],kid:12,kilo:102,kilo_b:102,kind:[0,34,57,114,148,159],kmstring:3,knob:[3,158],know:[6,18,25,34,41,54,84,85,142,150,159],known:[3,4,10,41,69,92,115,148,150],knownmodel:3,kwarg:[1,2,3,4,6,21,31,35,36,42,74,76,77,78,80,82,83,85,86,87,92,93,94,95,96,97,99,100,103,104,105,106,107,108,110,112,113,114,115,116,119,120,121,122,132,150,159],lab:[41,57,103,153],label1:75,label2:75,label3:75,label:[0,1,3,7,10,11,13,14,18,21,24,25,30,34,36,41,53,57,64,67,69,72,75,81,82,89,90,93,95,114,142,149,158,159],laboratori:148,lack:94,lake:40,lakeshor:[90,151],lakeshore_372:41,lakeshore_bas:90,lakeshore_model372:41,lakeshorebas:96,lambda:[6,20,25,59,65],lan:41,languag:[75,107,146,148],laptop:41,larg:[4,53,82,95,108,114,142],larger:[7,82],last:[1,2,12,24,31,35,42,49,57,62,68,82,92,99,103,114,140,142,158],last_count:62,last_saved_index:73,latenc:[25,26],later:[3,57,60,64,70,71,72,81,119,122,142,158,159],latest:[4,34,49,92,95,99,113,114,158],latest_cal_d:[36,92],latter:[27,28,121],launch:[103,154],layer:[146,148],layout:149,lazi:151,lead:[107,142,150],leak:92,learn:[4,57,153],least:[57,142,145,150,158],leav:[43,64,76,81,107,114,148],leave_persistent_mod:107,left:[1,10,23,92,110,120,150,154],legaci:[41,146,155],legacy_import:9,legacy_mp:155,legend:[7,18,30,34,50],len:[3,10,11,12,28,31,34,40,41,57,91,114,159],lenght:[6,7],length:[6,7,11,12,16,21,26,34,39,53,54,57,81,91,103,113,114,118,150,158,159],less:[4,8,13,60,82,142,150,158],lest:53,let:[1,4,6,8,10,11,14,15,23,24,34,36,38,41,44,49,50,54,56,59,60,63,69,120,142,148,155,159],letter:[97,142],leve:3,level:[2,3,6,16,25,30,31,34,36,49,51,60,61,69,75,107,113,114,116,139,142,146,148,151,155,158,159],levelnam:[6,17],levelv:3,lib:[2,30,31,35,138],librari:[31,53,91,107,142,154,155],lie:[5,14,63],lies:148,life:[12,142,148],light:24,like:[3,4,6,11,12,14,22,25,32,34,41,49,50,53,57,58,59,64,69,73,74,81,84,85,95,104,107,110,112,114,142,145,148,153,155,158],limit:[1,4,12,36,40,41,42,44,45,46,49,52,56,58,59,62,63,91,96,98,105,107,142,146,149,155,158,159],limit_func:107,limit_statu:44,limiti:38,limitv:38,lin:[57,60,112],linalg:59,line2d:[15,31,57,63],line:[3,4,6,10,15,20,24,25,29,31,35,37,38,40,41,43,57,63,75,120,121,142,152,153,154],linear:[0,16,22,24,50,60,159],linear_magnitud:62,linearli:[57,145],liner:142,linewidth:10,link:[19,69,85,91,92,145,149,154],linkag:143,linspac:[0,6,8,10,11,12,13,28,29,30,40,53,54,159],linux:154,list:[1,6,10,12,21,25,27,28,29,30,34,36,40,41,46,62,66,67,70,72,74,77,84,89,91,92,95,97,98,99,100,103,106,107,110,112,113,114,119,122,128,130,134,136,142,145,150,151,155,158,159],listcomp:31,liter:142,littl:[10,54,142,158],live:[1,10,40,41,117,144,151,158,159],live_plot_temperature_read:[40,41],load:[2,3,7,14,21,30,34,53,54,58,62,68,73,91,114,117,134,151,153,155,159],load_and_set_sequ:114,load_awg_fil:[30,114],load_by_id:[7,9,11],load_data:[25,70,128],load_experi:14,load_experiment_by_nam:62,load_ext:2,load_last_experi:[6,7],loaded_data:25,loadfrom:30,loadlibrari:3,loadseqxfil:[29,34,54,58,114],loadtestsfromtestcas:17,loadwfmxfil:[29,54,114],loc:[18,72],loc_fmt:23,loc_provid:[2,23,25,72],loc_record:119,local:[0,2,21,26,27,28,53,57,61,64,70,74,76,81,82,87,92,94,107,114,116,142,149,153,154,158,159],localnod:3,locat:[0,1,2,7,14,16,17,21,24,26,27,28,31,33,35,36,37,38,45,46,49,50,52,57,60,61,70,71,72,73,95,114,117,119,149,150,151,154,155,158,159],location1d:9,location2d:9,location_provid:[2,25,72,119,145],lock:[13,25,57,66,100,107,113,140,148,151],lockin:[3,33,34,106,113],lockin_ch1_databuff:33,log10:13,log:[2,6,11,12,16,17,18,20,30,31,40,41,52,53,57,60,61,62,96,103,112,153,155,159],log_analysi:18,log_tau:13,logarithm:13,logbook:148,logdata:18,logfil:151,logfile_to_datafram:18,logger:[17,52,53,61,62],logic:[77,114,142,148,150],logic_jump:[30,114],loglevel:[2,18,155],logo:134,lograng:84,logview:142,longer:[41,50,63,72,75,79,140,150],look:[3,6,10,12,13,14,20,25,41,45,46,49,52,54,57,61,63,72,87,142,148,154,155,158,159],loop:[0,1,6,21,23,27,28,31,35,36,37,40,50,52,57,60,62,64,65,69,70,73,75,81,82,86,88,92,95,96,114,118,122,128,132,134,145,146,150,151,157,159],loop_indic:31,loop_result:21,loopcount:114,loos:24,lose:28,lost:91,lot:[3,59,69,114,142],loudli:25,love:[142,152],low:[3,25,31,34,40,50,54,57,60,63,95,96,114,158,159],lower:[63,69,108,155,158],lowest:[72,113,146,155],lsa2251:40,lsci:40,lua:[27,38,114],luasweepparamet:114,lvl:18,m100l:44,m1s:[29,53,114],m2s:[29,53,114],m3201a:90,m3300a:[90,136],m3300a_awg:95,m3300a_dig:95,m4i:[135,136,138],mac:[35,37],machin:[14,27,36,114,142,148,149],maco:154,made:[2,4,12,57,103,107,148,155],mag:[60,62,95],magic:[23,53,155],magnet:[41,42,59,105,107,132,136,139,153,159],magnitud:[50,59,62,98,110,112,158],magnitur:50,mai:[2,3,4,7,10,11,12,14,15,24,25,29,38,45,46,49,50,52,53,57,63,70,73,74,84,85,95,96,98,112,114,120,121,130,142,145,146,148,149,150,151,155,158],mail:152,main:[1,24,34,92,114,158],mainfold:[2,155],mainfram:113,mainli:[25,42],mainplussub:58,mainseq:58,maintain:[3,106,113,142,143,150,152,158],major:[4,148],majorana:[10,14,15,155],make:[3,4,6,8,10,13,15,20,21,25,26,27,29,30,33,35,36,37,38,40,41,45,46,49,57,59,60,63,69,74,75,79,92,93,96,99,100,107,108,113,114,142,145,146,148,151,153,154,158],make_and_save_awg_fil:[53,114],make_awg_fil:114,make_directori:114,make_send_and_load_awg_fil:[53,114],make_seqx_from_forged_sequ:114,makeseqxfil:[29,34,54,114],makeseqxfilefromforgedsequ:58,makesinewf:30,makewfmxfil:[29,54,114],man:32,manag:[3,14,35,36,70,72,73,92,100,107,113,119,146,151,154,158],mandatori:[33,114,142],mani:[1,3,4,6,14,15,21,41,57,69,70,75,84,85,92,114,138,142,148,150,151,158],manner:53,manual:[2,22,32,34,38,40,41,50,57,58,59,62,63,92,95,96,100,104,106,107,108,110,112,113,114,146,151,153,158,159],manualparamet:[0,1,3,7,10,21,22,36,112,128,140,159],many_data:[5,14],manysinesincreasingfreq:30,map:[3,12,28,63,74,80,82,92,95,107,113,114,121,150,158],mappabl:63,mark:[63,113,149,150,158],mark_complet:[16,150],marker1:114,marker1_amplitude_n:114,marker1_high:[34,54],marker1_high_n:114,marker1_low:[34,54],marker1_low_n:114,marker1_method_n:114,marker1_offset_n:114,marker1_skew_n:114,marker1_waitvalu:54,marker2:114,marker2_amplitude_n:114,marker2_high:54,marker2_high_n:114,marker2_low:54,marker2_low_n:114,marker2_method_n:114,marker2_offset_n:114,marker2_skew_n:114,marker2_waitvalu:54,marker:[29,30,34,53,54,114],mashup:134,mask:92,mass:114,master:[47,58,142,151,154],match:[4,6,15,49,53,57,72,74,75,81,82,91,92,107,110,113,114,150,158],math:59,matlab:1,matplot:[0,25,33,36,38,49,50,52,60,61,128,137,140,151],matplotlib:[0,5,6,7,9,10,13,15,17,18,20,23,26,27,30,31,33,34,35,36,37,40,41,49,50,51,52,53,54,55,57,58,59,60,61,62,63,121,151,155],matter:[4,53,142],maunual:2,max:[39,41,61,62,63,75,82,100,112,113,114,155],max_delai:83,max_freq:95,max_frequ:113,max_imped:108,max_pow:95,max_sampl:[36,92],max_status_ag:99,max_subplot_column:1,max_val:94,max_val_ag:[82,83],max_valu:100,max_work:159,maxim:[6,8,45,46,63,114,155],maximum:[34,51,59,82,94,98,113,155,158],mayb:[69,79,142],mc_channel:97,mcl_rf_switch_controller64:[43,97],mea:[6,7,8,10,11,13,33,51,62,148],mead:6,mean:[2,3,5,7,12,21,24,27,28,29,41,49,50,54,57,59,79,82,98,107,114,142,148,155,158,159],meander:6,meaning:[3,63,148],meaningless:142,meant:[74,103],meantim:12,meas_bp_ch1:58,meas_bp_ch2:58,meas_elem:58,meassur:50,measur:[0,1,3,7,8,9,10,11,21,23,26,27,28,31,33,34,35,36,37,38,41,42,44,47,48,49,50,51,52,58,59,61,63,64,69,70,75,79,81,82,85,86,90,95,98,103,105,106,110,113,116,122,128,132,138,146,147,149,150,151,157],measure_gauss:[6,8],measure_posit:[44,98],measured_param:[3,106,113],measured_v:1,measured_val_2:1,measured_valu:85,measurement_freq:58,measurementsubsystem:95,measurerange_i:[27,38],measurerange_v:38,measureseq:58,meat:114,mechan:[100,148],media:114,medium:96,meet:150,mega:102,mega_b:102,member:[92,153],memori:[5,54,70,91,92,95,99,113,114,119,155,158],memory_s:[36,92],memrori:53,mention:[3,10,34,41,113,142],menu:154,mercuri:[136,151],mercuryip:[42,90],mercuryips_visa:[42,90],mercuryipsarrai:107,mercuryslavep:107,merg:142,merger:3,messag:[6,11,17,18,30,31,39,52,53,94,95,99,100,107,113,114],message_len:100,messagebas:31,messur:50,met:[82,92,130],meta:[15,20,57,153,157,158],meta_serv:159,meta_server_nam:159,metadat:[77,85,148],metadata:[3,15,25,37,64,69,73,76,77,81,82,87,90,97,113,128,136,146,147,148,153,158],metadata_fil:75,metal:41,meter:[3,23,25,38,107,114,139],meter_voltag:23,method:[1,2,3,6,7,13,21,25,27,28,34,41,42,45,46,53,57,59,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,90,92,96,97,98,99,103,105,107,112,113,114,118,120,121,122,142,150,154,158,159],methodnam:90,mhz:[49,50,57,62],mi4:132,miasta:142,microsoft:[112,142,152],might:[6,10,12,13,38,63,92,105,142,148,158],mikhail:142,millisecond:[113,150],millivolt:10,mimic:145,mimick:158,min:[39,63,100,114,155],min_count:[12,16,150],min_freq:95,min_imped:108,min_pow:95,min_val:94,min_valu:[21,100],min_wait:[12,16,150],mind:[58,63,92,148],mini:[43,60,75,97,140],minicircuit:[90,151],minicircuitshidmixin:97,miniconda3:2,minim:[6,54,57,146],minimum:[51,82,94,100,146,150],minor:132,minu:155,minut:[3,98],mip:42,mips_grpi:42,mips_grpx:42,mips_grpz:42,mips_r_target:42,mips_y_target:42,mirror:158,misc:128,misinterpret:53,mislabel:10,mismatch:91,miss:[142,151,159],mistak:142,mix:[3,142,150,154],mixer:100,mixin:97,mmem:30,mmemori:30,mock:[6,8,20,23,24,59,142],mockinstru:145,mockparabola:17,mockparabola_run:17,mode:[0,3,21,26,27,28,32,34,36,38,41,42,48,49,54,56,57,59,62,70,91,92,93,96,99,100,103,107,110,112,113,114,151,155,158,159],model:[3,6,8,24,25,27,36,37,38,40,42,44,54,60,63,91,92,95,96,97,98,105,106,107,108,110,112,113,114,142,145,151,155,158],model_325:[40,90],model_325_curv:96,model_325_heat:96,model_325_sensor:96,model_336:90,model_336_channel:96,model_372:[41,90],model_372_channel:96,model_372_mock:41,modest:24,modif:[14,150,155],modifi:[1,6,13,14,46,82,84,103,142,150],modified_rang:73,modify_result:150,modul:[2,3,4,18,25,31,34,35,42,54,130,140,142,155],modular:[150,153,158],mohm:[27,49],moment:[10,36,112,114],monitor:[79,88,96,116,122,132,145,153,158],monitor_out:[41,96],monoton:6,month:154,more:[1,4,6,7,8,10,12,15,24,25,34,45,46,50,53,57,60,61,63,70,74,75,79,82,92,97,103,114,131,138,142,145,146,148,149,151,153,154,158],moreov:[10,113],most:[1,2,3,4,6,12,21,31,34,35,36,41,42,49,50,57,81,82,92,95,104,110,112,114,142,145,146,148,154,158],mostli:[57,145],motion:151,motiv:[142,149],motor:98,mount:[44,98],move:[3,44,54,59,60,98,107,114],move_ab:[44,98],move_limit:98,move_rel:[44,98],movement:[44,98],mpl_connect:1,msec:3,msg:[34,107],mso8104a:13,mso:[13,61],mso_chan4_trac:61,msos104a:[61,95,140],mua:45,much:[3,4,7,11,50,54,63,73,110,142,158],multi:[25,99,131,158],multiarrai:113,multichan_paramclass:66,multichannel:92,multichannelinstrumentparamet:[66,99],multidimension:11,multidimspectrum:11,multilin:142,multimet:[3,22,56,95,114,136],multiparamet:[3,50,103,106,107,110,113,128,136,151],multiparamt:6,multipl:[0,1,10,14,21,36,41,46,51,57,66,74,81,82,92,95,96,100,104,110,114,151,158,159],multipli:[82,151,158],multiprocess:[35,131,136,150,153,159],multityp:[36,145],multmet:56,must:[3,6,10,12,21,23,25,29,42,49,52,53,54,57,60,64,69,72,75,76,81,84,85,92,94,95,96,103,107,110,112,113,114,119,142,145,146,148,149,150,155,158,159],mutabl:[6,12],mutablemap:12,mutablesequ:12,mutual:96,mvpp:52,my45001438:13,my48002016:26,my52451750:62,my54505281:28,my54505388:[26,31],my55510104:61,my57800256:[13,39],my_ax:10,my_custom_fold:23,mycallback:6,mycount:21,mydummi:6,mydummy_chana_that_setpoint:6,mydummy_chana_this_setpoint:6,myget:25,myinstrument:159,mylist:30,mymainfold:2,mypi:132,myscript:2,myset:25,mysignalhound:51,mysin:54,mystat:16,mytestseq:58,myvector:159,myvector_set:159,n48280:[13,33],n5171b:95,n5181a:95,n5183b:95,n51x1:[90,140],n5230c:90,n5245a:[62,90],n52xx:90,n_avg:60,n_point:10,n_read:[40,41],n_samples_in_waveform:34,n_trigger_puls:34,naiv:27,name:[0,1,2,3,4,6,7,10,11,12,13,16,17,20,21,22,23,24,25,26,27,28,30,31,33,34,35,36,37,38,41,42,45,46,49,50,52,53,54,55,57,59,60,61,63,64,66,67,68,69,70,72,74,75,76,77,78,80,81,82,83,87,89,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,109,110,111,112,113,114,115,116,119,122,142,145,148,149,150,155,158,159],name_to_delet:3,nameofyourdriv:4,namespac:[128,155],nan:25,narrow:63,nataliejpg:92,nation:154,nativ:[25,113],navig:[4,154],nbagg:[17,20,23,30,35,36,37,50,52,53,55],nbi:142,nbviewer:[19,63],ncycl:32,ndarrai:[64,69,81,112,113,114,158],nearli:3,necessari:[34,36,41,57,63,69,85,91,92,103,147,149,153,158],necessarili:[64,81,96,142,145],necessit:148,need:[1,2,3,4,6,10,21,25,30,34,36,41,53,54,59,60,61,69,92,95,107,112,113,114,142,145,146,148,150,151,154,158,159],neg:[49,61,88,98,100],neither:[142,148],nelder:6,nep:[57,103],nepbw:103,nepbw_to_timeconst:103,nest:[21,25,26,69,79,150,158],net:43,network:[60,61,93,110,151,158],never:[42,82,142],new_cmd:[97,98,107,114],new_data:[40,70,128],new_data_set:[5,12,14,15,16,63],new_experi:[5,6,7,8,9,10,11,12,13,14,15,16,62,63],new_indic:31,new_nam:3,new_valu:31,newer:[10,110],newlin:75,newlinestripp:114,newport:[90,151],newport_ag_uc8:[44,98],newport_ag_uc8_axi:98,newport_ag_uc8_channel:98,newport_ag_uc8_errorcod:98,newport_ag_uc8_except:98,next:[1,4,6,8,10,29,41,49,53,54,56,60,64,72,75,81,92,114,148,154,158,159],nfev:6,nice:[1,3,6,10,18,24,57,60,142,148],nick:142,nielsen:[142,152],nifti:3,nit:6,no_instru:159,no_of_rep:29,no_sampl:[9,12,13,14],no_t:10,no_x:10,nobodi:142,noi:[32,108],nois:[3,6,8,10,34,38,49,51,60,95],noisi:[11,12,59,151],non:[6,10,11,41,42,49,53,59,92,107,113,118,142,159],none:[2,3,5,8,10,12,14,15,16,17,24,25,30,31,33,35,36,37,38,41,51,57,59,62,64,66,67,68,69,70,72,74,75,76,77,78,79,80,81,82,83,84,87,89,90,92,93,94,95,96,97,98,99,100,103,105,107,108,110,112,113,114,116,117,119,120,121,122,134,142,150,155],nonstandard:[91,95,97,98,106,112,113,114],noofpoint:53,noofseq:30,noofseqelem:53,noofwf:30,nor:[6,142,148],norm:[39,59],normal:[6,10,27,49,64,70,71,74,81,82,84,97,114,145,158],normalis:[6,8],nosampl:[10,14],not_act:44,not_avail:11,notabl:[6,57],notat:[2,84,93],notch_filt:33,note:[1,2,3,4,5,10,11,14,15,19,21,25,34,38,41,42,44,45,46,49,51,53,56,57,59,61,63,64,66,70,81,82,84,85,87,92,94,95,96,99,103,106,107,113,114,117,119,130,140,146,148,150,153,154,155,158,159],notebook:[1,2,3,5,6,7,8,9,10,11,13,14,15,18,23,24,26,27,29,31,33,34,36,38,40,41,49,51,52,53,54,57,58,59,60,63,136,138,146,148,149,151,153,154,155,156],noth:[3,38,94,148],notic:[1,4,7,14,34,38,44,50,108],notif:[150,151],notifi:150,notimplementederror:[32,42],notion:[34,148],now:[0,4,5,6,8,10,12,14,15,18,21,23,25,29,32,33,34,41,44,45,46,49,50,51,53,54,56,57,59,60,64,81,110,114,122,132,136,142,148,151,155,159],nplc:[3,26,28,31,35,37,38,114,151],npoint:[6,7,13,61],nport:95,npt:[11,36,50,110],nr_bytes_written:31,nrep:[7,29,34,53,54,114],nrep_l:30,num:[23,24,27,28,31,60,84,121],num_acquisit:49,num_chan:99,num_channel:114,num_point:8,num_points1:8,num_points2:8,num_port:50,number:[0,1,3,6,10,11,12,14,15,21,24,25,26,28,31,32,34,35,37,40,41,42,43,44,45,46,49,50,51,53,54,57,58,72,75,76,79,81,82,84,87,90,91,92,94,95,97,98,99,100,103,107,108,110,112,113,114,116,142,145,147,149,150,155,158,159],number_dac:100,number_format:75,number_of_averag:60,number_of_paramet:159,numbertwo:6,numdac:100,numer:[5,6,7,12,15,16,75,98,148,151,158],numpi:[0,3,4,5,6,7,8,9,10,11,12,13,15,16,17,21,23,26,27,28,29,30,31,34,35,37,40,41,42,45,46,52,53,54,55,56,57,59,63,64,69,81,92,103,112,113,114,138,150,158,159],numpoint:114,numval:[28,31],nxsingl:49,obj:30,object:[0,1,2,3,5,7,9,10,11,13,15,16,18,25,30,31,33,34,35,36,37,40,41,49,50,51,52,55,57,58,60,64,66,69,71,73,74,79,81,82,84,85,92,94,99,100,112,117,119,122,142,143,149,150,151,155,158,159],observ:[148,151],obsolet:[53,140],obtain:[1,34,82,92],obviou:[34,79],occasion:73,occupi:[49,72,114],occur:[1,30,59,91,94,100,113,155,158],ocp:48,ocp_rang:109,ocp_stat:48,ocp_valu:48,oct:33,oem:[30,114],off:[3,10,13,24,26,28,31,32,38,39,40,41,45,46,47,49,50,52,54,56,57,60,62,63,74,95,96,99,104,105,107,110,114,116],off_modul:110,offer:[0,1,132,148,149,159],offlin:[19,63,151],offload:158,offset:[13,22,32,36,49,52,57,59,108,110,114],often:[1,4,20,70,92,142,145],oftentim:49,ohm:[36,40,41,49,57,96],old:[6,10,33,38,50,52,137,150,151,154],old_data_load:[9,14],old_sampl:14,older:54,oldest:39,oldn:57,omit:[64,81,82,107,114,148],on_modul:110,onboard:38,onc:[0,15,20,21,25,34,62,69,73,92,112,113,114,142,145,148,149,151,154,158,159],one:[1,2,3,5,6,8,10,11,12,13,14,15,21,25,27,29,33,36,38,41,43,44,45,46,49,50,52,53,54,57,59,61,63,64,67,69,70,73,74,75,79,81,82,84,89,90,91,92,96,97,98,99,100,107,110,113,114,116,119,142,145,146,148,149,150,151,155,158,159],ones:[29,34,54,63,92,95,104,110,114,142],onli:[3,4,5,6,7,12,14,17,21,23,25,32,34,35,36,41,43,44,45,46,49,50,52,53,57,59,62,64,69,70,72,74,75,81,82,84,85,91,92,93,95,96,97,99,103,104,106,107,108,110,112,113,114,116,119,142,148,150,151,158],onlin:[1,19,63],onto:[114,151,158],oon:6,ooohh:6,opaqu:150,opc:[29,114],open:[4,41,73,76,87,91,107,112,121,137,142,147,153,158],open_loop:[41,96],open_resourc:30,opendevic:112,oper:[1,3,31,36,41,64,71,81,84,91,94,95,96,114,151,155,158,159],oppos:[3,34,53,113],opposit:[11,120],optic:98,optim:[6,153],optimis:151,option:[2,3,6,39,49,53,64,66,67,68,69,70,72,73,74,76,77,81,82,84,85,87,89,90,92,95,97,98,100,107,110,112,113,114,116,117,119,134,138,142,148,150,154,155],orang:34,order:[2,3,10,25,34,41,42,53,57,59,63,67,70,74,89,96,103,105,113,142,146,150,151,155,158],ordereddict:[0,6,70],org:[1,87],organ:[142,151],organis:146,orient:[146,158],origin:[13,22,26,57,63,90,150,151,158],original_valu:22,osc:57,oscil:[57,95,148],oscillator2_freq:57,oscilloscop:[3,4,13,95,108,110,114,140,151],other:[1,2,3,6,7,10,11,14,21,23,34,36,41,44,45,46,49,50,53,54,57,61,62,72,73,86,88,91,92,94,95,96,97,98,106,112,113,114,118,120,121,142,146,148,149,150,153,158],otherclass:3,otherwis:[3,41,53,62,69,91,92,94,142,148,150,158],our:[4,12,14,24,40,42,44,49,50,75,107,142,148],out:[0,3,10,11,12,20,21,23,25,31,32,35,39,41,42,45,46,50,52,57,59,62,64,65,81,91,99,107,110,113,142,148,149,151,152,153,154,156,158,159],outcom:148,outer:[1,21,25,69,75,151,158],outlier:[151,155],outp1:30,outp:18,output:[2,3,4,6,8,13,27,32,35,37,38,41,45,46,49,50,53,54,56,60,74,79,82,91,94,95,96,99,100,103,106,108,110,113,114,116,118,142,150,151,158],output_336_currentsourc:96,output_336_voltagesourc:96,output_372:96,output_index:96,output_interfac:33,output_nam:96,output_pow:60,output_rang:[40,41,96,116],output_waveform_name_n:114,outputchannel:95,outsid:[12,41,56,63,88,100,103,114,150],over:[0,3,4,6,18,19,25,44,48,50,51,56,57,61,62,66,73,79,84,85,92,96,142,145,158,159],overal:150,overhead:[28,158],overid:107,overlap:[4,114],overload:[49,94,110,113],overrang:96,overrid:[3,63,70,72,73,91,95,97,98,99,103,106,107,112,113,114,119],overridden:1,overview:[19,25,38,49,60,61,62,63,114,149,151,155,157],overwrit:[2,23,34,35,37,100,114,119,155],overwritten:[10,14,72,113],ovl:96,ovp:48,ovp_rang:109,ovp_stat:48,ovp_valu:48,ovsr:113,own:[2,3,25,49,50,74,91,92,107,121,142,150,158],oxford:[42,55,90,136,139],oxfordinstruments_ilm200:107,oxfordinstruments_ips120:107,oxfordinstruments_kelvinox_igh:107,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:114,pack_waveform:[30,114],packag:[1,2,30,31,57,130,142,150,153,154,155],packard:[60,93],packed_waveform:114,packed_wf:30,pad:3,page:[34,92,113,128,130,142,149,158],pai:142,pair:[24,26],panda:[18,150],panel:[57,94,100,114,153],panic:158,par:53,paraemt:90,parallel:[107,150],param:[21,36,53,55,57,82,92,99,100,150],param_id:31,param_mea:8,param_nam:[69,99],param_out:31,param_set1:8,param_set2:8,param_set:8,param_spec:6,param_v:6,paramamet:151,paramet:[1,6,7,8,11,12,15,20,25,27,36,37,38,41,44,45,46,49,50,51,53,54,55,57,59,60,61,64,65,66,67,68,69,70,71,72,74,75,76,77,78,79,80,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,110,112,113,114,116,117,118,119,120,121,122,128,131,135,138,140,142,143,146,147,149,150,151,153,157],parameter_a:15,parameter_b:15,parameter_c:15,parameter_class:[3,11],parameter_nam:[34,113,134],params_to_skip_upd:[99,113],paramspec:[5,6,12,15,16,95,146],paramt:[0,22,36,89,159],paramtyp:[7,10,151],paramtypes_explain:11,parent:[3,64,66,74,78,81,82,85,94,95,96,97,98,99,103,105,107,108,109,110,111,113,114,116],parenthes:142,pars:[53,74,91,95,97,98,106,108,112,113,114,151],parse_awg_fil:[53,114],parse_multiple_output:108,parse_on_off:[95,104],parse_output_bool:114,parse_output_str:114,parse_paramstr:95,parse_single_output:108,parse_string_output:108,parsebool:114,parseint:114,parser:[3,74,93,113,114],parsestr:[93,114],part:[2,3,4,29,41,50,54,63,64,72,81,82,97,112,113,116,136,142,145,150,151,155,158],parti:61,partial:[6,8,60,108,150,159],particular:[14,21,24,34,53,57,59,145,148,149,150,158],particularli:[62,74,77,113,158],parval:6,pass:[1,3,4,10,12,13,60,72,74,85,86,90,92,95,97,100,105,110,116,119,120,121,142,150,155,158,159],past:10,pat:114,patch:142,path:[2,4,7,11,14,18,25,43,53,68,70,71,73,92,107,112,114,117,119,148,150,154,155,158],path_to_driv:97,patholog:148,pattern:[114,146],paus:[41,59],pcb:41,pci:[3,91],pcie:[91,92,136],pcie_1751:90,pcie_link_spe:[36,92],pcie_link_width:[36,92],pckd_wf:30,pcserno:61,pdf:[10,99,113],peak:[6,49,54,114],pedagog:14,pedestrian:151,pend:[58,114],peopl:149,pep8:142,per:[3,5,27,28,31,36,38,54,64,69,81,92,93,94,99,100,113,114,147,150,151,153,155,159],percent:[57,63,103],percentag:[107,155],percentil:151,perf:142,perf_count:[7,11,29,42],perfect:148,perfom:[26,42],perform:[1,4,5,6,12,13,24,25,26,33,34,36,38,40,41,44,45,46,49,57,59,73,82,87,92,100,103,105,112,114,118,132,137,139,142,146,148,151,154,158],perform_safety_check:105,perhap:[31,148,158,159],period:[32,49,61,70,120,121,154],persist:[76,107],person:142,phase:[6,21,32,33,34,39,50,57,62,92,103,108,110,112,113,148,158],phase_delay_input_method_n:114,phase_n:114,phi:[42,57,59],phi_measur:[42,59],phi_target:42,physic:[3,4,6,8,22,42,45,46,70,90,114,117,119,122,148,158],pick:142,pictur:[6,158],pid:40,piec:[145,158],piezo:[98,151],pillar:158,pin:91,ping:142,pinki:142,pip:[100,142,153,154],pixel:[63,120],place:[1,2,45,46,49,120,142,148,158],plai:[13,25,29,34,41,54,114,151,154],plain:154,plan:41,plane:10,playback:34,pleas:[3,6,10,19,38,41,53,57,61,63,96,99,113,114,142,152],plenti:61,plot:[0,3,6,7,8,9,12,13,15,18,30,31,33,34,36,37,38,39,40,41,45,49,50,51,52,53,56,57,59,60,61,62,69,113,128,134,137,138,146,147,150,155,158],plot_1d:25,plot_by_id:[6,8,9,10,13,51,62,63,155],plot_by_id_funct:10,plotlib:[2,155],plotlin:12,plotq:37,plotsequ:58,plotter:[57,148,151],plt:[1,5,6,7,10,15,18,23,26,27,30,31,34,35,37,40,41,49,50,52,53,54,55,57,59,61,62,63,121],plu:[54,114,155],plubic:130,plug:[27,95,150,153],plugin:142,plunger:23,plural:21,pna:[62,95],pna_exampl:62,pnabas:95,pnaport:95,pnasweep:95,pnatrac:95,pnaxbas:95,point:[6,7,10,11,14,24,25,26,27,28,29,30,31,32,33,34,41,50,54,57,58,59,62,63,67,71,75,79,89,103,107,110,112,113,114,128,148,149,150,151,153,155,158],poitn:114,polar:[41,96,100],polish:153,poll:[27,33],polyfit:59,popluat:19,popul:[14,69,77,78],popular:3,port:[41,42,44,50,55,59,76,91,94,95,97,98,105,107,112,153],port_count:91,portion:34,pos:[54,58],posit:[10,13,44,49,74,98,110,150,158],possibl:[3,4,6,12,21,34,42,50,53,57,62,63,96,106,107,113,114,146,147,150,155,158],post:[36,142],post_acquir:92,post_delai:[8,24,25,36,82],post_trigger_act:103,potenti:[38,64,70,79,81,148,149,150,153,155,158],power:[3,11,38,50,59,60,62,92,95,105,107,108,110,112,136,142,151,158],powerup_en:41,ppi:91,pprint:[24,34],practic:[12,142,147],pragmat:148,pre:[117,151],pre_acquir:92,pre_start_captur:92,preamp:[3,106,113],preamplifi:[3,106,113],prece:103,preced:75,precis:[100,103,135],preconfigur:2,predefin:[53,86,113,114,151],prefer:[41,96,114,149,153,154,158],prefix:142,preinstal:154,preliminari:26,prematur:42,prepar:[13,27,28,31,49,54,57,60,92,95,103,108,110,113,114,151,158],preparatori:[6,8],prepare_buffer_readout:[33,113],prepare_curvedata:[13,52,61,95,108,114],prepare_readout:113,prepare_scop:[57,103],prepare_trac:[49,60,93,110],preparesweep:114,prepend:[69,114],preprocessor:91,prerequisit:151,present:[3,4,10,33,58,63,105,106,107,113,116,142,148,158],preserv:148,preservechannelset:114,preset:112,preset_data:69,press:[1,114,156],presum:114,pretend:4,pretti:[34,45,46,60,99,103],prevent:[3,64,81,82,92,100,114],previou:[1,10,22,63,82,94,98,142,148],previous:[103,114,158],primari:[51,149,153],primarili:146,princip:74,principl:[148,154],print:[0,1,2,11,12,14,21,22,25,26,28,29,30,31,32,34,35,36,37,38,40,41,42,44,45,46,47,48,53,55,56,57,59,62,94,95,97,99,103,114,151,159],print_al:93,print_cont:114,print_modstatu:93,print_overview:[45,46,99],print_readable_sanpshot:49,print_readable_snapshot:[25,33,38,42,49,50,54,60],print_sweeper_set:[57,103],print_which_step:6,printslop:[45,46,99],prior:[60,90,94],prioriti:[72,158],privat:[90,95,108,110,128],privileg:91,probabl:[7,10,36,41,74,92,96,110,142,154,158],probe:48,problem:[10,30,53,56,92,142,151],procedur:[99,149,158],proceed:29,process:[36,92,142,150,158],produc:[6,10,50,150,154,158],product:97,product_id:97,program:[1,92,95,112],programm:[92,105,114],programmat:[2,114,153],progress:[44,79,150],progress_interv:[31,79],project:[3,142],promis:148,promot:148,prompt:154,proper:[57,100],properli:[4,14,59,114],properti:[2,3,4,14,30,34,43,44,91,155,158],protect:[48,100],protocol:[36,100,158],provid:[1,2,3,12,21,23,29,34,36,40,41,42,45,46,54,63,69,72,74,76,82,85,96,107,119,120,121,142,145,146,149,150,151,158],proxi:158,psu:107,pts:[33,57],publish:16,pull:[31,57,62,154],pull_from_serv:[37,158],puls:[13,45,46,53,93,113,136,151],pulseatom:58,purchas:57,pure:[34,146],purpos:[3,21,34,41,158],push:[63,158],push_to_serv:[37,158],put:[4,6,9,10,29,32,41,53,56,59,75,99,107,114,148,158,159],pxie:95,py_head:[90,101],pyenv:30,pyplot:[1,5,6,7,10,15,18,23,26,27,30,31,34,35,37,40,41,49,50,52,53,54,55,57,59,61,62,63],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,18,37,39,45,56,128,137,139],pyqtmaxplot:[2,155],pyqtplot:155,pytest:[4,142],python3:30,python:[3,23,25,61,70,91,92,100,107,114,117,119,132,134,140,142,146,149,150,153,154,158],pythonlog:18,pyvisa:[3,31,87,140,151,158],pywin32:139,qbuit:[14,15],qcmatplotlib:[0,36,128],qcode:[0,1,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,27,28,29,30,31,32,34,40,41,43,51,61,62,63,128,130,142,143,144,146,148,149,150,152,157,158,159],qcodes_colorbar:1,qcodes_config:155,qcodesmast:30,qcodesparamet:150,qcodesrc:[10,14,63,68],qcodesrc_schema:50,qdac:[18,26,28,90,113,132,136,137,138,139,151],qdac_:18,qdac_ch01_v_set:28,qdac_ch02_v_set:31,qdac_ch41_v_set:26,qdac_ch42_v_set:26,qdac_channel:[18,90,151],qdac_setpoint:28,qdacchannel:99,qdacmultichannelparamet:99,qdev:[8,18,26,28,31,35,45,46,63,90,153,155],qdev_wrapp:18,qstr_lvl:18,qstr_r:18,qtplot:[0,18,25,31,37,39,45,56,60,128,151],qtwork:100,quadratur:21,quantiti:[22,75,148],quarri:97,quartil:63,qubit:10,quer:18,queri:[7,11,30,34,35,42,44,45,46,57,95,98,99,110,112,113,114,151,158],queriabl:4,queries_lvl:18,queries_r:18,query_instru:[34,113],querysweep:112,question:[10,95,99,110,142],queu:12,queue:[30,35,39,53,94,95,114],quick:[7,114],quickli:[53,148],quiet:31,quirk:131,quit:[1,3,10,24,30,65,142,158],quot:75,qutech:[34,90],r_measur:42,r_offset:33,r_target:42,rack:[13,41,100],rad_to_deg:104,radiu:42,rainbow:72,rais:[2,3,4,31,35,42,56,59,61,65,66,82,85,88,90,91,97,98,100,103,107,113,114],raiseexc:113,ramp:[3,25,31,32,39,45,46,54,56,58,59,82,94,105,107,108,114,116,151],ramp_al:94,ramp_curr:[56,116],ramp_rat:[59,94],ramp_statu:42,ramp_target:54,ramp_to:[105,116],ramp_to_target:107,ramp_voltag:[56,116],rampsign:54,ramptim:45,rand:[6,7,10],randint:[10,20,23,25],randn:[6,8,10,11,12],random:[2,3,5,7,8,10,11,12,15,20,23,25,53,59,151],random_sampl:[5,15],randomli:[6,10],rang:[4,5,6,7,10,12,13,15,16,21,26,28,29,30,31,36,39,40,42,44,45,46,49,50,51,53,56,57,60,61,63,91,92,96,98,100,103,107,110,114,150,151,155,158,159],range_limit:[41,96],rapidli:10,rare:12,raster:[151,155],rasterize_threshold:155,rate:[33,36,54,57,59,61,92,94,100,113,114,151],rather:[10,13,34,57,142,159],ravel:158,raw:[3,28,100,108,145,148,151,153],raw_trac:95,raw_val:28,raw_valu:[24,25,36,42,82],rawtrac:95,rc_sp4t:90,rc_spdt:90,rcd:23,reach:[22,59,96,113,114,142,151],react:34,read:[3,4,11,12,13,17,19,21,22,24,25,30,32,35,37,40,42,43,45,46,52,56,59,63,70,73,74,75,76,87,91,94,96,99,100,106,107,110,113,114,116,117,119,142,145,146,148,149,150,151,155,158],read_dataset:150,read_metadata:73,read_one_fil:73,read_period:[40,41],read_pin:91,read_port:91,read_stat:99,read_valu:22,readabl:[3,25,82,135,142,149],reader:[14,25,107],readi:[21,25,44,57,93,114,119,142],readili:1,readm:142,readout:[99,113,137,151],readthedoc:[4,87],real:[3,12,22,25,41,42,50,62,106,113,142,145,148,149,151,153,158,159],realist:6,realli:[4,6,45,46,69,147,158],realtim:[142,153],reappear:142,rear:114,reason:[25,32,34,59,63,142,148,150,159],recal:[24,25],recalcul:[40,41],recast:148,receiv:[1,3,12,34,39,42,94,113],recent:[2,31,35,42,82],reciev:34,recognit:148,recommend:[13,57,142,154],reconfigur:148,reconnect:158,reconsid:38,reconstruct:73,record:[13,23,25,36,72,103,114,119,148,151,153,158],records_per_buff:[36,92],rectangl:148,rectangular:151,recycl:92,red:63,redirect:[69,135],redistribut:112,redon:150,redraw:[40,41],reduc:[54,60,74,140],redund:4,ref:[52,158],refactor:142,refer:[6,10,14,25,34,57,69,92,96,112,113,114,128,142,144,146,150,158,159],referenc:[64,81,82,96,158],reference_clock_frequency_select:114,reference_multiplier_r:114,reference_sourc:[33,114],refernc:113,reflect:[7,110,148],reformat:146,refriger:107,reg:[55,90,101],regard:[49,92,158],regardless:[142,150],regim:41,region:[6,63,107,151],regist:[6,8,10,11,13,113,142,146,155],register_custom_paramet:13,register_mag:[2,155],register_paramet:[6,7,8,10,11,13,51,62,148],registr:146,registri:107,regular:[3,20,151,158],regulatd:48,reimplement:8,reimport:155,reinstal:154,reinvent:142,reject:[3,4],rel:[7,14,25,44,50,63,70,71,98,117,119,150,155,158],relat:[1,34,148,149,158],relationship:[8,22,146,158],releas:[73,132,133,140,153],relev:[4,10,31,49,63,82,92,113,114,149],reli:[1,3,63,92,113,150],reliabl:[92,158],relim:[40,41],reload:[17,73,90,158],remain:[63,92,95,112,148],remedi:148,rememb:[18,28,34,41,42,50,52,59,61,63,103],remot:[22,35,49,100,107,120,158],remote_gain:22,remoteinstru:[158,159],remoteparamet:158,remov:[39,50,57,69,70,100,103,107,110,114,136,138,140,142,150,151],remove_signal_from_sweep:103,render:[10,63],reopen:150,rep:114,repeat:[7,11,58,66,142,148,158],repet:114,repetit:[53,114],repetition_r:114,replac:[1,4,10,18,30,41,54,94,138,150],repli:97,replot:10,repo:[2,142],report:[61,92,143,153],repositori:[142,151,153,154],repr:[31,94],reprec:50,repres:[3,11,21,34,44,63,75,82,92,98,112,113,148,150,155,158],represent:[3,25,41,91,122,145,148],reproduc:[63,142,148,158],requery_nam:[34,113],request:[28,34,41,59,61,113,143,158],requir:[4,10,21,25,57,64,74,81,84,85,87,91,92,100,103,110,113,116,119,139,142,146,147,148,149,155,158,159],res:[6,35],rescal:[114,151],rescale_ax:10,research:[113,137,140,151],resend:114,resend_waveform:114,reserv:[33,96],reset:[21,25,27,31,33,42,44,49,50,53,58,60,74,75,93,95,98,100,104,105,108,110,112,113,114],reset_averag:95,reset_bp:58,reset_delai:98,reset_elem:58,reset_modul:113,reset_voltag:100,reshap:11,resid:149,resist:[3,132,151],resistor:[27,56],resit:90,resolut:[10,25,34,49,54,100,110,138],resolv:[63,148],resourc:[4,31,42,73,87,91,95,97,99,107,110,113,114,158],resourcemanag:30,respect:[1,64,81,91,114],respond:3,respons:[3,4,18,34,35,74,76,82,87,91,93,94,95,97,98,99,106,107,112,113,114,146,148],responses_lvl:18,responses_r:18,ressourc:[3,114],restart:[14,155],restrict:[113,145],restructur:142,result:[1,6,12,14,17,21,60,63,72,92,95,96,98,100,114,148,149,150,151,158],result_list:6,results_list:6,ret:31,ret_cod:31,ret_valu:31,retri:7,retriev:[11,24,34,39,82,113,114,150,155],retur:114,return_count:31,return_pars:74,return_self:114,reus:[10,158],reveal:14,revers:[54,82,84],review:[142,148,153],revion:94,revisit:10,revok:[45,46],rewrit:158,rewritten:142,rf_off:50,rf_on:50,rfswitchcontrol:43,rho:[42,59],rho_measur:42,rho_target:42,richer:158,rid1:10,rid2:10,rid:[7,69],right:[1,10,30,43,53,59,61,63,90,92,113,120,122,154],rigol:[90,151],rigol_dg4000:108,rigoldp821:108,rigoldp831:108,rigoldp832:[48,108],rigoldp8xxchannel:109,rigolds4000channel:108,rise:[3,57],risetim:[3,37],risk:[42,151],riski:63,robust:3,rohd:[47,110,132,140,151],rohde_schwarz:[47,49,50,90],rohdeschwarz_sgs100a:110,rohdeschwarz_smr40:110,rohdeschwarzhmc8041:110,rohdeschwarzhmc8042:110,rohdeschwarzhmc8043:[47,110],rohdeschwarzhmc804xchannel:111,roi:63,role:[54,150],ron:114,root:[70,71,114,117,119,154],rosc:30,rotat:44,rotate_nvalv:107,rough:143,roughli:[63,150,154],round:[100,116,138,158],round_dac:100,router:41,routin:[99,146,150],row:[1,6,7,18,75,110,146,149,150],rowdon:6,rrm:57,rs232linkformat:100,rs_sgs100a:110,rst:[74,142],rte1000:90,rto1000:[49,90],rto:[107,140,151],rto_channel1:49,rto_channel2:49,rto_channel3:49,rto_channel4:49,rtype:31,rudat_13g_90:90,rudat_13g_90_usb:97,rule:[3,59,148],run:[0,1,4,5,6,7,8,9,10,11,13,14,20,23,24,25,26,27,28,29,30,31,33,35,36,37,39,41,50,51,52,57,59,60,61,62,79,90,91,93,95,96,103,110,112,114,134,148,149,150,151,153,154,155,158,159],run_cont:[49,110],run_contin:93,run_id1:11,run_id2:11,run_id3:11,run_id4:11,run_id5:11,run_id:[6,7,8,9,10,11,13,51,62,63],run_id_2d_str:10,run_id_a:7,run_id_n:7,run_id_str:10,run_mod:[49,114],run_n_tim:[60,93],run_singl:[49,110],run_stat:114,run_sweep:[60,62,95],run_temp:21,run_to_field:107,run_to_field_wait:107,runid:51,runtest:90,runtim:[2,51,155],s11:[50,60,62],s12:[50,62,110],s21:[50,60,62],s22:[50,62],s44:50,s5i:90,s_paramet:60,sa124_max_freq:112,sa124_min_freq:112,sa124b:[51,112],sa44_max_freq:112,sa44_min_freq:112,sa_api:112,sa_audio:112,sa_audio_am:112,sa_audio_cw:112,sa_audio_fm:112,sa_audio_lsb:112,sa_audio_usb:112,sa_auto_atten:112,sa_auto_gain:112,sa_averag:112,sa_bypass:112,sa_frequ:11,sa_frequency0:11,sa_frequency1:11,sa_frequency2:11,sa_idl:112,sa_iq:112,sa_iq_sample_r:112,sa_lin_full_scal:112,sa_lin_scal:112,sa_log_full_scal:112,sa_log_scal:112,sa_log_unit:112,sa_max_atten:112,sa_max_devic:112,sa_max_gain:112,sa_max_iq_decim:112,sa_max_rbw:112,sa_max_ref:112,sa_max_rt_rbw:112,sa_min_iq_bandwidth:112,sa_min_max:112,sa_min_rbw:112,sa_min_rt_rbw:112,sa_min_span:112,sa_power_unit:112,sa_real_tim:112,sa_ref_external_in:112,sa_ref_internal_out:112,sa_ref_unus:112,sa_spectrum3d:11,sa_spectrum:11,sa_sweep:112,sa_tg_sweep:112,sa_volt_unit:112,sabandwidthclamp:112,sabandwidtherr:112,sacompressionwarn:112,sadevicenotconfigurederr:112,sadevicenotfounderr:112,sadevicenotidleerr:112,sadevicenotopenerr:112,sadevicetypenon:112,sadevicetypesa124a:112,sadevicetypesa124b:112,sadevicetypesa44:112,sadevicetypesa44b:112,saexternalreferencenotfound:112,safe:[59,100,107,142,151,158],safe_vers:100,safeti:[12,42,50,59,105,107],safrequencyrangeerr:112,safti:50,sai:[11,70,117,119,142,148,159],said:[42,69,114,148],sainterneterr:112,sainvaliddetectorerr:112,sainvaliddeviceerr:112,sainvalidmodeerr:112,sainvalidparametererr:112,sainvalidscaleerr:112,sake:[4,10,14,34,60],same:[1,3,10,11,20,21,26,34,36,41,42,44,54,59,63,67,69,75,81,84,89,91,96,103,113,114,121,142,148,150,154,158,159],samp:113,sampl:[5,7,8,14,22,28,33,36,41,54,61,62,84,85,90,92,100,113,114,149,151,155,158],sample_count:[28,31,34,113],sample_heat:41,sample_nam:[5,6,7,8,9,11,12,13,14,15,62,63],sample_r:[34,36,54,92,108],sample_timer_minimum:[28,31],samples_divisor:92,samples_per_record:[36,92],sampling_r:[49,114],sane:[14,68],saniti:56,sanocorrect:112,sanoerror:112,sanotconfigurederr:112,sanullptrerr:112,saovencolderr:112,saparameterclamp:112,sastatu:112,satisfi:[59,148],satoomanydeviceserr:112,satrackinggeneratornotfound:112,satur:63,saunknownerr:112,sausbcommerr:112,save:[0,4,11,14,23,24,25,31,34,43,53,60,63,64,69,70,73,75,81,82,92,113,114,118,119,134,142,145,146,148,151,153,154,158,159],save_to_cwd:2,save_to_env:2,save_to_hom:[2,14,155],savefig:10,savvi:153,sawtooth:39,sca:1,scalar:[12,20,21,25,64,81,95,118,148,150,158],scale:[19,21,49,50,52,57,60,61,82,90,110,112,151,155],scale_param:21,scale_set:21,scale_v:21,scaledparamet:151,scaleparamet:112,scan:[12,50,151],scatter:155,scenario:142,scene:57,scf:1,schema:[2,15,50,63,68,155],schema_cwd_file_nam:68,schema_default_file_nam:68,schema_env_file_nam:68,schema_file_nam:68,schema_home_file_nam:68,scheme:[3,4,148,149],schouten:100,schwarz:[47,110,132,140,151],scienc:10,scientif:[63,147],scipi:6,scope:[4,13,49,52,61,95,103,108,110,114,151],scope_average_weight:57,scope_channel1_input:57,scope_channel2_input:57,scope_channel:57,scope_correctly_built:57,scope_dur:57,scope_length:57,scope_measur:52,scope_mod:57,scope_samplingr:57,scope_seg:57,scope_segments_count:57,scope_setup:13,scope_trig_delai:57,scope_trig_en:57,scope_trig_gating_en:57,scope_trig_gating_sourc:57,scope_trig_holdoffmod:57,scope_trig_holdoffsecond:57,scope_trig_hystabsolut:57,scope_trig_hystmod:57,scope_trig_level:57,scope_trig_refer:57,scope_trig_sign:57,scope_trig_slop:57,scopearrai:[108,114],scopechannel:110,scopedata:57,scopetrac:110,scpi:[3,30,94,107],scpi_command_tre:95,scratch:8,screen:[34,49,113,114,120,154],script:[4,14,38,114,151,153,155,159],scriptfold:[2,155],sd_awg:95,sd_common:95,sd_dig:95,sdk:[92,112],sdk_version:[36,92],seamlessli:150,search:[72,142,148,158],sec:[7,95,108,114],second:[1,4,6,10,12,14,21,25,30,33,34,39,40,41,44,56,57,64,69,70,76,79,81,82,87,88,92,94,98,100,107,113,114,116,119,120,121,148,151,154,158,159],second_exp:14,section:[63,96,148,149,152,154],see:[0,1,2,3,6,7,10,11,12,18,20,23,24,34,39,41,44,45,49,51,52,53,56,58,59,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,92,96,98,100,110,113,114,118,120,121,122,142,148,149,150,154,158,159],seek:[11,148],seem:[12,40,75,142,148],seen:[7,41,50],segm1_ch1:114,segm1_ch2:114,segm2_ch1:114,segm2_ch2:114,segm:30,segment:[1,57,103,114],select:[3,14,36,59,92,95,98,103,114,142,146,150,151,154],self:[2,3,4,11,21,31,35,37,41,42,60,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,94,99,107,114,118,119,120,121,122,142,154,159],semant:[22,153],semi:[6,10,142],semicolon:[91,95,97,98,106,107,112,113,114],sen:[3,37,106],send:[3,6,8,27,28,29,31,34,58,59,76,97,98,100,106,107,108,113,114,151,152],send_awg_fil:[30,114],send_dc_puls:114,send_pattern:114,send_sequ:114,send_sequence2:114,send_trigg:113,send_waveform:114,send_waveform_to_list:[30,53,114],sendseqxfil:[29,34,54,58,114],sendwfmxfil:[29,54,114],sens:[3,142,148],sens_factor:[3,106],sens_x:37,sensit:[3,6,13,33,34,106],sensor:[96,151],sensor_a:40,sensor_nam:41,sensor_raw:41,sensor_statu:41,sensor_status:96,sensor_status_cod:96,sensor_unit:96,sent:[3,27,30,54,74,82,98,107,113,114,145,150,151,158],separ:[4,6,10,21,38,44,63,73,75,81,91,95,97,98,106,107,108,112,113,114,122,153,158,159],seper:114,septemb:38,seq:[36,114],seq_elem:53,seq_nam:34,seqnam:[34,54,58,114],sequanti:89,sequecn:114,sequenc:[12,21,29,34,41,53,64,66,69,79,81,84,94,95,113,114,118,121,150,151,158],sequence_cfg:114,sequence_length:53,sequence_po:53,sequencelist:[54,114],sequenti:[34,42,57,67,159],seqx:[34,54,58,114,151],seqx_fil:[29,58],seqx_file_nam:34,seqxfilefold:114,seri:[3,63,95,104,108,110,114,140,151],serial:[3,4,13,24,25,26,27,28,29,30,31,32,33,34,36,38,39,40,41,42,43,44,47,48,49,50,51,52,54,56,58,59,60,61,62,91,92,94,95,97,98,106,107,112,113,114,145],serial_numb:[37,43,96,97],serialis:114,seriou:49,serv:3,server:[4,35,41,57,92,103,158,159],server_err:35,server_nam:[17,93,159],session:[25,31,40,70,117,119,142],set:[0,1,2,3,4,6,8,10,11,12,13,14,15,17,18,20,21,22,23,24,26,30,31,33,35,36,37,38,39,41,42,43,47,48,50,51,53,54,56,59,60,61,62,63,67,69,70,73,75,79,80,82,84,85,89,90,91,92,93,94,96,99,100,103,105,106,107,108,110,112,113,114,117,118,119,145,147,150,151,153,155,158,159],set_al:94,set_arrai:69,set_b:107,set_capture_length_to_fit_sampl:[34,113],set_capture_rate_to_maximum:[34,113],set_cmd:[1,3,4,10,25,82,83,93,107,159],set_color:[6,10],set_curr:[47,48],set_current_folder_nam:114,set_dacs_zero:100,set_data:[40,96],set_default:114,set_ext_trig:110,set_field:105,set_funct:42,set_jumpmod:114,set_label:10,set_level:114,set_linewidth:10,set_mark:6,set_markeredgecolor:6,set_markerfacecolor:6,set_measur:[35,37],set_mix_chamber_heater_mod:107,set_mix_chamber_heater_power_rang:107,set_mod:114,set_mode_volt_dc:114,set_mp_method:[35,37],set_new_field_limit:[42,107],set_parameter_bound:100,set_pars:[82,83],set_parser_on_off:110,set_persist:107,set_point1:8,set_point2:8,set_point:[8,52],set_pol_dacrack:100,set_range_from_temperatur:[41,96],set_raw:[90,92,112],set_remote_statu:107,set_sequ:114,set_set_point:52,set_setpoint_and_rang:96,set_setup_filenam:114,set_smooth:113,set_sqel_event_jump_target_index:114,set_sqel_event_jump_typ:114,set_sqel_event_target_index:[53,114],set_sqel_goto_st:114,set_sqel_goto_target_index:[30,53,114],set_sqel_loopcnt:[53,114],set_sqel_loopcnt_to_inf:[53,114],set_sqel_trigger_wait:[53,114],set_sqel_waveform:[30,53,114],set_sweep:[110,112],set_titl:[1,53],set_to_fast:107,set_to_slow:107,set_v:6,set_valu:85,set_voltag:[47,48,113],set_wrapp:42,set_xdata:[40,41],set_xlabel:[7,30,40,41],set_ydata:[40,41],set_ylabel:[7,18,40,41],set_ylim:[30,53],setboth:159,setbothasync:159,setformatt:17,setlevel:[17,52,53,57,61,62],setpoint:[0,1,6,7,8,10,11,13,20,21,23,24,25,26,27,28,31,36,40,50,52,59,60,62,64,69,75,81,93,95,96,103,107,110,112,113,114,118,136,151,158,159],setpoint_arrai:[64,81],setpoint_label:[21,64,81],setpoint_nam:[6,11,21,64,81,103],setpoint_unit:[11,64,81],setsequencetrack:[29,34,54,58,114],setsequencingnumberofrepetit:58,setsr:58,settabl:[3,4,10,82,85,145,158],setter:[4,41,145],settl:[6,57,142],setup:[6,7,8,13,40,44,50,62,110,114,122,151,153],setupclass:90,setwaveform:[34,54,114],setx:159,sever:[2,10,34,92,103,107,114,142,145,148,149,150,158],sg384:[90,135],sgs100a:90,shadow:2,shall:[34,56,63,107],shamelessli:10,shape:[0,1,3,6,7,11,21,23,24,25,26,27,28,29,31,33,36,38,49,50,52,53,57,60,61,64,69,81,95,103,110,112,121,150,158,159],share:[149,152],shared_kwarg:159,shed:24,shell:[153,154],shift:[57,148],ship:[2,36,57],short_nam:41,shortcut:[120,154],shorter:58,shorthand:[1,2],shot:[38,49,131,142,151],should:[2,3,4,8,11,14,25,28,29,36,39,41,42,43,47,48,49,50,52,53,54,56,57,58,59,62,63,64,66,69,70,72,73,74,76,78,79,81,82,84,85,86,90,91,92,94,97,98,106,107,110,113,114,122,142,146,148,150,154,158],shouldn:69,show:[1,3,6,7,10,20,23,25,34,35,36,37,40,41,45,46,56,59,63,142,148,149],show_num:63,show_subprocess_widget:[35,37],show_window:120,shown:[1,2,59,63,146,148],shuffl:10,side:[41,53,59,63,82,97,145,159],sig:57,sig_gen:142,sigma:[6,8],signal:[6,12,25,29,30,36,51,52,53,54,61,92,95,103,104,110,112,113,114,136,148,151,158],signal_channel:58,signal_hound:[51,90],signal_input1:57,signal_input1_ac:57,signal_input1_diff:57,signal_input1_imped:57,signal_input1_rang:57,signal_input1_sc:57,signal_output1:57,signal_output1_ampdef:57,signal_output1_amplitud:57,signal_output1_autorang:57,signal_output1_en:57,signal_output1_imp50:57,signal_output1_offset:57,signal_output1_on:57,signal_output1_rang:57,signal_to_volt:92,signalhound:112,signalhound_usb_sa124b:[51,112],signatur:[6,53,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,91,114,118,120,121,122,151],signific:146,significantli:[50,150],silent:[3,30,95],silli:6,sim900:113,sim928:[90,136],sim:[4,41,113,140],similar:[1,4,14,25,34,95,110,112,114,158],similarli:[46,57,148,158],simpl:[4,7,8,13,20,21,22,25,27,33,36,50,52,65,71,74,80,88,121,142,146,150,151,153,158],simpler:142,simplest:[4,22,158],simplex:6,simpli:[2,4,6,8,10,11,29,41,44,51,54,57,63,74,82,114,148],simplifi:[94,142],simul:[6,10,41,107,140,145,151,153,157,158],simultan:[33,42,46,62,94,107],simultani:105,sin:[10,12,13,29,30,32,53,54,108],sinc:[1,3,4,12,22,24,25,42,57,59,94,103,107,114,148,158,159],sine:[13,29,49,52,54,58,61],sine_outdc:[34,113],sinesign:54,sing:50,singl:[1,3,13,21,25,34,35,36,37,38,50,51,62,64,75,82,84,91,92,94,95,96,99,105,110,114,118,121,131,142,145,148,150,151,154,158],single_dataset:5,single_iq:21,single_set:21,single_trigger_marker_1:34,singledata:[5,14],singleiqpair:21,singleton:7,sit:[38,148],site:[1,2,30,31],situat:[10,25,75,148,158],six:[45,46,91],sixteen:41,size:[1,7,25,34,44,64,70,81,82,92,100,112,113],size_byt:92,sketch:146,skew:148,skewed_parabola:17,skill:142,skip:[99,113,142],slack:[137,138,139,142,152,153],slash:71,slave:107,sleep:[3,6,12,13,28,31,32,33,35,37,40,41,42,44,45,46,52,53,85,88,100],slice:[50,84,145],slider:1,slider_demo:1,slightli:[6,36,38,135],slightly_newer_sampl:14,slope:[31,36,39,45,46,59,99],slot:[94,95,113],slot_mode_default:94,slot_nam:113,slow:[5,10,30,36,41,44,45,46,98,99,107,113,158],slow_command_timeout:98,slow_external_clock:3,slower:[7,53],slp:60,slvl:18,small:[7,10,38,45,46,50,57,91,93,131,142,148],smaller:[50,113],smart:[107,142],sml:114,smooth_timestep:113,smoothli:[63,113],smr40:90,sms120c:140,smu:3,smua:[3,27,38,114],smub:[3,38,114],snapshot:[0,3,25,36,37,64,66,69,76,77,81,82,87,99,113,114,122,132,135,138,139,148,151,158],snapshot_bas:[99,113],snapshot_get:[64,81,82],snapshot_valu:[64,81,82,113],socket:[41,42,76,107],soft:114,softwar:[3,39,41,57,99,103,108,112,114,139,142,151,158],software_revis:37,software_triggered_read:28,softwaredownload:43,solut:[7,30],solv:142,some:[0,3,4,10,11,13,14,18,23,24,25,30,32,34,36,41,46,54,56,57,63,64,74,76,81,82,84,94,113,114,142,148,150,151,155,158],some_g:23,some_gates_plunger_set:23,somebodi:142,somehow:[10,158],someon:[91,142],someth:[2,8,10,24,34,53,56,57,59,92,99,142,148,149,155,158],sometim:[3,10,11,21,22,25,57,75,150,158],somewhat:[6,148],somewher:[34,43],soon:[94,142],sophist:92,sort:[53,75,132,148],sour1:30,sour:30,sourc:[2,3,25,32,34,36,38,50,56,59,61,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,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,140,142,143,150,153,158],source1:30,source_mod:56,sourcecod:24,sourcemet:[3,27,114,136],sourcerange_i:38,sourcerange_v:[27,38],sp1:11,sp2:11,sp3:11,sp4t:97,space:[6,45,46,64,81,82,84,114,142,145,148],spam:63,span:[50,51,63,100,112,148],spann:100,spanx:100,spawn:[35,37],spcerr:[90,101],spdt:97,spdt_base:97,speak:[3,24],spec:[4,5,12,15,16,150],specfii:[5,15],special:[3,25,34,64,81,82,95,142,158],specif:[2,3,4,34,36,51,53,63,70,91,92,94,95,97,99,100,107,114,142,145,146,147,148,149,158],specifi:[1,10,22,34,39,43,44,53,59,63,64,73,79,81,90,91,97,98,100,103,112,113,114,116,121,122,142,148,150,155,158],specifiedta:114,spectrum3d:11,spectrum:[11,51,63,90,132,135,136,140,158],speed:[26,28,42,50,82,92,98,158],speed_tabl:98,speedup:138,spend:3,spent:29,sphere:42,spheric:[42,59],spherical_limit:42,spherical_measur:59,spi:100,spi_rack:100,spike:112,spirack:[100,140],splat:1,split:[28,50,55],spread:[51,152],spyder:154,sqel:114,sql:[11,158],sqlite:[6,11,132,146,149,155],sqlite_bas:16,sqrt:[11,42],squ:[32,108],squar:[10,52],squeez:7,squencer:114,squez:7,sr560:[3,90],sr830:[13,90,134,137,151],sr860:[34,90,132,140,151],sr860_120:18,sr860m:113,sr865:[90,140],sr865a:90,sr86x:[90,151],sr86xbuffer:113,sr86xbufferreadout:113,sr86xdatachannel:113,src:50,srs_sg384:113,srvalid:114,stabl:[87,154],stackoverflow:1,stage:[147,158],stai:[42,96,107,142,159],staircas:25,stale:158,stand:59,standalon:153,standard:[1,3,6,28,50,82,91,94,95,97,98,99,106,112,113,114,146,149,153],standardparamet:[1,21,37,128,140,145],standford:151,stanford:[113,137,140],stanford_research:[3,13,33,34,90],stanford_research_system:[13,33,34],stanford_sr865:113,start1:8,start2:8,start:[0,1,3,6,7,8,9,10,11,12,13,15,23,24,25,26,27,28,31,33,34,36,37,39,41,50,51,54,57,60,61,62,68,69,70,75,82,84,86,91,92,94,98,107,110,112,113,114,116,117,119,142,149,150,151,158],start_ad:7,start_captur:[34,113],start_freq:[60,112],start_heat:41,start_index:150,start_triggers_pulsetrain:113,startcaptur:36,startup:[4,45,46,93,99],stat:[95,104],state:[3,12,16,24,32,34,45,46,47,48,49,53,54,57,91,93,94,99,110,113,114,116,142,145,146,148,150,151,153,158],statement:[100,142],station1:[35,37],station2:[35,37],station:[6,13,17,20,23,24,25,26,30,31,35,37,38,50,57,64,77,79,81,82,113,128,143,148,149,155,158],station_configur:[2,155],stationconfigur:155,stationq:153,statu:[6,40,44,55,92,95,96,99,100,104,107,110,113,114],status:113,statuscod:[30,114],std:[5,27,28,29],stderr:17,stdlib:91,stdout:[12,31],steep:63,steer:41,step:[1,3,4,6,12,18,25,26,38,42,44,50,54,56,63,79,82,83,84,98,100,112,113,114,115,116,148,159],step_amplitude_neg:44,step_attenu:[95,104],step_delai:44,stepper:[98,107],stepsiz:112,stepsizen:100,sticker:[43,97],still:[3,4,10,34,41,44,45,46,53,56,69,96,142,148,158],stir:10,stop1:8,stop2:8,stop:[1,6,7,8,11,30,33,34,39,49,50,53,54,57,62,84,91,97,98,110,113,114],stop_ad:7,stop_captur:[34,113],stop_freq:60,storag:[7,114,153,158],store:[0,2,7,10,11,18,63,64,66,69,70,73,81,82,90,92,114,119,122,138,146,148,150,151,158],str:[3,18,23,30,31,64,66,67,68,69,70,71,72,74,76,77,78,81,82,87,89,90,92,93,94,95,96,97,98,99,100,103,106,107,108,110,112,113,114,116,117,119],straightforward:[53,158],strang:57,strategi:94,stream:[31,36,57],streamhandl:17,stress:148,strftime:72,strictli:103,string:[2,3,4,11,31,35,37,64,66,72,73,74,75,81,82,91,92,93,95,96,97,98,100,103,105,106,107,108,110,112,113,114,119,122,142,145,149,150,151,155,158],strip:[75,110],strive:142,strongli:[1,3,57,142],struct:27,structur:[63,70,73,92,117,119,145,146,148,155,158],struggl:142,studi:148,studio:112,stuf:155,stuff:[4,6,59,107,114,151],stupid:59,style:151,sub:[2,3],sub_id:[12,16],subclass:[3,13,21,57,64,66,73,74,76,81,82,85,87,91,92,96,97,98,107,114,145],subid:150,subject:[142,148,158],sublim:142,sublimelint:142,submit:[4,159],submodul:[3,24,25,36,77,101],suboptim:146,subplot:[7,10,15,18,40,41,50,52,57,59,121,151],subprocess:[35,37],subscrib:[6,103,151],subscribt:6,subscript:[12,150,151],subscription_tutori:[12,14],subseq:58,subsequ:[58,86,114],subset:50,substitut:3,subsystem:[95,150],subtract:57,succes:114,success:[4,6,30,82,98],successfulli:[6,59,91,112],succinct:142,suddenli:3,suffici:[4,150],suggest:148,suit:[17,110,153],suitabl:[92,146],sum:[0,92,96,159],sum_of_cod:96,summari:151,superclass:[3,114],superconduct:[107,149],suppl:2,suppli:[3,6,63,71,73,105,107,108,110,136,146,150,151,158],support:[0,1,3,6,10,18,23,25,38,39,41,45,46,48,50,51,52,53,56,57,77,78,85,91,92,95,96,97,98,103,106,107,110,112,113,114,132,137,138,140,142,146,150,155,158],suppos:[91,95,97,98,106,107,112,113,114,148],suppress:[3,37,114],sure:[4,15,26,33,49,57,59,96,107,114,142,145,154],surprisingli:14,sv2:84,sv3:84,sv4:84,svg:10,sw01:47,swap:153,sweep:[0,6,14,15,20,23,25,27,28,31,38,44,50,57,62,66,67,82,84,85,89,93,95,103,107,110,112,114,131,140,145,150,151,153,157,158],sweep_format:95,sweep_funct:18,sweep_len:112,sweep_mod:62,sweep_tim:60,sweep_val:[0,1,159],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[24,25,79],sweepabl:89,sweepdata:57,sweeper:[103,136,151],sweeper_bw:57,sweeper_bwmod:57,sweeper_ord:57,sweeper_param:57,sweeper_samplecount:57,sweeper_start:57,sweeper_stop:57,sweeper_xmap:57,sweeper_xxx:57,sweepfixedvalu:[128,145],sweeptraceparamet:112,sweepvalu:[79,128,143],swept:[24,27,148,159],switch_to:97,switchchannelbas:97,switchchannelusb:97,symmetr:61,symmetri:59,sync:[35,36,37,45,46,51,52,57,92,95,112,151,158],sync_delai:46,sync_dur:46,sync_filt:33,sync_output:39,sync_paramet:112,sync_settings_to_card:92,sync_sourc:39,syncchannel:95,synced_to_card:92,synchron:[94,158],syntax:[34,41,153],synthes:136,sys:[5,10,17,31,50],system32:[3,92],system:[3,6,14,41,42,63,64,68,74,81,82,92,107,113,114,122,131,135,148,155,158],system_id:[3,36,92],t_actual:59,t_arrai:7,t_array_add:7,t_array_run_id:7,t_co:[64,81],t_limit:41,t_numer:7,t_numeric_add:7,t_numeric_run_id:7,t_read:[41,96],t_set:59,t_setpoint:[41,96],t_start:[6,26,29,31],t_stop:[26,29,31],taa:7,tab:[57,75,142,154],tabl:[92,98,114,148,149,150,151,155,158],tag:[142,148,150],tailor:1,take:[0,3,7,10,25,29,31,34,36,41,42,46,49,56,62,63,64,65,66,79,81,82,94,98,99,103,107,110,114,137,142,145,148,150,153,154,159],taken:[62,114],talent:142,talk:[3,106,113,158,159],target:[41,44,54,59,84,85,92,98,107,114,116,146,151],target_curr:59,target_field:59,task:[20,25,31,39,60,63,79,88,128,134,142,145,158],tau:13,tcpip0:[3,13,26,27,28,29,30,31,32,34,38,39,42,47,48,49,50,53,54,58,61,108,110],tcpip:[41,61,62,158],tear:[6,13,38,54],teardown:13,tech:153,techniqu:142,technolog:[13,26,28,31,32,39,48,61,62],tektp:52,tektron:139,tektronix:[3,27,34,35,37,38,90,132,136,137,140,151],tektronix_awg5014:[30,53,114],tektronix_awg5200:114,tektronix_awg520:114,tell:[42,62,73,75,88,142,148,158],telnet:97,temp0_0:[45,46],temp2_1:[45,46],temp5_2:[45,46],temp:[40,96],temperatur:[40,96,107,136,151],temperature_coeffici:41,temperature_kei:96,templat:142,temporari:[30,70,119],tempt:148,tempx_i:[45,46],tend:3,tens:142,term:[31,142,148],termin:[3,4,6,27,31,35,37,56,75,76,87,96,99,105,107,110,116,153,154,158],terminolog:147,terribl:58,tesla:[42,59,107],test:[3,6,7,8,9,10,11,12,13,14,15,16,20,23,24,25,26,28,41,43,56,59,61,63,72,91,94,95,99,100,104,108,110,114,135,140,145,150,151,153,158],test_:4,test_ami430:59,test_attenuation_valid:4,test_awg_fil:53,test_field_vector:59,test_hdf5formatt:17,test_init:4,test_instru:[90,142],test_lakeshor:41,test_metadata:142,test_plot_by_id:[10,14],test_plot_by_id_:10,test_plot_util:63,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_send:114,test_snapshot:142,test_weinschel_8320:4,testcas:90,testfil:30,testhdf5_format:17,testmetadat:142,testsweep:[0,25,26,31,35,37],text:[3,10,30,31,40,41,108,142,145,151,158],texttestrunn:17,textual:[41,158],tg_thru_0db:112,tg_thru_20db:112,than:[1,3,4,7,10,34,45,46,50,57,58,63,79,82,142,148,149,150,153,155,158],thank:[41,142],that_setpoint:6,thebrain:142,thei:[2,3,4,6,11,14,20,23,25,35,37,63,69,70,86,91,96,97,106,113,114,142,145,146,148,150,155,158],thelast:6,them:[1,2,3,4,10,11,13,14,21,29,36,38,45,46,60,63,69,90,91,95,97,98,105,106,107,112,113,114,142,148,150,151,154,155,158,159],theme:120,then_act:24,theoret:[63,158],therebi:39,therefor:[3,4,6,7,10,42,44,49,58,61,63,148],thereof:96,thermometri:55,theta:[34,42,59],theta_measur:[42,59],theta_target:42,thi:[0,1,2,3,4,5,6,7,8,10,11,12,13,14,19,20,21,23,24,25,26,28,29,30,31,32,34,35,36,37,38,41,42,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,66,69,70,72,73,74,75,76,77,78,79,81,82,85,87,88,90,91,92,93,94,95,96,97,98,99,100,103,104,105,106,107,108,110,112,113,114,116,117,119,121,122,128,130,132,133,140,142,143,145,146,148,149,150,153,154,155,157,158,159],thing:[3,5,6,15,25,36,49,58,74,79,84,85,86,88,142,145,148,152,154,158,159],think:[11,142,149,155,158],thinksr:113,third:[11,61,63,148,151,154,158],this_setpoint:6,those:[4,10,20,21,34,41,42,63,69,72,74,96,113,145,148,150,158],though:[1,3,34,82,84,85,91,95,97,98,106,112,113,114,158],thought:148,thread:[100,158],thread_map:31,threadpoolexecutor:159,three:[1,11,21,41,42,45,46,54,57,58,63,75,84,96,105,114,149,158],threefold:63,threshold:[6,10,12],threshold_notifi:12,through:[25,40,41,45,46,53,57,63,69,70,96,108,113,142,154,158,159],throughout:[60,148],thru_coax:62,thu:[6,42,142,148,150,158],thursdai:54,tick:[1,36,151],tidi:18,tight_layout:[1,7,10,34,50,53],tile:[11,34],tim:39,time:[1,2,3,5,6,7,10,11,12,13,14,21,22,23,24,25,26,28,29,30,31,32,33,34,35,37,38,39,40,41,42,44,45,46,49,50,52,53,54,55,56,57,58,59,61,62,63,65,72,73,79,82,84,85,91,92,94,95,96,100,103,112,113,114,116,142,148,149,150,151,153,158,159],time_const:[13,33,34],time_differ:18,timebase_posit:[13,49,61],timebase_rang:[13,49,61],timebase_scal:49,timeout:[30,31,33,35,36,38,42,49,53,54,57,60,76,87,95,97,107,108,110,113,114],timeout_tick:[36,92],timer:[35,37],timestamp:[149,153,158],titl:1,tmpfile:[55,107],tna:7,tnum:10,to_setpoint:107,to_zero:107,tobyt:30,toc:25,todo:[69,92,95,99,100,103,104,113,142],togeth:[1,20,36,41,53,108,110,148,149,158],toi:6,tol:6,toler:[41,96],tolist:[3,4],ton:3,too:[3,6,11,12,50,64,81,82,91,110,142,148],took:56,tool:[1,10,142],toolkit:62,top:[1,63,120,146,148,149,150],toplevel:138,topo:23,tortur:142,tostr:30,tot_tim:7,total:[3,5,10,21,40,41,50,63,98,107,148],touch:[44,142],toward:[41,42,146],tps1:52,tps1_scope_measurement_0:52,tps1_scope_measurement_1:52,tps2012:[90,151],tps2012channel:114,tps:52,tr1:62,tr2:62,tr3:62,tr4:62,trace:[1,4,25,50,52,57,92,93,95,103,110,112,120,121,151],trace_point:60,traceback:[2,31,35,37,42,153],tracedata:60,tracenotreadi:[93,95,108,114],traceparamet:[36,92,112],tracesetpointschang:95,track:[54,58,92,94,112,114,154,158],tracknr:114,tractabl:148,tradeoff:7,trail:[142,154],train:[113,151],transfer:[30,36,53,54,92,114],transfer_offset:[36,92],transform:[59,74,82,88,92,97,98,107,114],transimped:151,translat:[3,73,103],transmiss:110,travel:[44,98],travi:[7,11,14],trcl:113,treat:[11,122,148,158],tree:[147,151,154],trg:[28,31],tri:[13,32,63,108],triangl:[54,63,151],trig:[32,34,57,113,114],trig_engine_j:36,trig_engine_k:36,trig_engine_op_j:36,trig_engine_op_j_and_k:36,trig_engine_op_j_and_not_k:36,trig_engine_op_j_or_k:36,trig_engine_op_j_xor_k:36,trig_engine_op_k:36,trig_engine_op_not_j_and_k:36,trig_slope_neg:36,trig_slope_posit:36,trig_wait:[29,34,53,54,114],triga:[54,114],trigb:[54,114],trigger:[6,13,31,36,39,52,53,57,103,108,110,113,114,139,151],trigger_channel:58,trigger_count:[28,113],trigger_delai:[36,92],trigger_displai:49,trigger_edge_slop:[13,49,61],trigger_edge_sourc:[13,61],trigger_en:[13,61],trigger_engine1:[36,92],trigger_engine2:[36,92],trigger_input_imped:114,trigger_input_polar:114,trigger_input_slop:114,trigger_input_threshold:114,trigger_level1:[36,92],trigger_level2:[36,92],trigger_level:[13,49,52,61],trigger_mod:113,trigger_oper:[36,92],trigger_slop:31,trigger_slope1:[36,92],trigger_slope2:[36,92],trigger_sourc:[28,31,49,52,114],trigger_source1:[36,92],trigger_source2:[36,92],trigger_sweep:13,trigger_typ:[49,52],triton1_thermometri:55,triton:[90,132,136,151],trival:159,trivial:[1,4,142,148],troubleshoot:158,trun:32,truncat:142,trust:82,truthi:[25,65],ts_end:24,ts_start:24,tsclientsourcecodesqcodesqcodesinstrumentparamet:13,tst:17,tstart:[35,37],tudelft:100,tune:[34,41,100,142],tupl:[1,6,10,12,21,34,53,57,63,64,69,74,81,95,99,103,112,113,114,120,121,150],turn:[3,10,13,28,32,34,38,47,48,49,50,56,57,58,95,105,107,114,116],turoti:25,tutori:[8,19,20,21,24,49,60,63,151,157],tutorial_auto_color_scal:63,tutorial_exp:[6,7],tutorial_sequ:54,tval:10,tweak:[6,10],twice:[10,29],twini:30,two:[1,3,5,6,7,12,14,15,21,24,25,27,28,29,33,38,40,41,43,44,50,52,53,54,63,69,82,92,93,96,99,103,105,113,114,142,146,148,150,151,154,159],two_q_corr_id:10,two_q_corr_valu:10,two_qubit_corr:[10,14],twopi:29,txt:[100,114],type:[0,1,2,6,7,10,11,16,21,23,24,25,26,27,28,29,31,33,35,36,37,38,41,49,50,52,53,57,60,61,62,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,90,91,92,95,97,98,99,100,103,106,112,113,114,118,120,121,122,138,142,146,150,154,155,158,159],typeerror:[31,42,65,85,114],typic:[69,142,151,158],typo:142,uc8:[98,151],ufh:136,uhf:[103,140,151],uid:107,uint16:30,unambigu:3,unassign:[45,46],unavail:91,unblock:43,uncanningli:4,unchang:150,uncommit:92,uncondit:114,uncondition:107,undefin:[36,39,91,112],under:[6,19,96,114,150,154],underli:[4,6,92,97,98,107,114,145,158],underrang:96,underscor:142,understand:[63,142,148,158],understood:148,undesir:[25,63,148],undo:114,unexpect:95,unfortun:148,unga:155,uni:100,unicorn:23,unif:140,uniformli:63,unimport:[7,114],uninterest:6,union:[12,69,74,78,82,84,90,92,93,94,95,112,114],unipolar:[41,96],uniqu:[69,95,149,150],unit:[0,3,4,7,11,12,13,16,21,22,24,25,36,37,40,42,44,45,46,57,64,67,69,81,82,89,93,95,96,100,103,105,107,110,112,113,116,135,136,142,148,151,158,159],unitless:[64,81,82],unittest:[17,90,142],unknown:3,unless:[41,45,46,69,142],unlik:[54,57,64,81,90,113],unload:114,unlock:[107,110],unnecessari:21,unpack:6,unravel:11,unrecogn:91,unregul:48,unrel:[151,158],unsav:158,unscientif:148,unsign:114,unstructur:6,unsubscrib:150,unsubscribe_al:12,until:[3,6,19,34,41,44,53,82,96,107,112,113,150,158],untru:148,unus:[113,119],unusu:[36,148],unwrapped_phas:62,updat:[1,2,4,14,25,30,31,41,42,45,46,49,50,52,54,57,60,62,64,68,81,82,92,93,95,99,103,107,110,112,113,114,116,120,121,122,139,145,150,151,158],update_acquisitionkwarg:[36,92],update_config:2,update_curr:[31,45,46,99],update_display_off:50,update_display_on:50,update_measurement_en:116,update_snapshot:122,upfront:[64,81],upgrad:[57,154],uphold:148,upload:[27,53,54,96,114,151],upload_awg_fil:30,upload_curv:96,upon:[1,10,12,39,42,45,46,90,113,149],upper:[63,96,155],uppercas:107,ups:59,upsteam:2,upto:114,urg:148,url:43,usabl:150,usag:[21,34,63,72,85,107,114,143,151,157],usb:[3,4,41,44,62,97,112,140,151],usb_sa124b:[51,90],usb_spdt:[43,90],usbhidmixin:90,use:[0,1,2,3,4,6,7,10,14,20,21,25,27,29,34,36,41,42,50,52,53,57,60,61,62,63,69,72,74,75,82,84,85,87,88,90,92,96,99,100,105,106,107,110,113,114,121,132,142,145,146,149,150,152,154,155,157,158,159],use_filt:41,use_lock:100,use_thread:[24,31],useag:149,used:[3,4,6,7,10,11,12,14,21,22,25,34,38,41,44,49,59,63,64,66,69,72,74,75,81,82,84,85,90,92,95,96,99,100,103,104,106,107,108,110,112,113,114,118,122,145,148,150,153,154,158],useful:[1,4,7,11,12,21,57,99,113,142,146,150,154,158],useless:63,user:[1,2,3,5,10,24,30,31,32,35,41,42,43,50,53,54,82,87,91,92,96,103,105,108,113,114,146,149,150,153,154,155,158],usernam:142,usernot:114,usersjenielseqcodesrc:2,usersjenielsesourcereposqcodesdocsexamplesqcodesrc:2,usersoemdocu:54,usersqcod:57,userwarn:[13,50,57,105],uses:[1,2,3,21,41,62,82,90,91,112,113,145,155,158],using:[1,3,7,11,13,14,23,25,34,38,41,42,45,46,53,54,57,59,63,68,73,75,87,93,95,96,100,105,112,114,140,142,145,146,153,154,158],usual:[3,7,10,25,41,61,77,78,99,113,114,148,158],util:[0,3,4,17,18,31,34,35,36,37,42,63,82,90,114,128,142,147,159],utilis:4,utopia:142,v11:52,v1_point:6,v1_step:6,v1ind:6,v1point:6,v2_point:6,v2ind:6,v2point:6,v_amp_in:113,v_in:113,v_out:113,v_rang:[45,46],val:[0,3,4,6,8,21,24,25,36,41,57,82,83,84,85,114,116,159],val_map:[3,36,82,83],val_step:42,valid:[0,2,3,4,21,31,35,37,50,62,64,68,74,81,82,84,85,96,100,108,113,114,118,120,128,136,137,138,142,143,148,155,158,159],valid_sensor_unit:96,valid_vec:42,validate_al:74,validate_datadict:96,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,11,12,15,20,21,22,23,24,25,26,27,31,33,35,36,37,38,41,42,43,45,46,49,50,51,53,54,57,59,60,63,64,67,68,69,72,74,75,79,81,82,84,85,89,90,91,92,93,94,95,96,98,99,100,103,105,107,110,112,113,114,145,148,150,151,158,159],valuabl:[24,142],value_round:100,value_typ:2,valueerror:[3,4,42,56,62,66,88,90,103,114],valv:107,var_nam:34,vari:[13,25,60,64,81,148,158],variabl:[34,75,82,96,113,114,142,145,148,151,155,158],variat:96,varieti:150,variou:[2,91,95,97,98,106,112,113,114,142,145,150],vast:148,vcm:96,vdif:96,vector:[10,59,105,155,158],vendor:[3,4,24,25,33,36,37,38,42,44,60,91,92,95,97,98,106,107,112,113,114],vendor_id:97,ver1:[13,33],verbos:[17,25,90,93,95,99,110,114,142],verbose_channel:25,veri:[4,6,36,41,45,46,57,62,63,92,95,99,148,158],verifi:[3,56,58,59,113],vernier:113,versa:[38,57,59],version:[3,10,21,23,25,30,41,42,49,51,52,91,92,94,95,99,100,104,107,110,112,113,114,132,134,153,154,159],versu:[114,148,151],vertic:[52,57,110,146,151],veryfirst:6,vi_error_rsrc_nfound:158,vi_error_tmo:31,via:[1,3,6,14,23,41,44,46,54,57,63,77,78,96,105,106,113,114,122,140,148,149,151,154,158],vibuf:31,vice:[38,57],view:[14,49,50,92,142],violat:42,vipuint32:31,virtual:[3,105,106,110,113,159],virtualivvi:159,vis:59,visa:[3,4,18,30,31,34,41,42,44,53,62,82,87,91,93,94,95,96,97,98,99,100,104,106,107,108,110,112,113,114,115,116,154,158],visa_handl:[30,31,87,94,107],visainstru:[4,93,94,95,96,98,99,100,104,107,108,110,113,114,115,116,128,140,145,151,158],visaioerror:31,visalib:[4,31,41,87,107],visess:31,visibl:[45,46,63],vision:142,visit:142,visual:[112,148,153],visualis:[6,53,58,151],viuint32:31,viwrit:31,vmix:96,vna:[50,60,110,112],vna_:50,vna_output_power_set:60,vna_paramet:[50,110],vna_s11:50,vna_s11_magnitud:50,vna_s11_phas:50,vna_s11_power_set:50,vna_s11_trac:50,vna_s12_trac:50,vna_s13_trac:50,vna_s14_trac:50,vna_s21_trac:50,vna_s22_trac:50,vna_s23_trac:50,vna_s24_trac:50,vna_s31_trac:50,vna_s32_trac:50,vna_s33_trac:50,vna_s34_trac:50,vna_s41_trac:50,vna_s42_trac:50,vna_s43_trac:50,vna_s44_trac:50,vna_trac:60,vogel:142,volatg:56,volt:[3,25,26,27,28,35,37,38,56,57,92,94,100,113,114,116],volt_0:37,volt_1:37,volt_:113,volt_set:37,voltag:[3,4,6,10,12,14,21,23,24,25,26,27,28,38,42,45,46,47,48,56,82,90,94,96,99,100,106,113,114,116,136,137,145,148,151,158],voltage_limit:56,voltage_rang:56,voltage_range_statu:99,voltage_raw:[3,106,113],voltagedict:113,voltagedivid:90,voltageparamet:113,voltmet:158,volunt:142,vpp:[13,39],vrang:[3,31,45,46,99],vsd:20,w8320_1:3,wai:[1,2,3,4,6,7,11,14,20,25,33,36,42,53,57,66,82,99,107,113,114,120,142,146,148,149,150,158,159],wait:[4,13,25,28,30,34,53,60,74,79,82,92,93,95,96,97,105,107,113,114,128,145,151,158,159],wait_cycle_tim:[41,96],wait_equilibration_tim:[41,96],wait_for_operation_to_complet:114,wait_for_run:114,wait_l:30,wait_toler:[41,96],wait_trigg:114,wait_until_samples_captur:[34,113],wait_until_set_point_reach:[41,96],wait_valu:114,walk:159,wall:[5,10,50],want:[0,1,2,3,6,10,12,13,14,20,32,34,49,50,52,57,59,61,62,63,64,70,81,90,91,92,97,99,142,143,145,148,150,152,154,155,157,158,159],warm_up:[41,96],warmup_heat:41,warn:[2,3,12,13,49,50,53,57,59,79,91,103,135,155],warp:151,wav:[18,30,99],wave:[29,30,49,52,61],waveform:[21,32,34,39,49,58,61,95,104,108,114,136,140,151,158],waveform_ch1:34,waveform_nam:114,waveform_param:108,waveformgenerator_33xxx:[13,95],waveformlib:30,waveformlist:[34,54,114],web:[57,103],week:142,weight:2,wein_sim:4,weinschel:[3,4,90],weinschel_8320:[3,90,151],welcom:[19,34,142,152],well:[1,4,10,20,40,41,47,49,57,63,66,73,91,94,95,97,98,106,107,112,113,114,142,148,150,158],went:59,were:[6,10,11,13,69,70,82,92,130,148,150],wf_dummi:30,wfm001ch1:114,wfm002ch1:114,wfm1:114,wfm1ch1:114,wfm1ch2:114,wfm2:114,wfm2ch1:114,wfm2ch2:114,wfm:[29,34,53,54,114],wfm_ch1_n1:54,wfm_ch1_n2:54,wfm_ch2_n1:54,wfm_ch2_n2:54,wfmch1pos1:114,wfmch1pos2:114,wfmch2pos1:114,wfmname:[30,53,114],wfmx:[29,54,114],wfmx_file:[29,54],wfmxfilefold:114,wfname_l:[30,114],wfs1:114,wfs2:114,wfs:114,what:[2,10,11,12,14,24,25,34,40,41,42,45,46,53,57,59,62,76,79,81,84,85,87,94,107,114,116,128,142,148,149,151,155,158,159],whatev:[28,92,148],wheel:142,when:[1,3,4,6,10,11,12,14,21,23,24,34,38,39,41,42,45,46,50,52,53,56,59,64,65,66,69,72,81,82,85,86,90,91,92,94,98,99,100,103,106,108,112,113,114,119,142,149,150,153,155,158,159],whenev:[113,114,158],where:[2,3,4,6,10,11,12,14,21,22,23,25,34,41,45,46,49,54,63,64,70,73,81,84,85,92,94,95,100,103,106,107,113,114,117,119,120,142,148,149,150,155,158,159],wherea:[28,148],whether:[11,34,42,49,73,75,76,82,99,105,107,108,114,142,148,154,158],which:[1,2,3,4,6,7,10,20,21,23,25,29,32,34,41,50,53,57,59,64,66,68,69,70,72,73,75,78,79,81,82,84,86,90,91,92,95,96,98,99,105,107,110,112,113,114,117,119,122,142,145,148,149,150,154,155,158,159],whish:0,white:[49,63,120,142],whitespac:75,who:[42,142,152],whole:[3,20,21,58,75,81,106,113,132,142,145,148,158],whose:[69,113,122,158,159],why:[57,142,148],widen:63,widget:[1,35,37,40,41,134],width:[120,121],wihpniel:142,wihtout:15,william:[24,30,31,42,57,142],williamhpnielsen:[99,113],win32:91,win:2,window:[3,10,35,37,50,92,107,114,121,139,154],window_titl:120,windowtitl:37,wire:[6,8],wish:[114,148],with_bg_task:[1,25,31,60],within:[1,3,36,41,61,63,66,69,86,88,92,96,103,107,112,142,149,153,158],without:[10,15,22,34,41,56,59,63,97,110,138,146,148,150,151,154,155,158],won:50,wonder:57,word:[14,34,41,42,148,149,151,152],work:[2,3,4,10,14,20,32,36,44,48,51,56,62,63,70,71,95,100,104,108,110,113,114,117,119,142,146,148,149,151,153,154,155,158,159],work_stat:155,workflow:[146,151,153],world:[142,148,153],worri:56,wors:142,worthwhil:24,would:[1,2,8,21,35,37,42,72,110,142,148,152,158],wouldn:4,wrap:[13,21,22,57,71,97,98,107,114,158],wrapper:[8,63,93,100,107,110,155],write:[2,3,4,5,6,7,13,18,23,28,30,31,35,39,70,73,74,75,76,87,91,92,94,95,97,98,99,100,107,112,113,114,116,119,142,146,148,157,158],write_channel:98,write_confirm:76,write_copi:158,write_dataset:150,write_metadata:73,write_modul:113,write_period:[6,70,119],write_pin:91,write_port:91,write_raw:[31,97,98,107,114],written:[1,6,75,92,96,107,114,148,150],wrong:[56,59,94,142,148],wrote:18,ww2:43,x_data:5,x_i:10,x_length:1,x_measur:42,x_offset:33,x_shape:5,x_target:42,x_val:[0,159],x_x:10,x_y:10,x_z:10,xfullnam:16,xlabel:[34,59],xlen:16,xml:[114,142],xname:16,xnois:[34,113],xnum:10,xrm:57,xsp4t:140,xunit:16,xval:10,xxx:94,y_data:5,y_i:10,y_length:1,y_measur:42,y_offset:33,y_setpoint:5,y_shape:5,y_target:42,y_val:[0,159],y_y:10,y_z:10,yai:134,yaml:[2,41,151],yeah:[10,37],year:142,yellow:34,yes:[114,158],yet:[54,57,61,63,73,142,158],yfullnam:16,yield:[4,6,8,79,113],ylabel:[34,59],ylen:16,yml:[2,154],yname:16,ynois:[34,113],yokogawa:[90,135,140,151],yolo:2,you:[0,1,2,3,4,6,7,8,14,19,20,21,23,24,25,34,38,41,42,43,47,48,49,50,51,52,53,57,59,61,62,63,64,68,69,70,71,73,74,79,81,82,84,85,90,92,96,99,106,112,113,114,117,119,121,143,145,151,152,154,155,157,158,159],your:[3,4,13,14,24,25,57,61,62,63,68,74,90,91,95,96,97,98,106,112,113,114,142,151,152,155,158,159],yourself:[24,92,113,154],yrm:57,yscale:57,yunit:16,yvalu:12,z_data:5,z_i:10,z_measur:42,z_target:42,z_val:[0,159],z_z:10,zero:[3,5,16,29,30,34,42,45,46,53,54,59,61,64,81,82,92,96,98,100,103,107,114,150],zero_dataset:5,zero_posit:[44,98],zerodata:[5,14],zip:[10,30,31,59],ziuhfli:[57,90],ziuhfli_rrm:57,ziuhfli_sig:57,ziuhfli_xrm:57,ziuhfli_yrm:57,zn20:151,znb20:90,znb4:110,znb8:[50,110,138],znb:[50,90,132],znbchannel:110,zone:[41,59,96,107],zoom:103,zurich:57,zval:10},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","Dataset Benchmarking","The Context Manager aka the Measurement Object","DataSet Performance","Implementing doND using the dataset","Load old Data","Offline Plotting Tutorial","Paramtypes explained","Pedestrian example of subscribing to a DataSet","Example Measurements with Real Instruments","The Experiment Container","Experiment container and dasets","Subscriber with JSON export","Datasaving Examples","Logfile parsing","Plotting","Measure without a Loop","Parameters in QCoDeS","ScaledParameter","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","Example notebook for the Rigol DG 1062 instrument","QCoDeS example with SR830","Standford Research SR86x Lock-in Amplifier example (with buffered readout)","Qcodes example with Agilent 34400A","Qcodes example with Alazar ATS 9360","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Lakeshore 325 driver example","Example usage of the Lakeshore Model 372 to control the temperature of the Bluefors fridge","QCodes example with Mercury iPS","Example for Minicircuits Switch Boxes controlled via USB","Qcodes example with Newport AG-UC8 piezo motion controller","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with R&S HMC 8043 Power supply","Qcodes example with Rigol DP832 Power supply","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","Frequency trace","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+broadbean example with Tektronix AWG5208","QCoDeS example with AMI430","Qcodes example with HP8753D","Example Notebook for Keysight Infiniium Oscilloscopes","Example Notebook for Keysight Network Analyzers","Auto Color Scale","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.Newport 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.rigol.private package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.rohde_schwarz.private 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.10","Changelog for QCoDeS 0.1.11","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","Dataset Design","DataSet","Interdependent Parameters","Introduction","DataSet Specification","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":27,"33500b":39,"34400a":35,"34411a":26,"34465a":[26,28],"break":[131,132,134,135,136,140],"case":10,"class":[3,128,129,130],"default":[63,155],"export":16,"function":[54,74,128,129,130],"import":[25,26,27,34,53,61],"new":[6,131,132,134,135,136,137,138,139,140,142],"public":130,"switch":43,"while":60,ATS:[36,92],Not:4,One:34,THE:52,THERE:53,That:[4,42],The:[4,6,14,23,24,25],Using:[2,39,57,63,154,155],abort:156,access:[34,150],acquir:[52,60],acquisit:[33,49,52,61],action:[23,25,130],add:5,adding:3,advantech:91,after:[5,34],ag_uc8:98,aggreg:0,agil:[26,35,104],agilent_34400a:104,aka:6,alazar:36,alazartech:92,all:[20,148],american_magnet:105,ami430:[59,105],amplifi:[22,34],analyz:62,approach:30,arrai:[5,6,11,15,20],arrayparamet:[21,64],ascii:12,asymmetr:63,async:159,ats9360:92,ats9870:92,ats_acquisition_control:92,attent:[45,46],auto:63,automat:[41,63],avanc:159,averag:[49,51],awai:42,awg5014:[53,114],awg5014c:30,awg5200:114,awg5208:[58,114],awg520:114,awg70000a:114,awg70002a:[29,54,114],awg:[34,53,54],awgfilepars:114,background:63,base:[3,41],base_spdt:97,baselin:5,basic:[25,32,34,38,39,42,45,46,57,149,150,151],benchmark:[5,27,28,29,30,31,50,151],block:41,bluefor:41,bonu:4,box:43,breakif:65,broadbean:58,buffer:[31,33,34],bug:142,build:29,burst:[32,39],calibr:40,call:12,can:25,captur:[34,58],categori:10,caution:57,chang:[2,131,132,134,135,136,140],changelog:[131,132,133,134,135,136,137,138,139,140,141],channel:[3,34,41,45,46,50],channellist:66,chat:152,chees:10,clever:142,close:41,code:[142,144],color:63,combin:[0,89,159],combinedparamet:67,command:[32,40,123],commit:142,commun:143,compensatori:148,complic:58,comprehens:1,conduct:148,config:[2,14,68,130,155],configur:[2,34,155],congratul:4,connect:[42,62],construct:[6,150],cont:49,contain:[14,15],content:[25,53,57,63,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,142],context:6,continu:49,continuo:41,contribut:142,control:[41,43,44],core:2,creat:[3,4,61],creation:150,curv:[38,52],custom:[2,3,63],cutoff:63,cuttoff:63,d5a:100,daset:15,data:[5,9,10,17,25,34,61,63,130],dataarrai:69,databas:[6,14],dataformat:17,datasav:17,dataset:[5,7,8,12,70,146,147,148,149,150,151,158],date:154,decadac:94,decoupl:148,deferred_oper:124,defin:25,demo:20,demodul:57,depend:[10,61,154],design:146,develop:142,devic:90,dg1062:108,dg4000:108,differ:42,dimens:148,disabl:41,diskio:71,divid:22,dll:3,dond:8,doubl:5,dp821:108,dp831:108,dp832:[48,108],dp8xx:109,driver:[3,34,40,41,42,151,159],ds4000:108,dummi:17,dynam:3,e8267c:104,e8527d:104,elaps:18,emit:34,environ:154,error:39,event:1,examp:63,exampl:[3,4,6,11,12,13,15,17,25,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,61,62,63,148,151,158],experi:[2,6,14,15,149],explain:11,extran:32,f1d:100,familiar:142,fanci:10,faq:156,fast:38,featur:142,feedback:41,few:148,file:[4,14,29,53,155],find:18,first:42,fix:[131,134,135,136],format:142,formatloc:72,formatt:[23,73],frequenc:[12,13,51],fridg:41,from:[17,34,42,52,154],gener:[5,17,30,54,148],get:[18,27,28,53,58,152,154],git:142,github:154,global:25,gnuplotformat:75,good:148,gs200:[56,116],gs210:56,guid:[143,157],handl:[1,39],happi:42,harvard:94,heat:41,heater:[40,41],help:152,helper:125,hierarchi:145,higher:148,hmc8041:110,hmc8042:110,hmc8043:110,hmc804x:111,hmc:47,hole:10,homogen:63,horizont:49,how:[1,4,156],hp33210a:104,hp8133a:93,hp8753d:[60,93],hp_83650a:93,iPS:42,idea:42,idl:32,ilm200:107,immedi:34,imped:32,implement:8,improv:[131,132,134,135,136,137,138,139,140],includ:4,independ:10,indepent:10,individu:57,infiniium:[61,95],infrastructur:34,initi:[34,42],initialis:[27,53],input:[49,57],insert:5,insid:[5,14],instal:154,instanti:[20,25,42],instrument:[3,4,13,17,20,24,25,32,58,61,62,77,130,145,158,159],instrument_driv:[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],instrumentchannel:78,intent:148,interact:25,interdepend:148,interfac:[1,34,150],interleav:10,intern:32,interrupt:10,introduct:[63,146,148,149,150,158],invalid:42,involv:3,ipinstru:76,ips120:107,issu:150,ithaco:[37,106],ithaco_1211:106,ivvi:100,json:16,keep:154,keithlei:38,keithley_2000:114,keithley_2400:114,keithley_2600:114,keithley_2600_channel:114,keithley_2700:114,kelvinox:107,keysight:[26,28,31,39,61,62,95],keysight_33500b:95,keysight_33500b_channel:95,keysight_34460a:95,keysight_34461a:95,keysight_34465a:95,keysight_34470a:95,keysight_b2962a:95,keysight_e8267d:95,keysight_n5183b:95,keysightagilent_33xxx:95,lakeshor:[40,41,96],lakeshore_bas:96,latest:154,lazi:53,level:32,linkag:145,list:[33,53,54],live:25,load:[9,25,40],load_data:117,locat:[23,25],lock:34,logfil:18,loop:[5,15,17,20,24,25,26,41,79,130,158],m3201a:95,m3300a:95,mai:6,make:[53,54,58],manag:6,mani:5,manual:3,manualparamet:80,matplot:[1,121],matplotlib:1,measur:[6,13,20,24,25,57,60,62,118,130,148,156,158,159],mercuri:42,mercuryip:107,mercuryips_visa:107,messag:142,meta:159,metadata:[126,150],minicircuit:[43,97],misc:130,miss:6,mode:[39,53],model:41,model_325:96,model_336:96,model_372:96,modul:[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],more:[3,152,155],motion:44,multiparamet:[6,21,81],multipl:[25,62],multipli:22,n51x1:95,n5230c:95,n5245a:95,n52xx:95,necessari:148,need:20,network:62,new_data:119,newport:[44,98],noisi:63,note:142,notebook:[32,61,62],notif:12,now:42,nplc:27,number:148,numer:11,object:[6,145],observ:41,offlin:10,old:9,onc:5,one:[26,34,62],onli:20,onto:58,open:150,oper:[38,54],optimis:6,order:12,organ:3,origin:42,oscilloscop:[49,52,61],other:154,out:49,outer:5,outlier:63,output:[20,25,57],overview:[42,45,46,158],oxford:107,packag:[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],paramamet:41,paramet:[0,3,4,5,10,21,24,33,34,42,62,82,145,148,158,159],paramspec:150,paramtyp:11,pars:18,part:[26,58],pcie_1751:91,pedestrian:12,per:[34,148],percentil:63,perform:7,persist:150,phase:153,piezo:44,plai:58,plan:153,plot:[1,10,19,25,63,120,121,130,148,151],plotter:12,point:40,possibl:148,power:[6,47,48,51],practic:148,pre:28,predefin:50,prepar:61,prerequisit:57,print:6,privat:[109,111,129],problem:63,project:153,provid:25,pull:142,puls:34,push:142,py_head:102,pyqtgraph:120,pyvisa:4,qcmatplotlib:121,qcode:[2,3,6,21,25,26,33,35,36,37,38,39,42,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,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,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,131,132,133,134,135,136,137,138,139,140,151,153,154,155,156],qdac:[31,45,46,99],qdac_channel:[46,99],qdev:99,qtplot:[1,120],queri:18,qutech:100,ramp:42,random:6,rang:41,raster:10,rate:34,raw:26,rc_sp4t:97,rc_spdt:97,reach:41,read:[26,34,41,49,62],readout:[34,41],real:13,realli:[142,148],record:49,rectangular:10,reg:102,region:42,regular:10,releas:154,remov:3,report:142,request:142,requir:[150,154],rescal:10,research:34,resist:22,respons:158,restructur:148,result:[27,28],rigol:[32,48,108,109],risk:63,rohd:[49,50],rohde_schwarz:[110,111],rough:145,rte1000:110,rto1000:110,rto:49,rudat_13g_90:97,run:[17,49,53,142,156],s5i:100,safe:42,sampl:[6,34,57],save:[2,5,155],scale:63,scaledparamet:22,scan:10,schwarz:[49,50],scientif:148,scope:[57,58],script:27,second:42,select:41,send:[53,54],sensor:[40,41,45,46],sent:34,sequenc:[54,58],seqx:29,seri:49,set:[25,27,28,32,34,40,45,46,49,52,57,148],setpoint:41,setup:[5,26,34,41,61,142],sg384:113,sgs100a:110,shot:[31,34],signal:[34,49,57],signal_hound:112,signatur:12,sim928:113,simpl:[0,1,3,6,10,34,62],simul:[3,4,42,159],singl:[10,31,49,60],smr40:110,snapshot:24,softwar:28,some:[6,53],sourc:144,spcerr:102,specif:150,spectrum:[101,102],sr560:113,sr830:[33,113],sr860:[18,113],sr865:113,sr865a:113,sr86x:[34,113],stage:148,standardparamet:83,standford:34,stanford_research:113,start:[17,154],state:6,station:[122,130,145],storag:150,store:5,string:10,stuff:31,style:[54,142],submodul:[90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],subpackag:[90,101,108,110],subplot:1,subscrib:[12,16,150],subscript:6,summari:28,suppli:[47,48],sweep:[1,10,13,24,26,41,42,60,148,159],sweeper:57,sweepfixedvalu:84,sweepvalu:[85,145],sync:[31,32],tabl:[25,53,57,63],target:42,task:86,tektronix:[29,30,52,53,54,58,114],temperatur:[41,45,46],terminolog:150,test:[4,17,90,142],text:11,them:53,third:42,tick:10,time:[18,27],todo:[79,85,107,110,114,145,155,159],tps2012:[52,114],trace:[13,49,51,60,61,62],train:34,transimped:22,tree:148,triangl:13,trigger:[28,32,34,49,61],triton:[55,107],tutori:[10,25,159],two:[10,26,42],typic:25,uc8:44,uhf:57,unit:[10,41],unrel:41,updat:[40,154,155],upload:[29,30],usag:[32,39,41,45,46,57,142,156],usb:43,usb_sa124b:112,usb_spdt:97,usbhidmixin:97,user:157,using:[6,8,151],util:[92,123,124,125,126,127,130,150],valid:[127,145],valu:[10,34,40,155],variabl:2,versu:26,vertic:49,via:[34,43,53],visainstru:[3,87],visualis:18,voltag:22,wait:[41,88],warp:10,waveform:[29,30,53,54],weinschel:115,weinschel_8320:[4,115],what:[3,4],without:[20,50],word:57,work:41,workflow:25,write:[150,159],yaml:4,yokogawa:[56,116],you:142,your:[2,154],ziuhfli:103,zn20:50,znb20:110,znb:110}})
\ No newline at end of file