diff --git a/_modules/index.html b/_modules/index.html index 2084e9d9098..4a2cccc8277 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -226,6 +226,7 @@

All modules for which code is available

  • qcodes.instrument_drivers.tektronix.Keithley_2000
  • qcodes.instrument_drivers.tektronix.Keithley_2400
  • qcodes.instrument_drivers.tektronix.Keithley_2600
  • +
  • qcodes.instrument_drivers.tektronix.Keithley_2600_channels
  • qcodes.instrument_drivers.tektronix.Keithley_2700
  • qcodes.instrument_drivers.tektronix.TPS2012
  • qcodes.instrument_drivers.test
  • diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html index e99502b69a2..fe1e8b63ecb 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html @@ -163,25 +163,84 @@

    Source code for qcodes.instrument_drivers.tektronix.Keithley_2600

    -from qcodes import VisaInstrument
    +import warnings
    +
    +from qcodes import VisaInstrument
    +from qcodes.instrument.channel import InstrumentChannel
    +from qcodes.instrument.base import Instrument
    +import qcodes.utils.validators as vals
     
     
     
    [docs]class Keithley_2600(VisaInstrument): """ - channel: use channel 'a' or 'b' - This is the qcodes driver for the Keithley_2600 Source-Meter series, tested with Keithley_2614B Status: beta-version. TODO: - - Add all parameters that are in the manual - - range and limit should be set according to mode + - Make a channelised version for the two channels - add ramping and such stuff """ - def __init__(self, name, address, channel, **kwargs): + def __init__(self, name: str, address: str, channel: str, + model: str=None, **kwargs) -> None: + """ + Args: + name: Name to use internally in QCoDeS + address: VISA ressource address + channel: Either 'a' or 'b' + model: The model type, e.g. '2614B' + """ + + warnings.warn("This Keithley driver is old and will be removed " + "from QCoDeS soon. Use Keithley_2600_channels " + "instead, it is MUCH better.", UserWarning) + super().__init__(name, address, terminator='\n', **kwargs) + + model = self.ask('localnode.model') + + knownmodels = ['2601B', '2602B', '2604B', '2611B', '2612B', + '2614B', '2635B', '2636B'] + if model not in knownmodels: + kmstring = ('{}, '*(len(knownmodels)-1)).format(*knownmodels[:-1]) + kmstring += 'and {}.'.format(knownmodels[-1]) + raise ValueError('Unknown model. Known model are: ' + + kmstring) + + self.model = model + + vranges = {'2601B': [0.1, 1, 6, 40], + '2602B': [0.1, 1, 6, 40], + '2604B': [0.1, 1, 6, 40], + '2611B': [0.2, 2, 20, 200], + '2612B': [0.2, 2, 20, 200], + '2614B': [0.2, 2, 20, 200], + '2635B': [0.2, 2, 20, 200], + '2636B': [0.2, 2, 20, 200] + } + + # TODO: In pulsed mode, models 2611B, 2612B, and 2614B + # actually allow up to 10 A. + iranges = {'2601B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2602B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2604B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2611B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2612B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2614B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2634B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5], + '2635B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5], + '2636B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5]} + self._channel = channel self.add_parameter('volt', @@ -200,26 +259,51 @@

    Source code for qcodes.instrument_drivers.tektronix.Keithley_2600

    get_cmd='source.func', get_parser=float, set_cmd='source.func={:d}', - val_mapping={'current': 0, 'voltage': 1}) + val_mapping={'current': 0, 'voltage': 1}, + docstring='Selects the output source.') self.add_parameter('output', get_cmd='source.output', get_parser=float, set_cmd='source.output={:d}', val_mapping={'on': 1, 'off': 0}) - # Source range - # needs get after set - self.add_parameter('rangev', + self.add_parameter('nplc', + label='Number of power line cycles', + set_cmd='measure.nplc={:.4f}', + get_cmd='measure.nplc', + get_parser=float, + vals=vals.Numbers(0.001, 25)) + # volt range + # needs get after set (WilliamHPNielsen): why? + self.add_parameter('sourcerange_v', + label='voltage source range', get_cmd='source.rangev', get_parser=float, set_cmd='source.rangev={:.4f}', - unit='V') - # Measure range + unit='V', + vals=vals.Enum(*vranges[self.model])) + self.add_parameter('measurerange_v', + label='voltage measure range', + get_cmd='measure.rangev', + set_cmd='measure.rangev={:.4f}', + unit='V', + vals=vals.Enum(*vranges[self.model])) + # current range # needs get after set - self.add_parameter('rangei', + self.add_parameter('sourcerange_i', + label='current source range', get_cmd='source.rangei', get_parser=float, set_cmd='source.rangei={:.4f}', - unit='A') + unit='A', + vals=vals.Enum(*iranges[self.model])) + + self.add_parameter('measurerange_i', + label='current measure range', + get_cmd='measure.rangei', + get_parser=float, + set_cmd='measure.rangei={:.4f}', + unit='A', + vals=vals.Enum(*iranges[self.model])) # Compliance limit self.add_parameter('limitv', get_cmd='source.limitv', @@ -232,9 +316,16 @@

    Source code for qcodes.instrument_drivers.tektronix.Keithley_2600

    get_parser=float, set_cmd='source.limiti={:.4f}', unit='A') + # display + self.add_parameter('display_settext', + set_cmd=self._display_settext, + vals=vals.Strings()) self.connect_message() + def _display_settext(self, text): + self.visa_handle.write('display.settext("{}")'.format(text)) +
    [docs] def get_idn(self): IDN = self.ask_raw('*IDN?') vendor, model, serial, firmware = map(str.strip, IDN.split(',')) @@ -244,8 +335,32 @@

    Source code for qcodes.instrument_drivers.tektronix.Keithley_2600

    'serial': serial, 'firmware': firmware} return IDN
    +
    [docs] def display_clear(self): + """ + This function clears the display, but also leaves it in user mode + """ + self.visa_handle.write('display.clear()')
    + +
    [docs] def display_normal(self): + """ + Set the display to the default mode + """ + self.visa_handle.write('display.screen = display.SMUA_SMUB')
    + +
    [docs] def exit_key(self): + """ + Get back the normal screen after an error: + send an EXIT key press event + """ + self.visa_handle.write('display.sendkey(75)')
    +
    [docs] def reset(self): - self.write('reset()')
    + """ + Reset instrument to factory defaults + """ + self.write('reset()') + # remember to update all the metadata + self.snapshot(update=True)
    [docs] def ask(self, cmd): return super().ask('print(smu{:s}.{:s})'.format(self._channel, cmd))
    diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600_channels.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600_channels.html new file mode 100644 index 00000000000..c9f12e960d2 --- /dev/null +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600_channels.html @@ -0,0 +1,680 @@ + + + + + + + + + + + qcodes.instrument_drivers.tektronix.Keithley_2600_channels — QCoDeS 0.1.7 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    +
    + + + + + + + + + + + + + + + + +
    + +
      + +
    • Docs »
    • + +
    • Module code »
    • + +
    • qcodes.instrument_drivers.tektronix.Keithley_2600_channels
    • + + +
    • + + + +
    • + +
    + + +
    +
    +
    +
    + +

    Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channels

    +import logging
    +import struct
    +import numpy as np
    +from typing import List, Dict
    +
    +import qcodes as qc
    +from qcodes import VisaInstrument, DataSet
    +from qcodes.instrument.channel import InstrumentChannel
    +from qcodes.instrument.base import Instrument
    +from qcodes.instrument.parameter import ArrayParameter
    +import qcodes.utils.validators as vals
    +
    +
    +log = logging.getLogger(__name__)
    +
    +
    +
    [docs]class LuaSweepParameter(ArrayParameter): + """ + Parameter class to hold the data from a + deployed Lua script sweep. + """ + + def __init__(self, name: str, instrument: Instrument) -> None: + + super().__init__(name=name, + shape=(1,), + docstring='Holds a sweep') + + self._instrument = instrument + +
    [docs] def prepareSweep(self, start: float, stop: float, steps: int, + mode: str) -> None: + """ + Builds setpoints and labels + + Args: + start: Starting point of the sweep + stop: Endpoint of the sweep + steps: No. of sweep steps + mode: Type of sweep, either 'IV' (voltage sweep) + or 'VI' (current sweep) + """ + + if mode not in ['IV', 'VI']: + raise ValueError('mode must be either "VI" or "IV"') + + self.shape = (steps,) + + if mode == 'IV': + self.unit = 'A' + self.setpoint_names = ('Voltage',) + self.setpoint_units = ('V',) + self.label = 'current' + self.name = 'iv_sweep' + + if mode == 'VI': + self.unit = 'V' + self.setpoint_names = ('Current',) + self.setpoint_units = ('A',) + self.label = 'voltage' + self.name = 'vi_sweep' + + self.setpoints = (tuple(np.linspace(start, stop, steps)),) + + self.start = start + self.stop = stop + self.steps = steps + self.mode = mode
    + +
    [docs] def get(self) -> np.ndarray: + + data = self._instrument._fast_sweep(self.start, + self.stop, + self.steps, + self.mode) + + return data
    + + +
    [docs]class KeithleyChannel(InstrumentChannel): + """ + Class to hold the two Keithley channels, i.e. + SMUA and SMUB. + """ + + def __init__(self, parent: Instrument, name: str, channel: str) -> None: + """ + Args: + parent: The Instrument instance to which the channel is + to be attached. + name: The 'colloquial' name of the channel + channel: The name used by the Keithley, i.e. either + 'smua' or 'smub' + """ + + if channel not in ['smua', 'smub']: + raise ValueError('channel must be either "smub" or "smua"') + + super().__init__(parent, name) + self.model = self._parent.model + vranges = self._parent._vranges + iranges = self._parent._iranges + + self.add_parameter('volt', + get_cmd='{}.measure.v()'.format(channel), + get_parser=float, + set_cmd='{}.source.levelv={}'.format(channel, + '{:.12f}'), + label='Voltage', + unit='V') + + self.add_parameter('curr', + get_cmd='{}.measure.i()'.format(channel), + get_parser=float, + set_cmd='{}.source.leveli={}'.format(channel, + '{:.12f}'), + label='Current', + unit='A') + + self.add_parameter('mode', + get_cmd='{}.source.func'.format(channel), + get_parser=float, + set_cmd='{}.source.func={}'.format(channel, '{:d}'), + val_mapping={'current': 0, 'voltage': 1}, + docstring='Selects the output source.') + + self.add_parameter('output', + get_cmd='{}.source.output'.format(channel), + get_parser=float, + set_cmd='{}.source.output={}'.format(channel, + '{:d}'), + val_mapping={'on': 1, 'off': 0}) + + self.add_parameter('nplc', + label='Number of power line cycles', + set_cmd='{}.measure.nplc={}'.format(channel, + '{:.4f}'), + get_cmd='{}.measure.nplc'.format(channel), + get_parser=float, + vals=vals.Numbers(0.001, 25)) + # volt range + # needs get after set (WilliamHPNielsen): why? + self.add_parameter('sourcerange_v', + label='voltage source range', + get_cmd='{}.source.rangev'.format(channel), + get_parser=float, + set_cmd='{}.source.rangev={}'.format(channel, + '{:.4f}'), + unit='V', + vals=vals.Enum(*vranges[self.model])) + self.add_parameter('measurerange_v', + label='voltage measure range', + get_cmd='{}.measure.rangev'.format(channel), + set_cmd='{}.measure.rangev={}'.format(channel, + '{:.4f}'), + unit='V', + vals=vals.Enum(*vranges[self.model])) + # current range + # needs get after set + self.add_parameter('sourcerange_i', + label='current source range', + get_cmd='{}.source.rangei'.format(channel), + get_parser=float, + set_cmd='{}.source.rangei={}'.format(channel, + '{:.4f}'), + unit='A', + vals=vals.Enum(*iranges[self.model])) + + self.add_parameter('measurerange_i', + label='current measure range', + get_cmd='{}.measure.rangei'.format(channel), + get_parser=float, + set_cmd='{}.measure.rangei={}'.format(channel, + '{:.4f}'), + unit='A', + vals=vals.Enum(*iranges[self.model])) + # Compliance limit + self.add_parameter('limitv', + get_cmd='{}.source.limitv'.format(channel), + get_parser=float, + set_cmd='{}.source.limitv={}'.format(channel, + '{:.4f}'), + unit='V') + # Compliance limit + self.add_parameter('limiti', + get_cmd='{}.source.limiti'.format(channel), + get_parser=float, + set_cmd='{}.source.limiti={}'.format(channel, + '{:.4f}'), + unit='A') + + self.add_parameter('fastsweep', + parameter_class=LuaSweepParameter) + + self.channel = channel + + # We need to avoid updating the sweep parameter +
    [docs] def snapshot_base(self, update: bool=False) -> Dict: + params_to_skip_update = ['fastsweep'] + dct = super().snapshot_base(update=update, + params_to_skip_update=params_to_skip_update) + return dct
    + +
    [docs] def reset(self): + """ + Reset instrument to factory defaults. + This resets only the relevant channel. + """ + self.write('{}.reset()'.format(self.channel)) + # remember to update all the metadata + log.debug('Reset channel {}.'.format(self.channel) + + 'Updating settings...') + self.snapshot(update=True)
    + +
    [docs] def doFastSweep(self, start: float, stop: float, + steps: int, mode: str) -> DataSet: + """ + Perform a fast sweep using a deployed lua script and + return a QCoDeS DataSet with the sweep. + + Args: + start: starting sweep value (V or A) + stop: end sweep value (V or A) + steps: number of steps + mode: What kind of sweep to make. + 'IV' (I versus V) or 'VI' (V versus I) + """ + # prepare setpoints, units, name + self.fastsweep.prepareSweep(start, stop, steps, mode) + + data = qc.Measure(self.fastsweep).run() + + return data
    + + def _fast_sweep(self, start: float, stop: float, steps: int, + mode: str='IV') -> np.ndarray: + """ + Perform a fast sweep using a deployed Lua script. + This is the engine that forms the script, uploads it, + runs it, collects the data, and casts the data correctly. + + Args: + start: starting voltage + stop: end voltage + steps: number of steps + mode: What kind of sweep to make. + 'IV' (I versus V) or 'VI' (V versus I) + """ + + channel = self.channel + + # an extra visa query, a necessary precaution + # to avoid timing out when waiting for long + # measurements + nplc = self.nplc() + + dV = (stop-start)/(steps-1) + + if mode == 'IV': + meas = 'i' + sour = 'v' + func = '1' + + if mode == 'VI': + meas = 'v' + sour = 'i' + func = '0' + + script = ['{}.measure.nplc = {:.12f}'.format(channel, nplc), + '{}.source.output = 1'.format(channel), + 'startX = {:.12f}'.format(start), + 'dX = {:.12f}'.format(dV), + '{}.source.output = 1'.format(channel), + '{}.source.func = {}'.format(channel, func), + '{}.measure.count = 1'.format(channel), + '{}.nvbuffer1.clear()'.format(channel), + '{}.nvbuffer1.appendmode = 1'.format(channel), + 'for index = 1, {} do'.format(steps), + ' target = startX + (index-1)*dX', + ' {}.source.level{} = target'.format(channel, sour), + ' {}.measure.{}({}.nvbuffer1)'.format(channel, meas, + channel), + 'end', + 'format.data = format.REAL32', + 'format.byteorder = format.LITTLEENDIAN', + 'printbuffer(1, {}, {}.nvbuffer1.readings)'.format(steps, + channel)] + + self.write(self._parent._scriptwrapper(program=script, debug=True)) + # we must wait for the script to execute + oldtimeout = self._parent.visa_handle.timeout + self._parent.visa_handle.timeout = 2*1000*steps*nplc/50 + 5000 + + # now poll all the data + # The problem is that a '\n' character might by chance be present in + # the data + fullsize = 4*steps + 3 + received = 0 + data = b'' + while received < fullsize: + data_temp = self._parent.visa_handle.read_raw() + received += len(data_temp) + data += data_temp + + # From the manual p. 7-94, we know that a b'#0' is prepended + # to the data and a b'\n' is appended + data = data[2:-1] + + outdata = np.array(list(struct.iter_unpack('<f', data))) + outdata = np.reshape(outdata, len(outdata)) + + self._parent.visa_handle.timeout = oldtimeout + + return outdata
    + + +
    [docs]class Keithley_2600(VisaInstrument): + """ + This is the qcodes driver for the Keithley_2600 Source-Meter series, + tested with Keithley_2614B + + """ + def __init__(self, name: str, address: str, **kwargs) -> None: + """ + Args: + name: Name to use internally in QCoDeS + address: VISA ressource address + """ + super().__init__(name, address, terminator='\n', **kwargs) + + model = self.ask('localnode.model') + + knownmodels = ['2601B', '2602B', '2604B', '2611B', '2612B', + '2614B', '2635B', '2636B'] + if model not in knownmodels: + kmstring = ('{}, '*(len(knownmodels)-1)).format(*knownmodels[:-1]) + kmstring += 'and {}.'.format(knownmodels[-1]) + raise ValueError('Unknown model. Known model are: ' + + kmstring) + + self.model = model + + self._vranges = {'2601B': [0.1, 1, 6, 40], + '2602B': [0.1, 1, 6, 40], + '2604B': [0.1, 1, 6, 40], + '2611B': [0.2, 2, 20, 200], + '2612B': [0.2, 2, 20, 200], + '2614B': [0.2, 2, 20, 200], + '2635B': [0.2, 2, 20, 200], + '2636B': [0.2, 2, 20, 200]} + + # TODO: In pulsed mode, models 2611B, 2612B, and 2614B + # actually allow up to 10 A. + self._iranges = {'2601B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2602B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2604B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 3], + '2611B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2612B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2614B': [100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 0.01, 0.1, 1, 1.5], + '2634B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5], + '2635B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5], + '2636B': [1e-9, 10e-9, 100e-9, 1e-6, 10e-6, 100e-6, + 1e-3, 10e-6, 100e-3, 1, 1.5]} + + # Add the channel to the instrument + for ch in ['a', 'b']: + ch_name = 'smu{}'.format(ch) + channel = KeithleyChannel(self, ch_name, ch_name) + self.add_submodule(ch_name, channel) + + # display + self.add_parameter('display_settext', + set_cmd=self._display_settext, + vals=vals.Strings()) + + self.connect_message() + + def _display_settext(self, text): + self.visa_handle.write('display.settext("{}")'.format(text)) + +
    [docs] def get_idn(self): + IDN = self.ask_raw('*IDN?') + vendor, model, serial, firmware = map(str.strip, IDN.split(',')) + model = model[6:] + + IDN = {'vendor': vendor, 'model': model, + 'serial': serial, 'firmware': firmware} + return IDN
    + +
    [docs] def display_clear(self): + """ + This function clears the display, but also leaves it in user mode + """ + self.visa_handle.write('display.clear()')
    + +
    [docs] def display_normal(self): + """ + Set the display to the default mode + """ + self.visa_handle.write('display.screen = display.SMUA_SMUB')
    + +
    [docs] def exit_key(self): + """ + Get back the normal screen after an error: + send an EXIT key press event + """ + self.visa_handle.write('display.sendkey(75)')
    + +
    [docs] def reset(self): + """ + Reset instrument to factory defaults. + This resets both channels. + """ + self.write('reset()') + # remember to update all the metadata + log.debug('Reset instrument. Re-querying settings...') + self.snapshot(update=True)
    + +
    [docs] def ask(self, cmd: str) -> str: + """ + Override of normal ask. This is important, since queries to the + instrument must be wrapped in 'print()' + """ + return super().ask('print({:s})'.format(cmd))
    + + @staticmethod + def _scriptwrapper(program: List[str], debug: bool=False) -> str: + """ + wraps a program so that the output can be put into + visa_handle.write and run. + The script will run immediately as an anonymous script. + + Args: + program: A list of program instructions. One line per + list item, e.g. ['for ii = 1, 10 do', 'print(ii)', 'end' ] + """ + mainprog = '\r\n'.join(program) + '\r\n' + wrapped = 'loadandrunscript\r\n{}endscript\n'.format(mainprog) + if debug: + log.debug('Wrapped the following script:') + log.debug(wrapped) + return wrapped
    +
    + +
    +
    + +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_notebooks/Tutorial.html b/_notebooks/Tutorial.html index a74ed4defd1..854ee262f16 100644 --- a/_notebooks/Tutorial.html +++ b/_notebooks/Tutorial.html @@ -37,7 +37,7 @@ - + @@ -538,7 +538,7 @@

    Example: multiple 2D measurements with live plotting - + diff --git a/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html b/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html index ff50b3f836c..799bfc179a2 100644 --- a/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html +++ b/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html @@ -37,7 +37,7 @@ - + @@ -110,6 +110,10 @@
  • Part two - QCoDeS looping
  • +
  • Benchmark
  • +
  • NPLC = 0.5, N = 100
  • +
  • NPLC = 0.5, N = 1000
  • +
  • NPLC = 0.05, N = 1000
  • Benchmark of Keysight 34465A
  • Results summary
  • QDac and Keysight 34465 sync and buffer
  • @@ -437,7 +441,7 @@

    2D Sweep - + diff --git a/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.html b/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.html new file mode 100644 index 00000000000..1176af35679 --- /dev/null +++ b/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.html @@ -0,0 +1,1236 @@ + + + + + + + + + + + Benchmark — QCoDeS 0.1.7 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    + + + + + + +
    +
    + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    +
    + +
    +

    Benchmark

    +

    Below we use two methods of the Keithley 2600 to make an IV-curve. +Plugged into the terminal is a 5 MOhm resistor. The voltage is swept +from 1 V to 10 V.

    +

    The two methods are normal “naive” QCoDeS set-get and deployed script +mode. In the former mode, a set command is send for each voltage set +point and a get command is sent for each current value to be +measured. In the latter mode, a Lua script is formed and uploaded to the +SourceMeter. The script then runs locally on the machine and all data is +polled in one go (in a binary format).

    +
    +

    Results

    +
    +

    NPLC = 0.5 (10 ms ap. time), N = 100

    +

    Set-get: 1.29 s

    +

    Script: 1.08 s

    +
    +
    +

    NPLC = 0.5 (10 ms ap. time), N = 1000

    +

    Set-get: 12.6 s

    +

    Script: 10.5 s

    +
    +
    +

    NPLC = 0.05 (1ms ap. time), N = 100

    +

    Set-get: 370 ms

    +

    Script: 182 ms

    +
    +
    +

    NPLC = 0.05 (1ms ap. time), N = 1000

    +

    Set-get: 3.38 s

    +

    Script: 1.44 s

    +
    +
    +
    +

    Imports and initialisation

    +
    import qcodes as qc
    +from qcodes.instrument.base import Instrument
    +from qcodes.instrument_drivers.tektronix.Keithley_2600 import Keithley_2600
    +from qcodes.instrument_drivers.tektronix.Keithley_2600_channels import Keithley_2600 as Keithley_2600_channels
    +from typing import List
    +from qcodes import DataSet
    +from qcodes.instrument.parameter import ArrayParameter
    +import struct
    +
    +
    +
    % matplotlib notebook
    +import matplotlib.pyplot as plt
    +import numpy as np
    +
    +
    +
    keith = Keithley_2600_channels('keith', 'TCPIP0::192.168.15.116::inst0::INSTR', model='2614B')
    +
    +
    +
    Connected to: Keithley Instruments Inc. 2614B (serial:4084407, firmware:3.2.1) in 0.15s
    +
    +
    +
    +
    +
    +

    NPLC = 0.5, N = 100

    +
    # Preparation for a simple I-V curve with a 5 MOhm resistor
    +
    +keith.smua.reset()
    +keith.smua.nplc(0.5)
    +keith.smua.mode('voltage')
    +keith.smua.sourcerange_v(20)
    +keith.smua.measurerange_i(100e-6)
    +keith.smua.output('on')
    +
    +N = 100
    +
    +
    +
    +

    SET-GET

    +
    %%timeit
    +
    +loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr)
    +data = loop.get_data_set(name='N_{}_setget'.format(N))
    +_ = loop.run()  # run the loop
    +
    +
    +
    Started at 2017-09-18 16:49:59
    +DataSet:
    +   location = 'data/2017-09-18/#076_N_100_setget_16-49-59'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:00
    +Started at 2017-09-18 16:50:00
    +DataSet:
    +   location = 'data/2017-09-18/#077_N_100_setget_16-50-00'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:02
    +Started at 2017-09-18 16:50:02
    +DataSet:
    +   location = 'data/2017-09-18/#078_N_100_setget_16-50-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:03
    +Started at 2017-09-18 16:50:03
    +DataSet:
    +   location = 'data/2017-09-18/#079_N_100_setget_16-50-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:04
    +Started at 2017-09-18 16:50:04
    +DataSet:
    +   location = 'data/2017-09-18/#080_N_100_setget_16-50-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:05
    +Started at 2017-09-18 16:50:05
    +DataSet:
    +   location = 'data/2017-09-18/#081_N_100_setget_16-50-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:07
    +Started at 2017-09-18 16:50:07
    +DataSet:
    +   location = 'data/2017-09-18/#082_N_100_setget_16-50-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:08
    +Started at 2017-09-18 16:50:08
    +DataSet:
    +   location = 'data/2017-09-18/#083_N_100_setget_16-50-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:50:09
    +1.29 s ± 15.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    +

    SCRIPT

    +
    %%timeit
    +
    +data = keith.smua.doFastSweep(1, 10, N, mode='IV')
    +
    +
    +
    DataSet:
    +   location = 'data/2017-09-18/#084_{name}_16-50-18'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:19
    +DataSet:
    +   location = 'data/2017-09-18/#085_{name}_16-50-19'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:20
    +DataSet:
    +   location = 'data/2017-09-18/#086_{name}_16-50-20'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:21
    +DataSet:
    +   location = 'data/2017-09-18/#087_{name}_16-50-21'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:22
    +DataSet:
    +   location = 'data/2017-09-18/#088_{name}_16-50-22'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:23
    +DataSet:
    +   location = 'data/2017-09-18/#089_{name}_16-50-23'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:24
    +DataSet:
    +   location = 'data/2017-09-18/#090_{name}_16-50-24'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:26
    +DataSet:
    +   location = 'data/2017-09-18/#091_{name}_16-50-26'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:50:27
    +1.08 s ± 4.67 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    +
    +

    NPLC = 0.5, N = 1000

    +
    # Preparation for a simple I-V curve with a 5 MOhm resistor
    +
    +keith.smua.reset()
    +keith.smua.nplc(0.5)
    +keith.smua.mode('voltage')
    +keith.smua.sourcerange_v(20)
    +keith.smua.measurerange_i(100e-6)
    +keith.smua.output('on')
    +
    +N = 1000
    +
    +
    +
    +

    SET-GET

    +
    %%timeit
    +
    +loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr)
    +data = loop.get_data_set(name='N_{}_setget'.format(N))
    +_ = loop.run()  # run the loop
    +
    +
    +
    Started at 2017-09-18 16:51:20
    +DataSet:
    +   location = 'data/2017-09-18/#092_N_1000_setget_16-51-20'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:51:32
    +Started at 2017-09-18 16:51:32
    +DataSet:
    +   location = 'data/2017-09-18/#093_N_1000_setget_16-51-32'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:51:45
    +Started at 2017-09-18 16:51:45
    +DataSet:
    +   location = 'data/2017-09-18/#094_N_1000_setget_16-51-45'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:51:58
    +Started at 2017-09-18 16:51:58
    +DataSet:
    +   location = 'data/2017-09-18/#095_N_1000_setget_16-51-58'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:52:10
    +Started at 2017-09-18 16:52:10
    +DataSet:
    +   location = 'data/2017-09-18/#096_N_1000_setget_16-52-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:52:23
    +Started at 2017-09-18 16:52:23
    +DataSet:
    +   location = 'data/2017-09-18/#097_N_1000_setget_16-52-23'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:52:35
    +Started at 2017-09-18 16:52:35
    +DataSet:
    +   location = 'data/2017-09-18/#098_N_1000_setget_16-52-35'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:52:48
    +Started at 2017-09-18 16:52:48
    +DataSet:
    +   location = 'data/2017-09-18/#099_N_1000_setget_16-52-48'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:53:00
    +12.6 s ± 21.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    +

    SCRIPT

    +
    %%timeit
    +
    +data = keith.smua.doFastSweep(1, 10, N, mode='IV')
    +
    +
    +
    DataSet:
    +   location = 'data/2017-09-18/#100_{name}_16-53-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:53:24
    +DataSet:
    +   location = 'data/2017-09-18/#101_{name}_16-53-24'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:53:35
    +DataSet:
    +   location = 'data/2017-09-18/#102_{name}_16-53-35'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:53:45
    +DataSet:
    +   location = 'data/2017-09-18/#103_{name}_16-53-45'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:53:56
    +DataSet:
    +   location = 'data/2017-09-18/#104_{name}_16-53-56'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:54:06
    +DataSet:
    +   location = 'data/2017-09-18/#105_{name}_16-54-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:54:17
    +DataSet:
    +   location = 'data/2017-09-18/#106_{name}_16-54-17'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:54:27
    +DataSet:
    +   location = 'data/2017-09-18/#107_{name}_16-54-27'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:54:38
    +10.5 s ± 12.8 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    # Preparation for a simple I-V curve with a 5 MOhm resistor
    +
    +keith.smua.reset()
    +keith.smua.nplc(0.05)
    +keith.smua.mode('voltage')
    +keith.smua.sourcerange_v(20)
    +keith.smua.measurerange_i(100e-6)
    +keith.smua.output('on')
    +
    +N = 100
    +
    +
    +
    +
    +

    SET-GET

    +
    %%timeit
    +
    +loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr)
    +data = loop.get_data_set(name='N_{}_setget'.format(N))
    +_ = loop.run()  # run the loop
    +
    +
    +
    Started at 2017-09-18 16:56:13
    +DataSet:
    +   location = 'data/2017-09-18/#108_N_100_setget_16-56-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:14
    +Started at 2017-09-18 16:56:14
    +DataSet:
    +   location = 'data/2017-09-18/#109_N_100_setget_16-56-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:14
    +Started at 2017-09-18 16:56:14
    +DataSet:
    +   location = 'data/2017-09-18/#110_N_100_setget_16-56-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:14
    +Started at 2017-09-18 16:56:14
    +DataSet:
    +   location = 'data/2017-09-18/#111_N_100_setget_16-56-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:15
    +Started at 2017-09-18 16:56:15
    +DataSet:
    +   location = 'data/2017-09-18/#112_N_100_setget_16-56-15'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:15
    +Started at 2017-09-18 16:56:15
    +DataSet:
    +   location = 'data/2017-09-18/#113_N_100_setget_16-56-15'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:15
    +Started at 2017-09-18 16:56:15
    +DataSet:
    +   location = 'data/2017-09-18/#114_N_100_setget_16-56-15'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:16
    +Started at 2017-09-18 16:56:16
    +DataSet:
    +   location = 'data/2017-09-18/#115_N_100_setget_16-56-16'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (100,)
    +   Measured | keith_smua_curr     | curr         | (100,)
    +Finished at 2017-09-18 16:56:16
    +370 ms ± 15.5 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    +

    SCRIPT

    +
    %%timeit
    +
    +data = keith.smua.doFastSweep(1, 10, N, mode='IV')
    +
    +
    +
    DataSet:
    +   location = 'data/2017-09-18/#116_{name}_16-57-00'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:00
    +DataSet:
    +   location = 'data/2017-09-18/#117_{name}_16-57-00'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:00
    +DataSet:
    +   location = 'data/2017-09-18/#118_{name}_16-57-00'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#119_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#120_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#121_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#122_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#123_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:01
    +DataSet:
    +   location = 'data/2017-09-18/#124_{name}_16-57-01'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:02
    +DataSet:
    +   location = 'data/2017-09-18/#125_{name}_16-57-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:02
    +DataSet:
    +   location = 'data/2017-09-18/#126_{name}_16-57-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:02
    +DataSet:
    +   location = 'data/2017-09-18/#127_{name}_16-57-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:02
    +DataSet:
    +   location = 'data/2017-09-18/#128_{name}_16-57-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:02
    +DataSet:
    +   location = 'data/2017-09-18/#129_{name}_16-57-02'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#130_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#131_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#132_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#133_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#134_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:03
    +DataSet:
    +   location = 'data/2017-09-18/#135_{name}_16-57-03'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:04
    +DataSet:
    +   location = 'data/2017-09-18/#136_{name}_16-57-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:04
    +DataSet:
    +   location = 'data/2017-09-18/#137_{name}_16-57-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:04
    +DataSet:
    +   location = 'data/2017-09-18/#138_{name}_16-57-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:04
    +DataSet:
    +   location = 'data/2017-09-18/#139_{name}_16-57-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:04
    +DataSet:
    +   location = 'data/2017-09-18/#140_{name}_16-57-04'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#141_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#142_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#143_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#144_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#145_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:05
    +DataSet:
    +   location = 'data/2017-09-18/#146_{name}_16-57-05'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#147_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#148_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#149_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#150_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#151_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:06
    +DataSet:
    +   location = 'data/2017-09-18/#152_{name}_16-57-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:07
    +DataSet:
    +   location = 'data/2017-09-18/#153_{name}_16-57-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:07
    +DataSet:
    +   location = 'data/2017-09-18/#154_{name}_16-57-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:07
    +DataSet:
    +   location = 'data/2017-09-18/#155_{name}_16-57-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:07
    +DataSet:
    +   location = 'data/2017-09-18/#156_{name}_16-57-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:07
    +DataSet:
    +   location = 'data/2017-09-18/#157_{name}_16-57-07'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#158_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#159_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#160_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#161_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#162_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:08
    +DataSet:
    +   location = 'data/2017-09-18/#163_{name}_16-57-08'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:09
    +DataSet:
    +   location = 'data/2017-09-18/#164_{name}_16-57-09'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:09
    +DataSet:
    +   location = 'data/2017-09-18/#165_{name}_16-57-09'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:09
    +DataSet:
    +   location = 'data/2017-09-18/#166_{name}_16-57-09'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:09
    +DataSet:
    +   location = 'data/2017-09-18/#167_{name}_16-57-09'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:09
    +DataSet:
    +   location = 'data/2017-09-18/#168_{name}_16-57-09'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:10
    +DataSet:
    +   location = 'data/2017-09-18/#169_{name}_16-57-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:10
    +DataSet:
    +   location = 'data/2017-09-18/#170_{name}_16-57-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:10
    +DataSet:
    +   location = 'data/2017-09-18/#171_{name}_16-57-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:10
    +DataSet:
    +   location = 'data/2017-09-18/#172_{name}_16-57-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:10
    +DataSet:
    +   location = 'data/2017-09-18/#173_{name}_16-57-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#174_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#175_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#176_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#177_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#178_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:11
    +DataSet:
    +   location = 'data/2017-09-18/#179_{name}_16-57-11'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:12
    +DataSet:
    +   location = 'data/2017-09-18/#180_{name}_16-57-12'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:12
    +DataSet:
    +   location = 'data/2017-09-18/#181_{name}_16-57-12'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:12
    +DataSet:
    +   location = 'data/2017-09-18/#182_{name}_16-57-12'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:12
    +DataSet:
    +   location = 'data/2017-09-18/#183_{name}_16-57-12'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:12
    +DataSet:
    +   location = 'data/2017-09-18/#184_{name}_16-57-12'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#185_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#186_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#187_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#188_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#189_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:13
    +DataSet:
    +   location = 'data/2017-09-18/#190_{name}_16-57-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:14
    +DataSet:
    +   location = 'data/2017-09-18/#191_{name}_16-57-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:14
    +DataSet:
    +   location = 'data/2017-09-18/#192_{name}_16-57-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:14
    +DataSet:
    +   location = 'data/2017-09-18/#193_{name}_16-57-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:14
    +DataSet:
    +   location = 'data/2017-09-18/#194_{name}_16-57-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:14
    +DataSet:
    +   location = 'data/2017-09-18/#195_{name}_16-57-14'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:15
    +DataSet:
    +   location = 'data/2017-09-18/#196_{name}_16-57-15'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (100,)
    +acquired at 2017-09-18 16:57:15
    +182 ms ± 6.48 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
    +
    +
    +
    +
    +
    +

    NPLC = 0.05, N = 1000

    +
    # Preparation for a simple I-V curve with a 5 MOhm resistor
    +
    +keith.smua.reset()
    +keith.smua.nplc(0.05)
    +keith.smua.mode('voltage')
    +keith.smua.sourcerange_v(20)
    +keith.smua.measurerange_i(100e-6)
    +keith.smua.output('on')
    +
    +N = 1000
    +
    +
    +
    +

    SET-GET

    +
    %%timeit
    +
    +loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr)
    +data = loop.get_data_set(name='N_{}_setget'.format(N))
    +_ = loop.run()  # run the loop
    +
    +
    +
    Started at 2017-09-18 16:59:06
    +DataSet:
    +   location = 'data/2017-09-18/#197_N_1000_setget_16-59-06'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:10
    +Started at 2017-09-18 16:59:10
    +DataSet:
    +   location = 'data/2017-09-18/#198_N_1000_setget_16-59-10'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:13
    +Started at 2017-09-18 16:59:13
    +DataSet:
    +   location = 'data/2017-09-18/#199_N_1000_setget_16-59-13'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:16
    +Started at 2017-09-18 16:59:16
    +DataSet:
    +   location = 'data/2017-09-18/#200_N_1000_setget_16-59-16'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:20
    +Started at 2017-09-18 16:59:20
    +DataSet:
    +   location = 'data/2017-09-18/#201_N_1000_setget_16-59-20'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:23
    +Started at 2017-09-18 16:59:23
    +DataSet:
    +   location = 'data/2017-09-18/#202_N_1000_setget_16-59-23'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:27
    +Started at 2017-09-18 16:59:27
    +DataSet:
    +   location = 'data/2017-09-18/#203_N_1000_setget_16-59-27'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:30
    +Started at 2017-09-18 16:59:30
    +DataSet:
    +   location = 'data/2017-09-18/#204_N_1000_setget_16-59-30'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Setpoint | keith_smua_volt_set | volt         | (1000,)
    +   Measured | keith_smua_curr     | curr         | (1000,)
    +Finished at 2017-09-18 16:59:33
    +3.38 s ± 39.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    +

    SCRIPT

    +
    %%timeit
    +
    +data = keith.smua.doFastSweep(1, 10, N, mode='IV')
    +
    +
    +
    DataSet:
    +   location = 'data/2017-09-18/#205_{name}_16-59-38'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:39
    +DataSet:
    +   location = 'data/2017-09-18/#206_{name}_16-59-39'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:41
    +DataSet:
    +   location = 'data/2017-09-18/#207_{name}_16-59-41'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:42
    +DataSet:
    +   location = 'data/2017-09-18/#208_{name}_16-59-42'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:43
    +DataSet:
    +   location = 'data/2017-09-18/#209_{name}_16-59-43'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:45
    +DataSet:
    +   location = 'data/2017-09-18/#210_{name}_16-59-45'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:46
    +DataSet:
    +   location = 'data/2017-09-18/#211_{name}_16-59-46'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:48
    +DataSet:
    +   location = 'data/2017-09-18/#212_{name}_16-59-48'
    +   <Type>   | <array_id>          | <array.name> | <array.shape>
    +   Measured | keith_smua_iv_sweep | iv_sweep     | (1000,)
    +acquired at 2017-09-18 16:59:49
    +1.44 s ± 13.5 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)
    +
    +
    +
    +
    + + +
    +
    + +
    +
    + + +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.html b/_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.html index 7e9697b2b36..4b7f6857d72 100644 --- a/_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.html +++ b/_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.html @@ -38,7 +38,7 @@ - + @@ -105,6 +105,10 @@
  • Drivers
  • Benchmarking
  • diff --git a/_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.html b/_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.html index 29e99e242f3..6b3ffd7463e 100644 --- a/_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.html +++ b/_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.html @@ -104,6 +104,10 @@
  • Drivers
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html b/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html index 0062e6841d7..7a6c6cc0217 100644 --- a/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html +++ b/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html @@ -103,7 +103,6 @@
  • Examples of using QCoDeS
    • Basic examples
    • Drivers
        -
      • Example script for Keithley driver
      • QCoDeS example with SR830
      • Qcodes example ATS_ONWORK
      • QCoDeS example with AMI430
      • diff --git a/_notebooks/driver_examples/Qcodes example with AMI430.html b/_notebooks/driver_examples/Qcodes example with AMI430.html index a2912987345..48ef2256d80 100644 --- a/_notebooks/driver_examples/Qcodes example with AMI430.html +++ b/_notebooks/driver_examples/Qcodes example with AMI430.html @@ -103,7 +103,6 @@
      • Examples of using QCoDeS
        • Basic examples
        • Drivers
            -
          • Example script for Keithley driver
          • QCoDeS example with SR830
          • Qcodes example ATS_ONWORK
          • QCoDeS example with AMI430
          • diff --git a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html index e3bd951ff45..0699ab5de1e 100644 --- a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html +++ b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html @@ -103,7 +103,6 @@
          • Examples of using QCoDeS
            • Basic examples
            • Drivers
                -
              • Example script for Keithley driver
              • QCoDeS example with SR830
              • Qcodes example ATS_ONWORK
              • QCoDeS example with AMI430
              • diff --git a/_notebooks/driver_examples/Qcodes example with Decadac.html b/_notebooks/driver_examples/Qcodes example with Decadac.html index 1f119a21e39..f60e119b270 100644 --- a/_notebooks/driver_examples/Qcodes example with Decadac.html +++ b/_notebooks/driver_examples/Qcodes example with Decadac.html @@ -103,7 +103,6 @@
              • Examples of using QCoDeS
                • Basic examples
                • Drivers
                    -
                  • Example script for Keithley driver
                  • QCoDeS example with SR830
                  • Qcodes example ATS_ONWORK
                  • QCoDeS example with AMI430
                  • diff --git a/_notebooks/driver_examples/Qcodes example with Ithaco.html b/_notebooks/driver_examples/Qcodes example with Ithaco.html index 4d4d3cd1b75..3582c5c86c1 100644 --- a/_notebooks/driver_examples/Qcodes example with Ithaco.html +++ b/_notebooks/driver_examples/Qcodes example with Ithaco.html @@ -103,7 +103,6 @@
                  • Examples of using QCoDeS
                    • Basic examples
                    • Drivers
                        -
                      • Example script for Keithley driver
                      • QCoDeS example with SR830
                      • Qcodes example ATS_ONWORK
                      • QCoDeS example with AMI430
                      • diff --git a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html index b9b2351308b..5b1a1eec2ed 100644 --- a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html +++ b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html @@ -103,14 +103,17 @@
                      • Examples of using QCoDeS
                        • Basic examples
                        • Drivers
                            -
                          • Example script for Keithley driver
                          • QCoDeS example with SR830
                          • Qcodes example ATS_ONWORK
                          • QCoDeS example with AMI430
                          • Qcodes example with Agilent 34400A
                          • Qcodes example with Decadac
                          • Qcodes example with Ithaco
                          • -
                          • Qcodes example with Keithley 2600
                          • +
                          • Qcodes example with Keithley 2600 +
                          • Qcodes example with Keysight 33500B
                          • Qcodes example with Mercury IPS (Magnet)
                          • Qcodes example with QDac
                          • @@ -192,320 +195,136 @@

                            Qcodes example with Keithley 2600

                            -
                            %matplotlib nbagg
                            -import matplotlib.pyplot as plt
                            -import time
                            -import numpy as np
                            -
                            -import qcodes as qc
                            +

                            NOTE This example is for the new (as of September 2017) channelised +driver. If you are considering using the old driver, please reconsider. +There is no functionality of the old driver that is not contained in the +new one, but it might have a (slightly) different name.

                            +
                            import qcodes as qc
                             
                            -qc.halt_bg()
                            -qc.set_mp_method('spawn')  # force Windows behavior on mac
                            -
                            -# this makes a widget in the corner of the window to show and control
                            -# subprocesses and any output they would print to the terminal
                            -qc.show_subprocess_widget()
                            -
                            -
                            -
                            <IPython.core.display.Javascript object>
                            +from qcodes.instrument_drivers.tektronix.Keithley_2600_channels import Keithley_2600
                             
                            -
                            No loop running
                            -
                            -
                            -
                            import qcodes.instrument_drivers.tektronix.Keithley_2600 as keith
                            -
                            -
                            -
                            # spawn doesn't like function or class definitions in the interpreter
                            -# session - had to move them to a file.
                            -
                            -# now create this "experiment"
                            -k1 = keith.Keithley_2600('Keithley1', 'GPIB0::15::INSTR',channel='a')#,server_name=None)
                            -k2 = keith.Keithley_2600('Keithley2', 'GPIB0::15::INSTR',channel='b')#,server_name=None)
                            +
                            # Create a station to hold all the instruments
                             
                            -station = qc.Station(k1,k2)
                            +station = qc.Station()
                             
                            -# could measure any number of things by adding arguments to this
                            -# function call, but here we're just measuring one, the meter amplitude
                            -station.set_measurement(k1.curr,k2.curr)
                            +# instantiate the Keithley and add it to the station
                             
                            -# it's nice to have the key parameters be part of the global namespace
                            -# that way they're objects that we can easily set, get, and slice
                            -# this could be simplified to a station method that gathers all parameters
                            -# and adds them all as (disambiguated) globals, printing what it did
                            -# something like:
                            -#   station.gather_parameters(globals())
                            -
                            -vsd1, vsd2, curr1, curr2 = k1.volt, k2.volt, k1.curr, k2.curr
                            -
                            -# once we have implemented a monitor, defining a station will start a
                            -# DataServer process, and you would see it in the subprocess widget,
                            -# or via active_children() as here:
                            -# qc.active_children()
                            -
                            -
                            -
                            station.snapshot()
                            -
                            -
                            -
                            {'instruments': {'Keithley1': {'functions': {},
                            -   'metadata': {'info': {'model': '2614B',
                            -     'serial_number': '4083825',
                            -     'software_revision': '3.2.1',
                            -     'vendor': 'Keithley Instruments Inc.'}},
                            -   'parameters': {'curr': {'ts': None, 'value': None},
                            -    'limiti': {'ts': None, 'value': None},
                            -    'limitv': {'ts': None, 'value': None},
                            -    'mode': {'ts': None, 'value': None},
                            -    'output': {'ts': None, 'value': None},
                            -    'rangei': {'ts': None, 'value': None},
                            -    'rangev': {'ts': None, 'value': None},
                            -    'volt': {'ts': None, 'value': None}}},
                            -  'Keithley2': {'functions': {},
                            -   'metadata': {'info': {'model': '2614B',
                            -     'serial_number': '4083825',
                            -     'software_revision': '3.2.1',
                            -     'vendor': 'Keithley Instruments Inc.'}},
                            -   'parameters': {'curr': {'ts': None, 'value': None},
                            -    'limiti': {'ts': None, 'value': None},
                            -    'limitv': {'ts': None, 'value': None},
                            -    'mode': {'ts': None, 'value': None},
                            -    'output': {'ts': None, 'value': None},
                            -    'rangei': {'ts': None, 'value': None},
                            -    'rangev': {'ts': None, 'value': None},
                            -    'volt': {'ts': None, 'value': None}}}}}
                            +keith = Keithley_2600('keithley', 'TCPIP0::192.168.15.116::inst0::INSTR')
                            +station.add_component(keith)
                             
                            -
                            # we can get the measured quantities right now
                            -station.measure()
                            +
                            Connected to: Keithley Instruments Inc. 2614B (serial:4084407, firmware:3.2.1) in 0.09s
                             
                            -
                            [2.98023e-13, -9.41753e-13]
                            +
                            'keithley'
                             
                            -
                            # start a Loop (which by default runs in a seprarate process)
                            -# the sweep values are defined by slicing the parameter object
                            -# but more complicated sweeps (eg nonlinear, or adaptive) can
                            -# easily be used instead
                            -
                            -# Notice that I'm using an explicit location and `overwrite=True` here so that
                            -# running this notebook over and over won't result in extra files.
                            -# But if you leave these out, you get a new timestamped DataSet each time.
                            -data = qc.Loop(vsd1[-5:5:0.5], 0.03).run(location='testsweep', overwrite=True)
                            -
                            -# now there should be two extra processes running, DataServer and a sweep
                            -# I'll omit the active_children call now because you can see them in the
                            -# subprocess widget
                            +

                            The Keithley 2600 has two channels, here called smua and smub in +agreement with the instrument manual.

                            +

                            The two channels are basically two separate instruments with different +integration times (nplc), operation modes (mode) etc.

                            +
                            # Get an overview of the settings
                            +#
                            +# You will notice that the two channels have identical parameters but
                            +# potentially different values for them
                            +#
                            +keith.print_readable_snapshot()
                             
                            -
                            DataSet: DataMode.PULL_FROM_SERVER, location='testsweep'
                            -   curr_0: curr
                            -   curr_1: curr
                            -   volt: volt
                            -started at 2016-04-20 15:37:23
                            +
                            keithley:
                            +    parameter      value
                            +--------------------------------------------------------------------------------
                            +IDN             :   {'vendor': 'Keithley Instruments Inc.', 'model': '2614B', '...
                            +display_settext :   None
                            +timeout         :   5 (s)
                            +keithley_smua:
                            +    parameter     value
                            +--------------------------------------------------------------------------------
                            +curr           :    3.0994e-07 (A)
                            +fastsweep      :    None
                            +limiti         :    0.1 (A)
                            +limitv         :    20 (V)
                            +measurerange_i :    0.1 (A)
                            +measurerange_v :    2.00000e+01 (V)
                            +mode           :    voltage
                            +nplc           :    0.05
                            +output         :    on
                            +sourcerange_i  :    1e-07 (A)
                            +sourcerange_v  :    20 (V)
                            +volt           :    1.9999 (V)
                            +keithley_smub:
                            +    parameter     value
                            +--------------------------------------------------------------------------------
                            +curr           :    -3.6955e-13 (A)
                            +fastsweep      :    None
                            +limiti         :    0.1 (A)
                            +limitv         :    20 (V)
                            +measurerange_i :    1e-07 (A)
                            +measurerange_v :    2.00000e-01 (V)
                            +mode           :    voltage
                            +nplc           :    1
                            +output         :    off
                            +sourcerange_i  :    1e-07 (A)
                            +sourcerange_v  :    0.2 (V)
                            +volt           :    1.1206e-06 (V)
                             
                            -
                            # manually bring the data into the main process and display it as numbers
                            -data.sync()
                            -data.arrays
                            +
                            +

                            Basic operation

                            +

                            Each channel operates in either voltage or current mode. The +mode controls the source behaviour of the instrument, i.e. voltage +mode corresponds to an amp-meter (voltage source, current meter) and +vice versa.

                            +
                            # Let's set up a single-shot current measurement
                            +# on channel a
                            +
                            +keith.smua.mode('voltage')
                            +keith.smua.nplc(0.05)  # 0.05 Power Line Cycles per measurement. At 50 Hz, this corresponds to 1 ms
                            +keith.smua.sourcerange_v(20)
                            +keith.smua.measurerange_i(0.1)
                            +#
                            +keith.smua.volt(1)  # set the source to output 1 V
                            +keith.smua.output('on')  # turn output on
                            +curr = keith.smua.curr()
                            +keith.smua.output('off')
                            +
                            +print('Measured one current value: {} A'.format(curr))
                             
                            -
                            {'curr_0': DataArray[20]: curr_0
                            - array([ nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,
                            -         nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan]),
                            - 'curr_1': DataArray[20]: curr_1
                            - array([ nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,
                            -         nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan]),
                            - 'volt': DataArray[20]: volt
                            - array([ -5.,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,
                            -         nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan,  nan])}
                            +
                            Measured one current value: -1.54972e-06 A
                             
                            -
                            # live-updating plot, that syncs the data and stops updating when it's finished
                            -# plot = qc.MatPlot(data.amplitude)
                            -plotQ1 = qc.QtPlot(data.volt, data.curr_0)
                            -plotQ2 = qc.QtPlot(data.volt, data.curr_1)
                            -
                            -
                            -
                            data2 = qc.Loop(vsd1[-5:5:0.1],0).each(
                            -                qc.Loop(vsd2[-2:2:.2], 0)
                            -).run(location='test2d', overwrite=True)
                            -
                            -# use the subplot and add features of qc.MatPlot
                            -# plot2 = qc.MatPlot(data2.amplitude_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1, 2))
                            -# plot2.add(data2.amplitude_3, cmap=plt.cm.hot, subplot=2)
                            -
                            -# the equivalent in QtPlot
                            -plot2Q = qc.QtPlot(data2.curr_1, figsize=(1200, 500))
                            -# plot2Q.add(data2.curr_1, subplot=2)
                            -
                            -
                            DataSet: DataMode.PULL_FROM_SERVER, location='test2d'
                            -   curr_1: curr
                            -   volt: volt
                            -   curr_0: curr
                            -   volt_0: volt
                            -started at 2016-04-20 15:22:46
                            +
                            +

                            Fast IV curves

                            +

                            Onboard the Keithley 2600 sits a small computer that can interpret +Lua scripts. This can be used to make fast IV-curves and is +supported by the QCoDeS driver.

                            +
                            # Let's make a fast IV curve by sweeping the voltage from 1 V to 2 V in 500 steps
                            +# (when making this notebook, nothing was connected to the instrument, so we just measure noise)
                             
                            -
                            k1.setattr(('metadata','test'), 11)
                            -k1.getattr('info')
                            +
                            # This function performs the fast sweep and returns a QCoDeS DataSet
                            +data = keith.smua.doFastSweep(1, 2, 500, mode='IV')
                             
                            -
                            {'model': '2614B',
                            - 'serial_number': '4083825',
                            - 'software_revision': '3.2.1',
                            - 'vendor': 'Keithley Instruments Inc.'}
                            +
                            DataSet:
                            +   location = 'data/2017-09-28/#001_{name}_14-43-10'
                            +   <Type>   | <array_id>             | <array.name> | <array.shape>
                            +   Measured | keithley_smua_iv_sweep | iv_sweep     | (500,)
                            +acquired at 2017-09-28 14:43:11
                             
                            -
                            k1.ask_direct('*IDN?')
                            +
                            # The DataSet may be plotted
                            +plot = qc.MatPlot()
                            +plot.add(data.arrays['keithley_smua_iv_sweep'])
                             
                            -
                            'Keithley Instruments Inc., Model 2614B, 4083825, 3.2.1'
                            +
                            # Finally, tear down the instrument
                            +keith.close()
                             
                            -
                            station.snapshot(update=True)
                            -
                            -
                            -
                            {'instruments': {'Keithley1': {'functions': {},
                            -   'metadata': {'test': 11},
                            -   'parameters': {'curr': {'ts': '2016-04-20 15:31:51', 'value': -2.14577e-13},
                            -    'limiti': {'ts': '2016-04-20 15:31:51', 'value': 0.1},
                            -    'limitv': {'ts': '2016-04-20 15:31:51', 'value': 20.0},
                            -    'mode': {'ts': '2016-04-20 15:31:51', 'value': 'voltage'},
                            -    'output': {'ts': '2016-04-20 15:31:51', 'value': 'ON'},
                            -    'rangei': {'ts': '2016-04-20 15:31:51', 'value': 1e-07},
                            -    'rangev': {'ts': '2016-04-20 15:31:51', 'value': 20.0},
                            -    'volt': {'ts': '2016-04-20 15:31:51', 'value': 4.90016}}},
                            -  'Keithley2': {'functions': {},
                            -   'parameters': {'curr': {'ts': '2016-04-20 15:31:51', 'value': -1.07288e-12},
                            -    'limiti': {'ts': '2016-04-20 15:31:51', 'value': 0.1},
                            -    'limitv': {'ts': '2016-04-20 15:31:51', 'value': 20.0},
                            -    'mode': {'ts': '2016-04-20 15:31:51', 'value': 'voltage'},
                            -    'output': {'ts': '2016-04-20 15:31:51', 'value': 'ON'},
                            -    'rangei': {'ts': '2016-04-20 15:31:51', 'value': 1e-07},
                            -    'rangev': {'ts': '2016-04-20 15:31:51', 'value': 2.0},
                            -    'volt': {'ts': '2016-04-20 15:31:51', 'value': 1.80006}}}}}
                            -
                            -
                            -
                            plot2Q.add(data2.curr_0, subplot=2)
                            -
                            -
                            -
                            data3 = qc.Loop(vsd1[-15:15:1], 0).each(
                            -                qc.Loop(vsd2[-5:5:1], 0),
                            -                qc.Loop(vsd2[5:-5:1], 0),
                            -).run(location='test_multi_d', overwrite=True)
                            -
                            -# several plots updating simultaneously
                            -# plot3 = qc.MatPlot(data3.curr_1_1, cmap=plt.cm.hot)
                            -# plot3b = qc.MatPlot(data3.curr_1_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1,2))
                            -# plot3b.add(data3.curr_0_1, subplot=2)
                            -plot3Q = qc.QtPlot(data3.curr_1)
                            -plot3bQ = qc.QtPlot(data3.curr_1, figsize=(1200, 500))
                            -plot3bQ.add(data3.curr_0, subplot=2)
                            -
                            -
                            -
                            DataSet: DataMode.PULL_FROM_SERVER, location='test_multi_d'
                            -   curr_0_1: curr
                            -   volt_0: volt
                            -   curr_0_0: curr
                            -   volt_1: volt
                            -   curr_1_0: curr
                            -   curr_1_1: curr
                            -   volt: volt
                            -started at 2016-04-20 14:09:16
                            -
                            -
                            -
                            ---------------------------------------------------------------------------
                            -
                            -AttributeError                            Traceback (most recent call last)
                            -
                            -<ipython-input-18-7bcb44f808c5> in <module>()
                            -      8 # plot3b = qc.MatPlot(data3.curr_1_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1,2))
                            -      9 # plot3b.add(data3.curr_0_1, subplot=2)
                            ----> 10 plot3Q = qc.QtPlot(data3.curr_1)
                            -     11 plot3bQ = qc.QtPlot(data3.curr_1, figsize=(1200, 500))
                            -     12 plot3bQ.add(data3.curr_0, subplot=2)
                            -
                            -
                            -C:\Github\Qcodes\qcodes\utils\helpers.py in __getattr__(self, key)
                            -    187         raise AttributeError(
                            -    188             "'{}' object and its delegates have no attribute '{}'".format(
                            ---> 189                 self.__class__.__name__, key))
                            -    190
                            -    191     def __dir__(self):
                            -
                            -
                            -AttributeError: 'DataSet' object and its delegates have no attribute 'curr_1'
                            -
                            -
                            -
                            # An example of a parameter that returns several values of different dimension
                            -# This produces the last two arrays from data3, but only takes the data once.
                            -data4 = qc.Loop(c1[-15:15:1], 0.1).each(
                            -    AverageAndRaw(meter.amplitude, c2[-10:10:0.2], 0.001)
                            -).run(location='test_complex_param', overwrite=True)
                            -
                            -# plot4 = qc.MatPlot(data4.amplitude, cmap=plt.cm.hot, subplots=(1,2), figsize=(12, 4.5))
                            -# plot4.add(data4.avg_amplitude, subplot=2)
                            -plot4Q = qc.QtPlot(data4.amplitude, figsize=(1200, 500))
                            -plot4Q.add(data4.avg_amplitude, subplot=2)
                            -
                            -
                            -
                            DataSet: DataMode.PULL_FROM_SERVER, location='test_complex_param'
                            -   avg_amplitude: avg_amplitude
                            -   chan2: chan2
                            -   chan1: chan1
                            -   amplitude: amplitude
                            -started at 2016-02-02 12:18:09
                            -
                            diff --git a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html index c33c79dd8c7..96a93994b34 100644 --- a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html +++ b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html @@ -103,7 +103,6 @@
                          • Examples of using QCoDeS
                            • Basic examples
                            • Drivers
                                -
                              • Example script for Keithley driver
                              • QCoDeS example with SR830
                              • Qcodes example ATS_ONWORK
                              • QCoDeS example with AMI430
                              • diff --git a/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html b/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html index bda65918e15..6ef5f159b30 100644 --- a/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html +++ b/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html @@ -103,7 +103,6 @@
                              • Examples of using QCoDeS
                                • Basic examples
                                • Drivers
                                    -
                                  • Example script for Keithley driver
                                  • QCoDeS example with SR830
                                  • Qcodes example ATS_ONWORK
                                  • QCoDeS example with AMI430
                                  • diff --git a/_notebooks/driver_examples/Qcodes example with QDac.html b/_notebooks/driver_examples/Qcodes example with QDac.html index 158f1497d78..c1ddb620396 100644 --- a/_notebooks/driver_examples/Qcodes example with QDac.html +++ b/_notebooks/driver_examples/Qcodes example with QDac.html @@ -103,7 +103,6 @@
                                  • Examples of using QCoDeS
                                    • Basic examples
                                    • Drivers
                                        -
                                      • Example script for Keithley driver
                                      • QCoDeS example with SR830
                                      • Qcodes example ATS_ONWORK
                                      • QCoDeS example with AMI430
                                      • diff --git a/_notebooks/driver_examples/Qcodes example with QDac_channels.html b/_notebooks/driver_examples/Qcodes example with QDac_channels.html index 82179daa1a8..ad7c5608296 100644 --- a/_notebooks/driver_examples/Qcodes example with QDac_channels.html +++ b/_notebooks/driver_examples/Qcodes example with QDac_channels.html @@ -103,7 +103,6 @@
                                      • Examples of using QCoDeS
                                        • Basic examples
                                        • Drivers
                                            -
                                          • Example script for Keithley driver
                                          • QCoDeS example with SR830
                                          • Qcodes example ATS_ONWORK
                                          • QCoDeS example with AMI430
                                          • 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 1ec1a7f8b7c..92d75950fb8 100644 --- a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html +++ b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html @@ -103,7 +103,6 @@
                                          • Examples of using QCoDeS
                                            • Basic examples
                                            • Drivers
                                                -
                                              • Example script for Keithley driver
                                              • QCoDeS example with SR830
                                              • Qcodes example ATS_ONWORK
                                              • QCoDeS example with AMI430
                                              • diff --git a/_notebooks/driver_examples/Qcodes example with TPS2012.html b/_notebooks/driver_examples/Qcodes example with TPS2012.html index 24f2b9807e3..158a937861f 100644 --- a/_notebooks/driver_examples/Qcodes example with TPS2012.html +++ b/_notebooks/driver_examples/Qcodes example with TPS2012.html @@ -103,7 +103,6 @@
                                              • Examples of using QCoDeS
                                                • Basic examples
                                                • Drivers
                                                    -
                                                  • Example script for Keithley driver
                                                  • QCoDeS example with SR830
                                                  • Qcodes example ATS_ONWORK
                                                  • QCoDeS example with AMI430
                                                  • diff --git a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html index 9b99d4eb93e..cd57073d9c9 100644 --- a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html +++ b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html @@ -103,7 +103,6 @@
                                                  • Examples of using QCoDeS
                                                    • Basic examples
                                                    • Drivers
                                                        -
                                                      • Example script for Keithley driver
                                                      • QCoDeS example with SR830
                                                      • Qcodes example ATS_ONWORK
                                                      • QCoDeS example with AMI430
                                                      • diff --git a/_notebooks/driver_examples/Qcodes example with Triton.html b/_notebooks/driver_examples/Qcodes example with Triton.html index c20f691ca11..d8bc6b383e7 100644 --- a/_notebooks/driver_examples/Qcodes example with Triton.html +++ b/_notebooks/driver_examples/Qcodes example with Triton.html @@ -103,7 +103,6 @@
                                                      • Examples of using QCoDeS
                                                        • Basic examples
                                                        • Drivers
                                                            -
                                                          • Example script for Keithley driver
                                                          • QCoDeS example with SR830
                                                          • Qcodes example ATS_ONWORK
                                                          • QCoDeS example with AMI430
                                                          • 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 42b96b650e8..fb3fedf703d 100644 --- a/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html +++ b/_notebooks/driver_examples/Qcodes example with ZI UHF-LI.html @@ -103,7 +103,6 @@
                                                          • Examples of using QCoDeS
                                                            • Basic examples
                                                            • Drivers
                                                                -
                                                              • Example script for Keithley driver
                                                              • QCoDeS example with SR830
                                                              • Qcodes example ATS_ONWORK
                                                              • QCoDeS example with AMI430
                                                              • diff --git a/_sources/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst.txt b/_sources/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst.txt new file mode 100644 index 00000000000..2f17cd44886 --- /dev/null +++ b/_sources/_notebooks/benchmarking/Benchmark of Keithley 2600 lua script versus set-get.rst.txt @@ -0,0 +1,1013 @@ + +Benchmark +========= + +Below we use two methods of the Keithley 2600 to make an IV-curve. +Plugged into the terminal is a 5 MOhm resistor. The voltage is swept +from 1 V to 10 V. + +The two methods are normal "naive" QCoDeS set-get and deployed script +mode. In the former mode, a ``set`` command is send for each voltage set +point and a ``get`` command is sent for each current value to be +measured. In the latter mode, a Lua script is formed and uploaded to the +SourceMeter. The script then runs locally on the machine and all data is +polled in one go (in a binary format). + +Results +------- + +NPLC = 0.5 (10 ms ap. time), N = 100 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Set-get: 1.29 s + +Script: 1.08 s + +NPLC = 0.5 (10 ms ap. time), N = 1000 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Set-get: 12.6 s + +Script: 10.5 s + +NPLC = 0.05 (1ms ap. time), N = 100 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Set-get: 370 ms + +Script: 182 ms + +NPLC = 0.05 (1ms ap. time), N = 1000 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Set-get: 3.38 s + +Script: 1.44 s + +Imports and initialisation +-------------------------- + +.. code:: ipython3 + + import qcodes as qc + from qcodes.instrument.base import Instrument + from qcodes.instrument_drivers.tektronix.Keithley_2600 import Keithley_2600 + from qcodes.instrument_drivers.tektronix.Keithley_2600_channels import Keithley_2600 as Keithley_2600_channels + from typing import List + from qcodes import DataSet + from qcodes.instrument.parameter import ArrayParameter + import struct + +.. code:: ipython3 + + % matplotlib notebook + import matplotlib.pyplot as plt + import numpy as np + +.. code:: ipython3 + + keith = Keithley_2600_channels('keith', 'TCPIP0::192.168.15.116::inst0::INSTR', model='2614B') + + +.. parsed-literal:: + + Connected to: Keithley Instruments Inc. 2614B (serial:4084407, firmware:3.2.1) in 0.15s + + +NPLC = 0.5, N = 100 +=================== + +.. code:: ipython3 + + # Preparation for a simple I-V curve with a 5 MOhm resistor + + keith.smua.reset() + keith.smua.nplc(0.5) + keith.smua.mode('voltage') + keith.smua.sourcerange_v(20) + keith.smua.measurerange_i(100e-6) + keith.smua.output('on') + + N = 100 + +SET-GET +------- + +.. code:: ipython3 + + %%timeit + + loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr) + data = loop.get_data_set(name='N_{}_setget'.format(N)) + _ = loop.run() # run the loop + + +.. parsed-literal:: + + Started at 2017-09-18 16:49:59 + DataSet: + location = 'data/2017-09-18/#076_N_100_setget_16-49-59' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:00 + Started at 2017-09-18 16:50:00 + DataSet: + location = 'data/2017-09-18/#077_N_100_setget_16-50-00' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:02 + Started at 2017-09-18 16:50:02 + DataSet: + location = 'data/2017-09-18/#078_N_100_setget_16-50-02' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:03 + Started at 2017-09-18 16:50:03 + DataSet: + location = 'data/2017-09-18/#079_N_100_setget_16-50-03' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:04 + Started at 2017-09-18 16:50:04 + DataSet: + location = 'data/2017-09-18/#080_N_100_setget_16-50-04' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:05 + Started at 2017-09-18 16:50:05 + DataSet: + location = 'data/2017-09-18/#081_N_100_setget_16-50-05' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:07 + Started at 2017-09-18 16:50:07 + DataSet: + location = 'data/2017-09-18/#082_N_100_setget_16-50-07' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:08 + Started at 2017-09-18 16:50:08 + DataSet: + location = 'data/2017-09-18/#083_N_100_setget_16-50-08' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:50:09 + 1.29 s ± 15.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +SCRIPT +------ + +.. code:: ipython3 + + %%timeit + + data = keith.smua.doFastSweep(1, 10, N, mode='IV') + + +.. parsed-literal:: + + DataSet: + location = 'data/2017-09-18/#084_{name}_16-50-18' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:19 + DataSet: + location = 'data/2017-09-18/#085_{name}_16-50-19' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:20 + DataSet: + location = 'data/2017-09-18/#086_{name}_16-50-20' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:21 + DataSet: + location = 'data/2017-09-18/#087_{name}_16-50-21' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:22 + DataSet: + location = 'data/2017-09-18/#088_{name}_16-50-22' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:23 + DataSet: + location = 'data/2017-09-18/#089_{name}_16-50-23' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:24 + DataSet: + location = 'data/2017-09-18/#090_{name}_16-50-24' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:26 + DataSet: + location = 'data/2017-09-18/#091_{name}_16-50-26' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:50:27 + 1.08 s ± 4.67 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +NPLC = 0.5, N = 1000 +==================== + +.. code:: ipython3 + + # Preparation for a simple I-V curve with a 5 MOhm resistor + + keith.smua.reset() + keith.smua.nplc(0.5) + keith.smua.mode('voltage') + keith.smua.sourcerange_v(20) + keith.smua.measurerange_i(100e-6) + keith.smua.output('on') + + N = 1000 + +SET-GET +------- + +.. code:: ipython3 + + %%timeit + + loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr) + data = loop.get_data_set(name='N_{}_setget'.format(N)) + _ = loop.run() # run the loop + + +.. parsed-literal:: + + Started at 2017-09-18 16:51:20 + DataSet: + location = 'data/2017-09-18/#092_N_1000_setget_16-51-20' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:51:32 + Started at 2017-09-18 16:51:32 + DataSet: + location = 'data/2017-09-18/#093_N_1000_setget_16-51-32' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:51:45 + Started at 2017-09-18 16:51:45 + DataSet: + location = 'data/2017-09-18/#094_N_1000_setget_16-51-45' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:51:58 + Started at 2017-09-18 16:51:58 + DataSet: + location = 'data/2017-09-18/#095_N_1000_setget_16-51-58' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:52:10 + Started at 2017-09-18 16:52:10 + DataSet: + location = 'data/2017-09-18/#096_N_1000_setget_16-52-10' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:52:23 + Started at 2017-09-18 16:52:23 + DataSet: + location = 'data/2017-09-18/#097_N_1000_setget_16-52-23' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:52:35 + Started at 2017-09-18 16:52:35 + DataSet: + location = 'data/2017-09-18/#098_N_1000_setget_16-52-35' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:52:48 + Started at 2017-09-18 16:52:48 + DataSet: + location = 'data/2017-09-18/#099_N_1000_setget_16-52-48' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:53:00 + 12.6 s ± 21.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +SCRIPT +------ + +.. code:: ipython3 + + %%timeit + + data = keith.smua.doFastSweep(1, 10, N, mode='IV') + + +.. parsed-literal:: + + DataSet: + location = 'data/2017-09-18/#100_{name}_16-53-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:53:24 + DataSet: + location = 'data/2017-09-18/#101_{name}_16-53-24' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:53:35 + DataSet: + location = 'data/2017-09-18/#102_{name}_16-53-35' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:53:45 + DataSet: + location = 'data/2017-09-18/#103_{name}_16-53-45' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:53:56 + DataSet: + location = 'data/2017-09-18/#104_{name}_16-53-56' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:54:06 + DataSet: + location = 'data/2017-09-18/#105_{name}_16-54-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:54:17 + DataSet: + location = 'data/2017-09-18/#106_{name}_16-54-17' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:54:27 + DataSet: + location = 'data/2017-09-18/#107_{name}_16-54-27' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:54:38 + 10.5 s ± 12.8 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +.. code:: ipython3 + + # Preparation for a simple I-V curve with a 5 MOhm resistor + + keith.smua.reset() + keith.smua.nplc(0.05) + keith.smua.mode('voltage') + keith.smua.sourcerange_v(20) + keith.smua.measurerange_i(100e-6) + keith.smua.output('on') + + N = 100 + +SET-GET +------- + +.. code:: ipython3 + + %%timeit + + loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr) + data = loop.get_data_set(name='N_{}_setget'.format(N)) + _ = loop.run() # run the loop + + +.. parsed-literal:: + + Started at 2017-09-18 16:56:13 + DataSet: + location = 'data/2017-09-18/#108_N_100_setget_16-56-13' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:14 + Started at 2017-09-18 16:56:14 + DataSet: + location = 'data/2017-09-18/#109_N_100_setget_16-56-14' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:14 + Started at 2017-09-18 16:56:14 + DataSet: + location = 'data/2017-09-18/#110_N_100_setget_16-56-14' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:14 + Started at 2017-09-18 16:56:14 + DataSet: + location = 'data/2017-09-18/#111_N_100_setget_16-56-14' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:15 + Started at 2017-09-18 16:56:15 + DataSet: + location = 'data/2017-09-18/#112_N_100_setget_16-56-15' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:15 + Started at 2017-09-18 16:56:15 + DataSet: + location = 'data/2017-09-18/#113_N_100_setget_16-56-15' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:15 + Started at 2017-09-18 16:56:15 + DataSet: + location = 'data/2017-09-18/#114_N_100_setget_16-56-15' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:16 + Started at 2017-09-18 16:56:16 + DataSet: + location = 'data/2017-09-18/#115_N_100_setget_16-56-16' + | | | + Setpoint | keith_smua_volt_set | volt | (100,) + Measured | keith_smua_curr | curr | (100,) + Finished at 2017-09-18 16:56:16 + 370 ms ± 15.5 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +SCRIPT +------ + +.. code:: ipython3 + + %%timeit + + data = keith.smua.doFastSweep(1, 10, N, mode='IV') + + +.. parsed-literal:: + + DataSet: + location = 'data/2017-09-18/#116_{name}_16-57-00' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:00 + DataSet: + location = 'data/2017-09-18/#117_{name}_16-57-00' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:00 + DataSet: + location = 'data/2017-09-18/#118_{name}_16-57-00' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#119_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#120_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#121_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#122_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#123_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:01 + DataSet: + location = 'data/2017-09-18/#124_{name}_16-57-01' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:02 + DataSet: + location = 'data/2017-09-18/#125_{name}_16-57-02' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:02 + DataSet: + location = 'data/2017-09-18/#126_{name}_16-57-02' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:02 + DataSet: + location = 'data/2017-09-18/#127_{name}_16-57-02' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:02 + DataSet: + location = 'data/2017-09-18/#128_{name}_16-57-02' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:02 + DataSet: + location = 'data/2017-09-18/#129_{name}_16-57-02' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#130_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#131_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#132_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#133_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#134_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:03 + DataSet: + location = 'data/2017-09-18/#135_{name}_16-57-03' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:04 + DataSet: + location = 'data/2017-09-18/#136_{name}_16-57-04' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:04 + DataSet: + location = 'data/2017-09-18/#137_{name}_16-57-04' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:04 + DataSet: + location = 'data/2017-09-18/#138_{name}_16-57-04' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:04 + DataSet: + location = 'data/2017-09-18/#139_{name}_16-57-04' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:04 + DataSet: + location = 'data/2017-09-18/#140_{name}_16-57-04' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#141_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#142_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#143_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#144_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#145_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:05 + DataSet: + location = 'data/2017-09-18/#146_{name}_16-57-05' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#147_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#148_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#149_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#150_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#151_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:06 + DataSet: + location = 'data/2017-09-18/#152_{name}_16-57-06' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:07 + DataSet: + location = 'data/2017-09-18/#153_{name}_16-57-07' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:07 + DataSet: + location = 'data/2017-09-18/#154_{name}_16-57-07' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:07 + DataSet: + location = 'data/2017-09-18/#155_{name}_16-57-07' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:07 + DataSet: + location = 'data/2017-09-18/#156_{name}_16-57-07' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:07 + DataSet: + location = 'data/2017-09-18/#157_{name}_16-57-07' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#158_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#159_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#160_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#161_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#162_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:08 + DataSet: + location = 'data/2017-09-18/#163_{name}_16-57-08' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:09 + DataSet: + location = 'data/2017-09-18/#164_{name}_16-57-09' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:09 + DataSet: + location = 'data/2017-09-18/#165_{name}_16-57-09' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:09 + DataSet: + location = 'data/2017-09-18/#166_{name}_16-57-09' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:09 + DataSet: + location = 'data/2017-09-18/#167_{name}_16-57-09' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:09 + DataSet: + location = 'data/2017-09-18/#168_{name}_16-57-09' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:10 + DataSet: + location = 'data/2017-09-18/#169_{name}_16-57-10' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:10 + DataSet: + location = 'data/2017-09-18/#170_{name}_16-57-10' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:10 + DataSet: + location = 'data/2017-09-18/#171_{name}_16-57-10' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:10 + DataSet: + location = 'data/2017-09-18/#172_{name}_16-57-10' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:10 + DataSet: + location = 'data/2017-09-18/#173_{name}_16-57-10' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#174_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#175_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#176_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#177_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#178_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:11 + DataSet: + location = 'data/2017-09-18/#179_{name}_16-57-11' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:12 + DataSet: + location = 'data/2017-09-18/#180_{name}_16-57-12' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:12 + DataSet: + location = 'data/2017-09-18/#181_{name}_16-57-12' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:12 + DataSet: + location = 'data/2017-09-18/#182_{name}_16-57-12' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:12 + DataSet: + location = 'data/2017-09-18/#183_{name}_16-57-12' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:12 + DataSet: + location = 'data/2017-09-18/#184_{name}_16-57-12' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#185_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#186_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#187_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#188_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#189_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:13 + DataSet: + location = 'data/2017-09-18/#190_{name}_16-57-13' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:14 + DataSet: + location = 'data/2017-09-18/#191_{name}_16-57-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:14 + DataSet: + location = 'data/2017-09-18/#192_{name}_16-57-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:14 + DataSet: + location = 'data/2017-09-18/#193_{name}_16-57-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:14 + DataSet: + location = 'data/2017-09-18/#194_{name}_16-57-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:14 + DataSet: + location = 'data/2017-09-18/#195_{name}_16-57-14' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:15 + DataSet: + location = 'data/2017-09-18/#196_{name}_16-57-15' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (100,) + acquired at 2017-09-18 16:57:15 + 182 ms ± 6.48 ms per loop (mean ± std. dev. of 7 runs, 10 loops each) + + +NPLC = 0.05, N = 1000 +===================== + +.. code:: ipython3 + + # Preparation for a simple I-V curve with a 5 MOhm resistor + + keith.smua.reset() + keith.smua.nplc(0.05) + keith.smua.mode('voltage') + keith.smua.sourcerange_v(20) + keith.smua.measurerange_i(100e-6) + keith.smua.output('on') + + N = 1000 + +SET-GET +------- + +.. code:: ipython3 + + %%timeit + + loop = qc.Loop(keith.smua.volt.sweep(1, 10, num=N)).each(keith.smua.curr) + data = loop.get_data_set(name='N_{}_setget'.format(N)) + _ = loop.run() # run the loop + + +.. parsed-literal:: + + Started at 2017-09-18 16:59:06 + DataSet: + location = 'data/2017-09-18/#197_N_1000_setget_16-59-06' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:10 + Started at 2017-09-18 16:59:10 + DataSet: + location = 'data/2017-09-18/#198_N_1000_setget_16-59-10' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:13 + Started at 2017-09-18 16:59:13 + DataSet: + location = 'data/2017-09-18/#199_N_1000_setget_16-59-13' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:16 + Started at 2017-09-18 16:59:16 + DataSet: + location = 'data/2017-09-18/#200_N_1000_setget_16-59-16' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:20 + Started at 2017-09-18 16:59:20 + DataSet: + location = 'data/2017-09-18/#201_N_1000_setget_16-59-20' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:23 + Started at 2017-09-18 16:59:23 + DataSet: + location = 'data/2017-09-18/#202_N_1000_setget_16-59-23' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:27 + Started at 2017-09-18 16:59:27 + DataSet: + location = 'data/2017-09-18/#203_N_1000_setget_16-59-27' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:30 + Started at 2017-09-18 16:59:30 + DataSet: + location = 'data/2017-09-18/#204_N_1000_setget_16-59-30' + | | | + Setpoint | keith_smua_volt_set | volt | (1000,) + Measured | keith_smua_curr | curr | (1000,) + Finished at 2017-09-18 16:59:33 + 3.38 s ± 39.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + + +SCRIPT +------ + +.. code:: ipython3 + + %%timeit + + data = keith.smua.doFastSweep(1, 10, N, mode='IV') + + +.. parsed-literal:: + + DataSet: + location = 'data/2017-09-18/#205_{name}_16-59-38' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:39 + DataSet: + location = 'data/2017-09-18/#206_{name}_16-59-39' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:41 + DataSet: + location = 'data/2017-09-18/#207_{name}_16-59-41' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:42 + DataSet: + location = 'data/2017-09-18/#208_{name}_16-59-42' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:43 + DataSet: + location = 'data/2017-09-18/#209_{name}_16-59-43' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:45 + DataSet: + location = 'data/2017-09-18/#210_{name}_16-59-45' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:46 + DataSet: + location = 'data/2017-09-18/#211_{name}_16-59-46' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:48 + DataSet: + location = 'data/2017-09-18/#212_{name}_16-59-48' + | | | + Measured | keith_smua_iv_sweep | iv_sweep | (1000,) + acquired at 2017-09-18 16:59:49 + 1.44 s ± 13.5 ms per loop (mean ± std. dev. of 7 runs, 1 loop each) + diff --git a/_sources/_notebooks/driver_examples/Keithley_example.rst.txt b/_sources/_notebooks/driver_examples/Keithley_example.rst.txt deleted file mode 100644 index 7592fd0fd14..00000000000 --- a/_sources/_notebooks/driver_examples/Keithley_example.rst.txt +++ /dev/null @@ -1,180 +0,0 @@ - -Example script for Keithley driver -================================== - -.. code:: ipython3 - - import matplotlib.pyplot as plt - import time - import numpy as np - from imp import reload - import qcodes as qc - - - -.. parsed-literal:: - - - - - -.. raw:: html - - - - -Keithley driver ---------------- - -What to do: - -- implement add functionality of the driver -- add documentation to the functions - -.. code:: ipython3 - - import qcodes.instrument_drivers - import qcodes.instrument_drivers.tektronix.Keithley_2700 as keith - - - - -.. parsed-literal:: - - - - - -.. code:: ipython3 - - k1 = keith.Keithley_2700('Keithley', 'GPIB1::15::INSTR') - k1.add_parameter('READ', get_cmd='READ?', label='Keithley value', get_parser=float) - - -.. parsed-literal:: - - Connected to: KEITHLEY INSTRUMENTS INC., MODEL 2700, 0792116, B06 /A02 in 0.17s - - -.. code:: ipython3 - - print('current mode: %s' % k1.get('mode')) - - -.. parsed-literal:: - - current mode: VOLT:DC - - -.. code:: ipython3 - - for i in range(6): - print('measure: %.6f' % k1.readnext() ) - - -.. parsed-literal:: - - measure: -0.095112 - measure: -0.104225 - measure: -0.112567 - measure: -0.129525 - measure: -0.137803 - measure: -0.146068 - - -.. code:: ipython3 - - station = qc.Station('Keithley') - - # could measure any number of things by adding arguments to this - # function call, but here we're just measuring one, the meter mode - station.set_measurement(k1.mode) - - qc.active_children() - - - - -.. parsed-literal:: - - [] - - - -.. code:: ipython3 - - station.measure() - - - - -.. parsed-literal:: - - ['VOLT:DC'] - - - -.. code:: ipython3 - - print(k1.nplc.__doc__) - - -.. parsed-literal:: - - Get integration time in Number of PowerLine Cycles. - To get the integrationtime in seconds, use get_integrationtime(). - Parameter class: - * `name` nplc - * `label` nplc - * `units` APER - - diff --git a/_sources/_notebooks/driver_examples/Qcodes example with Keithley 2600.rst.txt b/_sources/_notebooks/driver_examples/Qcodes example with Keithley 2600.rst.txt index 89bb983be3a..5d5cf10f044 100644 --- a/_sources/_notebooks/driver_examples/Qcodes example with Keithley 2600.rst.txt +++ b/_sources/_notebooks/driver_examples/Qcodes example with Keithley 2600.rst.txt @@ -2,396 +2,163 @@ Qcodes example with Keithley 2600 ================================= +**NOTE** This example is for the new (as of September 2017) channelised +driver. If you are considering using the old driver, please reconsider. +There is no functionality of the old driver that is not contained in the +new one, but it might have a (slightly) different name. + .. code:: ipython3 - %matplotlib nbagg - import matplotlib.pyplot as plt - import time - import numpy as np - import qcodes as qc - qc.halt_bg() - qc.set_mp_method('spawn') # force Windows behavior on mac - - # this makes a widget in the corner of the window to show and control - # subprocesses and any output they would print to the terminal - qc.show_subprocess_widget() - - - -.. parsed-literal:: - - - - - -.. raw:: html - - - - -.. parsed-literal:: - - No loop running - - -.. code:: ipython3 - - import qcodes.instrument_drivers.tektronix.Keithley_2600 as keith + from qcodes.instrument_drivers.tektronix.Keithley_2600_channels import Keithley_2600 .. code:: ipython3 - # spawn doesn't like function or class definitions in the interpreter - # session - had to move them to a file. - - # now create this "experiment" - k1 = keith.Keithley_2600('Keithley1', 'GPIB0::15::INSTR',channel='a')#,server_name=None) - k2 = keith.Keithley_2600('Keithley2', 'GPIB0::15::INSTR',channel='b')#,server_name=None) - - station = qc.Station(k1,k2) + # Create a station to hold all the instruments - # could measure any number of things by adding arguments to this - # function call, but here we're just measuring one, the meter amplitude - station.set_measurement(k1.curr,k2.curr) + station = qc.Station() - # it's nice to have the key parameters be part of the global namespace - # that way they're objects that we can easily set, get, and slice - # this could be simplified to a station method that gathers all parameters - # and adds them all as (disambiguated) globals, printing what it did - # something like: - # station.gather_parameters(globals()) + # instantiate the Keithley and add it to the station - vsd1, vsd2, curr1, curr2 = k1.volt, k2.volt, k1.curr, k2.curr - - # once we have implemented a monitor, defining a station will start a - # DataServer process, and you would see it in the subprocess widget, - # or via active_children() as here: - # qc.active_children() - -.. code:: ipython3 - - station.snapshot() - - + keith = Keithley_2600('keithley', 'TCPIP0::192.168.15.116::inst0::INSTR') + station.add_component(keith) .. parsed-literal:: - {'instruments': {'Keithley1': {'functions': {}, - 'metadata': {'info': {'model': '2614B', - 'serial_number': '4083825', - 'software_revision': '3.2.1', - 'vendor': 'Keithley Instruments Inc.'}}, - 'parameters': {'curr': {'ts': None, 'value': None}, - 'limiti': {'ts': None, 'value': None}, - 'limitv': {'ts': None, 'value': None}, - 'mode': {'ts': None, 'value': None}, - 'output': {'ts': None, 'value': None}, - 'rangei': {'ts': None, 'value': None}, - 'rangev': {'ts': None, 'value': None}, - 'volt': {'ts': None, 'value': None}}}, - 'Keithley2': {'functions': {}, - 'metadata': {'info': {'model': '2614B', - 'serial_number': '4083825', - 'software_revision': '3.2.1', - 'vendor': 'Keithley Instruments Inc.'}}, - 'parameters': {'curr': {'ts': None, 'value': None}, - 'limiti': {'ts': None, 'value': None}, - 'limitv': {'ts': None, 'value': None}, - 'mode': {'ts': None, 'value': None}, - 'output': {'ts': None, 'value': None}, - 'rangei': {'ts': None, 'value': None}, - 'rangev': {'ts': None, 'value': None}, - 'volt': {'ts': None, 'value': None}}}}} - - - -.. code:: ipython3 - - # we can get the measured quantities right now - station.measure() + Connected to: Keithley Instruments Inc. 2614B (serial:4084407, firmware:3.2.1) in 0.09s .. parsed-literal:: - [2.98023e-13, -9.41753e-13] - - - -.. code:: ipython3 - - # start a Loop (which by default runs in a seprarate process) - # the sweep values are defined by slicing the parameter object - # but more complicated sweeps (eg nonlinear, or adaptive) can - # easily be used instead - - # Notice that I'm using an explicit location and `overwrite=True` here so that - # running this notebook over and over won't result in extra files. - # But if you leave these out, you get a new timestamped DataSet each time. - data = qc.Loop(vsd1[-5:5:0.5], 0.03).run(location='testsweep', overwrite=True) - - # now there should be two extra processes running, DataServer and a sweep - # I'll omit the active_children call now because you can see them in the - # subprocess widget + 'keithley' -.. parsed-literal:: - DataSet: DataMode.PULL_FROM_SERVER, location='testsweep' - curr_0: curr - curr_1: curr - volt: volt - started at 2016-04-20 15:37:23 +The Keithley 2600 has two channels, here called ``smua`` and ``smub`` in +agreement with the instrument manual. +The two channels are basically two separate instruments with different +integration times (``nplc``), operation modes (``mode``) etc. .. code:: ipython3 - # manually bring the data into the main process and display it as numbers - data.sync() - data.arrays - - + # Get an overview of the settings + # + # You will notice that the two channels have identical parameters but + # potentially different values for them + # + keith.print_readable_snapshot() .. parsed-literal:: - {'curr_0': DataArray[20]: curr_0 - array([ nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, - nan, nan, nan, nan, nan, nan, nan, nan, nan]), - 'curr_1': DataArray[20]: curr_1 - array([ nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, - nan, nan, nan, nan, nan, nan, nan, nan, nan]), - 'volt': DataArray[20]: volt - array([ -5., nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, - nan, nan, nan, nan, nan, nan, nan, nan, nan])} - - + keithley: + parameter value + -------------------------------------------------------------------------------- + IDN : {'vendor': 'Keithley Instruments Inc.', 'model': '2614B', '... + display_settext : None + timeout : 5 (s) + keithley_smua: + parameter value + -------------------------------------------------------------------------------- + curr : 3.0994e-07 (A) + fastsweep : None + limiti : 0.1 (A) + limitv : 20 (V) + measurerange_i : 0.1 (A) + measurerange_v : 2.00000e+01 (V) + mode : voltage + nplc : 0.05 + output : on + sourcerange_i : 1e-07 (A) + sourcerange_v : 20 (V) + volt : 1.9999 (V) + keithley_smub: + parameter value + -------------------------------------------------------------------------------- + curr : -3.6955e-13 (A) + fastsweep : None + limiti : 0.1 (A) + limitv : 20 (V) + measurerange_i : 1e-07 (A) + measurerange_v : 2.00000e-01 (V) + mode : voltage + nplc : 1 + output : off + sourcerange_i : 1e-07 (A) + sourcerange_v : 0.2 (V) + volt : 1.1206e-06 (V) + + +Basic operation +--------------- + +Each channel operates in either ``voltage`` or ``current`` mode. The +mode controls the *source* behaviour of the instrument, i.e. ``voltage`` +mode corresponds to an amp-meter (voltage source, current meter) and +vice versa. .. code:: ipython3 - # live-updating plot, that syncs the data and stops updating when it's finished - # plot = qc.MatPlot(data.amplitude) - plotQ1 = qc.QtPlot(data.volt, data.curr_0) - plotQ2 = qc.QtPlot(data.volt, data.curr_1) - -.. code:: ipython3 - - data2 = qc.Loop(vsd1[-5:5:0.1],0).each( - qc.Loop(vsd2[-2:2:.2], 0) - ).run(location='test2d', overwrite=True) + # Let's set up a single-shot current measurement + # on channel a - # use the subplot and add features of qc.MatPlot - # plot2 = qc.MatPlot(data2.amplitude_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1, 2)) - # plot2.add(data2.amplitude_3, cmap=plt.cm.hot, subplot=2) + keith.smua.mode('voltage') + keith.smua.nplc(0.05) # 0.05 Power Line Cycles per measurement. At 50 Hz, this corresponds to 1 ms + keith.smua.sourcerange_v(20) + keith.smua.measurerange_i(0.1) + # + keith.smua.volt(1) # set the source to output 1 V + keith.smua.output('on') # turn output on + curr = keith.smua.curr() + keith.smua.output('off') - # the equivalent in QtPlot - plot2Q = qc.QtPlot(data2.curr_1, figsize=(1200, 500)) - # plot2Q.add(data2.curr_1, subplot=2) + print('Measured one current value: {} A'.format(curr)) .. parsed-literal:: - DataSet: DataMode.PULL_FROM_SERVER, location='test2d' - curr_1: curr - volt: volt - curr_0: curr - volt_0: volt - started at 2016-04-20 15:22:46 - + Measured one current value: -1.54972e-06 A -.. code:: ipython3 - - k1.setattr(('metadata','test'), 11) - k1.getattr('info') - - - - -.. parsed-literal:: - - {'model': '2614B', - 'serial_number': '4083825', - 'software_revision': '3.2.1', - 'vendor': 'Keithley Instruments Inc.'} +Fast IV curves +-------------- +Onboard the Keithley 2600 sits a small computer that can interpret +``Lua`` scripts. This can be used to make fast IV-curves and is +supported by the QCoDeS driver. .. code:: ipython3 - k1.ask_direct('*IDN?') - - - - -.. parsed-literal:: - - 'Keithley Instruments Inc., Model 2614B, 4083825, 3.2.1' - - + # Let's make a fast IV curve by sweeping the voltage from 1 V to 2 V in 500 steps + # (when making this notebook, nothing was connected to the instrument, so we just measure noise) .. code:: ipython3 - station.snapshot(update=True) - - + # This function performs the fast sweep and returns a QCoDeS DataSet + data = keith.smua.doFastSweep(1, 2, 500, mode='IV') .. parsed-literal:: - {'instruments': {'Keithley1': {'functions': {}, - 'metadata': {'test': 11}, - 'parameters': {'curr': {'ts': '2016-04-20 15:31:51', 'value': -2.14577e-13}, - 'limiti': {'ts': '2016-04-20 15:31:51', 'value': 0.1}, - 'limitv': {'ts': '2016-04-20 15:31:51', 'value': 20.0}, - 'mode': {'ts': '2016-04-20 15:31:51', 'value': 'voltage'}, - 'output': {'ts': '2016-04-20 15:31:51', 'value': 'ON'}, - 'rangei': {'ts': '2016-04-20 15:31:51', 'value': 1e-07}, - 'rangev': {'ts': '2016-04-20 15:31:51', 'value': 20.0}, - 'volt': {'ts': '2016-04-20 15:31:51', 'value': 4.90016}}}, - 'Keithley2': {'functions': {}, - 'parameters': {'curr': {'ts': '2016-04-20 15:31:51', 'value': -1.07288e-12}, - 'limiti': {'ts': '2016-04-20 15:31:51', 'value': 0.1}, - 'limitv': {'ts': '2016-04-20 15:31:51', 'value': 20.0}, - 'mode': {'ts': '2016-04-20 15:31:51', 'value': 'voltage'}, - 'output': {'ts': '2016-04-20 15:31:51', 'value': 'ON'}, - 'rangei': {'ts': '2016-04-20 15:31:51', 'value': 1e-07}, - 'rangev': {'ts': '2016-04-20 15:31:51', 'value': 2.0}, - 'volt': {'ts': '2016-04-20 15:31:51', 'value': 1.80006}}}}} - + DataSet: + location = 'data/2017-09-28/#001_{name}_14-43-10' + | | | + Measured | keithley_smua_iv_sweep | iv_sweep | (500,) + acquired at 2017-09-28 14:43:11 .. code:: ipython3 - plot2Q.add(data2.curr_0, subplot=2) - + # The DataSet may be plotted + plot = qc.MatPlot() + plot.add(data.arrays['keithley_smua_iv_sweep']) .. code:: ipython3 - data3 = qc.Loop(vsd1[-15:15:1], 0).each( - qc.Loop(vsd2[-5:5:1], 0), - qc.Loop(vsd2[5:-5:1], 0), - ).run(location='test_multi_d', overwrite=True) - - # several plots updating simultaneously - # plot3 = qc.MatPlot(data3.curr_1_1, cmap=plt.cm.hot) - # plot3b = qc.MatPlot(data3.curr_1_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1,2)) - # plot3b.add(data3.curr_0_1, subplot=2) - plot3Q = qc.QtPlot(data3.curr_1) - plot3bQ = qc.QtPlot(data3.curr_1, figsize=(1200, 500)) - plot3bQ.add(data3.curr_0, subplot=2) - - -.. parsed-literal:: - - DataSet: DataMode.PULL_FROM_SERVER, location='test_multi_d' - curr_0_1: curr - volt_0: volt - curr_0_0: curr - volt_1: volt - curr_1_0: curr - curr_1_1: curr - volt: volt - started at 2016-04-20 14:09:16 - - -:: - - - --------------------------------------------------------------------------- - - AttributeError Traceback (most recent call last) - - in () - 8 # plot3b = qc.MatPlot(data3.curr_1_0, cmap=plt.cm.hot, figsize=(12, 4.5), subplots=(1,2)) - 9 # plot3b.add(data3.curr_0_1, subplot=2) - ---> 10 plot3Q = qc.QtPlot(data3.curr_1) - 11 plot3bQ = qc.QtPlot(data3.curr_1, figsize=(1200, 500)) - 12 plot3bQ.add(data3.curr_0, subplot=2) - - - C:\Github\Qcodes\qcodes\utils\helpers.py in __getattr__(self, key) - 187 raise AttributeError( - 188 "'{}' object and its delegates have no attribute '{}'".format( - --> 189 self.__class__.__name__, key)) - 190 - 191 def __dir__(self): - - - AttributeError: 'DataSet' object and its delegates have no attribute 'curr_1' - - -.. code:: ipython3 - - # An example of a parameter that returns several values of different dimension - # This produces the last two arrays from data3, but only takes the data once. - data4 = qc.Loop(c1[-15:15:1], 0.1).each( - AverageAndRaw(meter.amplitude, c2[-10:10:0.2], 0.001) - ).run(location='test_complex_param', overwrite=True) - - # plot4 = qc.MatPlot(data4.amplitude, cmap=plt.cm.hot, subplots=(1,2), figsize=(12, 4.5)) - # plot4.add(data4.avg_amplitude, subplot=2) - plot4Q = qc.QtPlot(data4.amplitude, figsize=(1200, 500)) - plot4Q.add(data4.avg_amplitude, subplot=2) - - -.. parsed-literal:: - - DataSet: DataMode.PULL_FROM_SERVER, location='test_complex_param' - avg_amplitude: avg_amplitude - chan2: chan2 - chan1: chan1 - amplitude: amplitude - started at 2016-02-02 12:18:09 - + # Finally, tear down the instrument + keith.close() diff --git a/_sources/api/generated/qcodes.instrument_drivers.tektronix.rst.txt b/_sources/api/generated/qcodes.instrument_drivers.tektronix.rst.txt index c109d1b1fe8..76f4ea31085 100644 --- a/_sources/api/generated/qcodes.instrument_drivers.tektronix.rst.txt +++ b/_sources/api/generated/qcodes.instrument_drivers.tektronix.rst.txt @@ -60,6 +60,14 @@ qcodes\.instrument\_drivers\.tektronix\.Keithley\_2600 module :undoc-members: :show-inheritance: +qcodes\.instrument\_drivers\.tektronix\.Keithley\_2600\_channels module +----------------------------------------------------------------------- + +.. automodule:: qcodes.instrument_drivers.tektronix.Keithley_2600_channels + :members: + :undoc-members: + :show-inheritance: + qcodes\.instrument\_drivers\.tektronix\.Keithley\_2700 module ------------------------------------------------------------- diff --git a/api/generated/qcodes.instrument_drivers.Advantech.html b/api/generated/qcodes.instrument_drivers.Advantech.html index 1d39dc03f3e..fa31646a324 100644 --- a/api/generated/qcodes.instrument_drivers.Advantech.html +++ b/api/generated/qcodes.instrument_drivers.Advantech.html @@ -232,7 +232,7 @@

                                                                Submodules
                                                                -ERRORMSG = {0: 'The operation is completed successfully.', 2684354560: 'The interrupt resource is not available.', 2684354562: 'The property value is out of range.', 2684354563: 'The property value is not supported.', 2684354564: 'The property value conflicts with the current state.', 2684354565: 'The value range of all channels in a group should be same, such as 4~20mA of PCI-1724.', 3758096384: "The handle is NULL or its type doesn't match the required operation.", 2684354561: 'The parameter is out of the range.', 3758096392: 'The required function is not supported.', 3758096393: 'The required event is not supported.', 3758096394: 'The required property is not supported.', 3758096395: 'The required property is read-only.', 3758096396: 'The specified property value conflicts with the current state.', 3758096386: 'The parameter value is not supported.', 3758096398: 'The specified property value is not supported.', 3758096397: 'The specified property value is out of range.', 3758096400: 'The required privilege is not available because someone else had own it.', 3758096401: 'The driver of specified device was not found.', 3758096402: 'The driver version of the specified device mismatched.', 3758096387: 'The parameter value format is not the expected.', 3758096404: 'The device is not opened.', 3758096405: 'The required device does not exist.', 3758096406: 'The required device is unrecognized by driver.', 3758096407: 'The configuration data of the specified device is lost or unavailable.', 3758096408: "The function is not initialized and can't be started.", 3758096388: 'Not enough memory is available to complete the operation.', 3758096410: 'The interrupt resource is not available.', 3758096399: "The handle hasn't own the privilege of the operation the user wanted.", 3758096412: 'Time out when reading/writing the device.', 3758096413: 'The given signature does not match with the device current one.', 3758096414: 'The function cannot be executed while the buffered AI is running.', 3758096389: 'The data buffer is null.', 3758096411: 'The DMA channel is not available.', 3758096385: 'The parameter value is out of range.', 3758096390: 'The data buffer is too small for the operation.', 3758096391: 'The data length exceeded the limitation.', 3758096403: 'The loaded driver count exceeded the limitation.', 3758096409: 'The function is busy.', 3758096415: 'The value range is not available in single-ended mode.', 3758161919: 'Undefined error.'}
                                                                +ERRORMSG = {0: 'The operation is completed successfully.', 2684354560: 'The interrupt resource is not available.', 2684354561: 'The parameter is out of the range.', 2684354562: 'The property value is out of range.', 2684354563: 'The property value is not supported.', 2684354564: 'The property value conflicts with the current state.', 2684354565: 'The value range of all channels in a group should be same, such as 4~20mA of PCI-1724.', 3758096384: "The handle is NULL or its type doesn't match the required operation.", 3758096385: 'The parameter value is out of range.', 3758096386: 'The parameter value is not supported.', 3758096387: 'The parameter value format is not the expected.', 3758096388: 'Not enough memory is available to complete the operation.', 3758096389: 'The data buffer is null.', 3758096390: 'The data buffer is too small for the operation.', 3758096391: 'The data length exceeded the limitation.', 3758096392: 'The required function is not supported.', 3758096393: 'The required event is not supported.', 3758096394: 'The required property is not supported.', 3758096395: 'The required property is read-only.', 3758096396: 'The specified property value conflicts with the current state.', 3758096397: 'The specified property value is out of range.', 3758096398: 'The specified property value is not supported.', 3758096399: "The handle hasn't own the privilege of the operation the user wanted.", 3758096400: 'The required privilege is not available because someone else had own it.', 3758096401: 'The driver of specified device was not found.', 3758096402: 'The driver version of the specified device mismatched.', 3758096403: 'The loaded driver count exceeded the limitation.', 3758096404: 'The device is not opened.', 3758096405: 'The required device does not exist.', 3758096406: 'The required device is unrecognized by driver.', 3758096407: 'The configuration data of the specified device is lost or unavailable.', 3758096408: "The function is not initialized and can't be started.", 3758096409: 'The function is busy.', 3758096410: 'The interrupt resource is not available.', 3758096411: 'The DMA channel is not available.', 3758096412: 'Time out when reading/writing the device.', 3758096413: 'The given signature does not match with the device current one.', 3758096414: 'The function cannot be executed while the buffered AI is running.', 3758096415: 'The value range is not available in single-ended mode.', 3758161919: 'Undefined error.'}
                                                                diff --git a/api/generated/qcodes.instrument_drivers.QDev.html b/api/generated/qcodes.instrument_drivers.QDev.html index 38dd86d3d78..817a8113a94 100644 --- a/api/generated/qcodes.instrument_drivers.QDev.html +++ b/api/generated/qcodes.instrument_drivers.QDev.html @@ -279,7 +279,7 @@

                                                                Submodules
                                                                -voltage_range_status = {'X 0.1': 1, 'X 1': 10}
                                                                +voltage_range_status = {'X 1': 10, 'X 0.1': 1}

                                                                @@ -382,7 +382,7 @@

                                                                Submodules
                                                                -voltage_range_status = {'X 0.1': 1, 'X 1': 10}
                                                                +voltage_range_status = {'X 1': 10, 'X 0.1': 1}

                                                                diff --git a/api/generated/qcodes.instrument_drivers.html b/api/generated/qcodes.instrument_drivers.html index 581e297173f..ab232f1e941 100644 --- a/api/generated/qcodes.instrument_drivers.html +++ b/api/generated/qcodes.instrument_drivers.html @@ -350,6 +350,7 @@

                                                                Subpackagesqcodes.instrument_drivers.tektronix.Keithley_2000 module
                                                              • qcodes.instrument_drivers.tektronix.Keithley_2400 module
                                                              • qcodes.instrument_drivers.tektronix.Keithley_2600 module
                                                              • +
                                                              • qcodes.instrument_drivers.tektronix.Keithley_2600_channels module
                                                              • qcodes.instrument_drivers.tektronix.Keithley_2700 module
                                                              • qcodes.instrument_drivers.tektronix.TPS2012 module
                                                              • Module contents
                                                              • diff --git a/api/generated/qcodes.instrument_drivers.signal_hound.html b/api/generated/qcodes.instrument_drivers.signal_hound.html index c5b3c7843fc..6fc28e8df7b 100644 --- a/api/generated/qcodes.instrument_drivers.signal_hound.html +++ b/api/generated/qcodes.instrument_drivers.signal_hound.html @@ -318,12 +318,12 @@

                                                                Submodules
                                                                -saStatus = {'saInvalidModeErr': -7, 'saDeviceNotIdleErr': -9, 'saTrackingGeneratorNotFound': -10, 'saUnknownErr': -666, 'saFrequencyRangeErr': -99, 'saCompressionWarning': 2, 'saNullPtrErr': -1, 'saNoCorrections': 1, 'saInvalidParameterErr': -4, 'saExternalReferenceNotFound': -89, 'saDeviceNotOpenErr': -3, 'saInternetErr': -12, 'saOvenColdErr': -20, 'saInvalidScaleErr': -94, 'saUSBCommErr': -11, 'saParameterClamped': 3, 'saTooManyDevicesErr': -5, 'saDeviceNotConfiguredErr': -6, 'saNoError': 0, 'saBandwidthErr': -91, 'saNotConfiguredErr': -6, 'saBandwidthClamped': 4, 'saInvalidDetectorErr': -95, 'saDeviceNotFoundErr': -8, 'saInvalidDeviceErr': -2}
                                                                +saStatus = {'saUnknownErr': -666, 'saFrequencyRangeErr': -99, 'saInvalidDetectorErr': -95, 'saInvalidScaleErr': -94, 'saBandwidthErr': -91, 'saExternalReferenceNotFound': -89, 'saOvenColdErr': -20, 'saInternetErr': -12, 'saUSBCommErr': -11, 'saTrackingGeneratorNotFound': -10, 'saDeviceNotIdleErr': -9, 'saDeviceNotFoundErr': -8, 'saInvalidModeErr': -7, 'saNotConfiguredErr': -6, 'saDeviceNotConfiguredErr': -6, 'saTooManyDevicesErr': -5, 'saInvalidParameterErr': -4, 'saDeviceNotOpenErr': -3, 'saInvalidDeviceErr': -2, 'saNullPtrErr': -1, 'saNoError': 0, 'saNoCorrections': 1, 'saCompressionWarning': 2, 'saParameterClamped': 3, 'saBandwidthClamped': 4}

                                                                -saStatus_inverted = {0: 'saNoError', 1: 'saNoCorrections', 2: 'saCompressionWarning', 3: 'saParameterClamped', 4: 'saBandwidthClamped', -2: 'saInvalidDeviceErr', -99: 'saFrequencyRangeErr', -95: 'saInvalidDetectorErr', -94: 'saInvalidScaleErr', -91: 'saBandwidthErr', -666: 'saUnknownErr', -89: 'saExternalReferenceNotFound', -20: 'saOvenColdErr', -12: 'saInternetErr', -11: 'saUSBCommErr', -10: 'saTrackingGeneratorNotFound', -9: 'saDeviceNotIdleErr', -8: 'saDeviceNotFoundErr', -7: 'saInvalidModeErr', -6: 'saNotConfiguredErr', -5: 'saTooManyDevicesErr', -4: 'saInvalidParameterErr', -3: 'saDeviceNotOpenErr', -1: 'saNullPtrErr'}
                                                                +saStatus_inverted = {-666: 'saUnknownErr', -99: 'saFrequencyRangeErr', -95: 'saInvalidDetectorErr', -94: 'saInvalidScaleErr', -91: 'saBandwidthErr', -89: 'saExternalReferenceNotFound', -20: 'saOvenColdErr', -12: 'saInternetErr', -11: 'saUSBCommErr', -10: 'saTrackingGeneratorNotFound', -9: 'saDeviceNotIdleErr', -8: 'saDeviceNotFoundErr', -7: 'saInvalidModeErr', -6: 'saDeviceNotConfiguredErr', -5: 'saTooManyDevicesErr', -4: 'saInvalidParameterErr', -3: 'saDeviceNotOpenErr', -2: 'saInvalidDeviceErr', -1: 'saNullPtrErr', 0: 'saNoError', 1: 'saNoCorrections', 2: 'saCompressionWarning', 3: 'saParameterClamped', 4: 'saBandwidthClamped'}
                                                                diff --git a/api/generated/qcodes.instrument_drivers.stanford_research.html b/api/generated/qcodes.instrument_drivers.stanford_research.html index 7b15a33223e..6e191af0e3d 100644 --- a/api/generated/qcodes.instrument_drivers.stanford_research.html +++ b/api/generated/qcodes.instrument_drivers.stanford_research.html @@ -513,7 +513,7 @@

                                                                SubmodulesParameters:

                                                                -AWG_FILE_FORMAT_HEAD = {'EVENT_INPUT_THRESHOLD': 'd', 'TRIGGER_INPUT_IMPEDANCE': 'h', 'ZEROING': 'h', 'RUN_MODE': 'h', 'SAMPLING_RATE': 'd', 'RUN_STATE': 'h', 'EVENT_INPUT_IMPEDANCE': 'h', 'REPETITION_RATE': 'd', 'WAIT_VALUE': 'h', 'INTERLEAVE_ADJ_PHASE': 'd', 'TRIGGER_INPUT_SLOPE': 'h', 'HOLD_REPETITION_RATE': 'h', 'REFERENCE_CLOCK_FREQUENCY_SELECTION': 'h', 'TRIGGER_SOURCE': 'h', 'INTERLEAVE_ADJ_AMPLITUDE': 'd', 'DIVIDER_RATE': 'h', 'REFERENCE_MULTIPLIER_RATE': 'h', 'INTERLEAVE': 'h', 'REFERENCE_SOURCE': 'h', 'CLOCK_SOURCE': 'h', 'TRIGGER_INPUT_THRESHOLD': 'd', 'EVENT_INPUT_POLARITY': 'h', 'EXTERNAL_REFERENCE_TYPE': 'h', 'COUPLING': 'h', 'JUMP_TIMING': 'h', 'INTERNAL_TRIGGER_RATE': 'd', 'TRIGGER_INPUT_POLARITY': 'h'}
                                                                +AWG_FILE_FORMAT_HEAD = {'SAMPLING_RATE': 'd', 'REPETITION_RATE': 'd', 'HOLD_REPETITION_RATE': 'h', 'CLOCK_SOURCE': 'h', 'REFERENCE_SOURCE': 'h', 'EXTERNAL_REFERENCE_TYPE': 'h', 'REFERENCE_CLOCK_FREQUENCY_SELECTION': 'h', 'REFERENCE_MULTIPLIER_RATE': 'h', 'DIVIDER_RATE': 'h', 'TRIGGER_SOURCE': 'h', 'INTERNAL_TRIGGER_RATE': 'd', 'TRIGGER_INPUT_IMPEDANCE': 'h', 'TRIGGER_INPUT_SLOPE': 'h', 'TRIGGER_INPUT_POLARITY': 'h', 'TRIGGER_INPUT_THRESHOLD': 'd', 'EVENT_INPUT_IMPEDANCE': 'h', 'EVENT_INPUT_POLARITY': 'h', 'EVENT_INPUT_THRESHOLD': 'd', 'JUMP_TIMING': 'h', 'INTERLEAVE': 'h', 'ZEROING': 'h', 'COUPLING': 'h', 'RUN_MODE': 'h', 'WAIT_VALUE': 'h', 'RUN_STATE': 'h', 'INTERLEAVE_ADJ_PHASE': 'd', 'INTERLEAVE_ADJ_AMPLITUDE': 'd'}
                                                                @@ -1572,23 +1573,54 @@

                                                                Submodules

                                                                qcodes.instrument_drivers.tektronix.Keithley_2600 module

                                                                -class qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600(name, address, channel, **kwargs)[source]
                                                                +class qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600(name: str, address: str, channel: str, model: str = None, **kwargs) → None[source]

                                                                Bases: qcodes.instrument.visa.VisaInstrument

                                                                -

                                                                channel: use channel ‘a’ or ‘b’

                                                                This is the qcodes driver for the Keithley_2600 Source-Meter series, tested with Keithley_2614B

                                                                Status: beta-version.
                                                                TODO: -- Add all parameters that are in the manual -- range and limit should be set according to mode +- Make a channelised version for the two channels - add ramping and such stuff
                                                                + +++ + + + +
                                                                Parameters:
                                                                  +
                                                                • name – Name to use internally in QCoDeS
                                                                • +
                                                                • address – VISA ressource address
                                                                • +
                                                                • channel – Either ‘a’ or ‘b’
                                                                • +
                                                                • model – The model type, e.g. ‘2614B’
                                                                • +
                                                                +
                                                                ask(cmd)[source]
                                                                +
                                                                +
                                                                +display_clear()[source]
                                                                +

                                                                This function clears the display, but also leaves it in user mode

                                                                +
                                                                + +
                                                                +
                                                                +display_normal()[source]
                                                                +

                                                                Set the display to the default mode

                                                                +
                                                                + +
                                                                +
                                                                +exit_key()[source]
                                                                +

                                                                Get back the normal screen after an error: +send an EXIT key press event

                                                                +
                                                                +
                                                                get_idn()[source]
                                                                @@ -1597,7 +1629,8 @@

                                                                Submodules
                                                                reset()[source]
                                                                -

                                                                +

                                                                Reset instrument to factory defaults

                                                                +
                                                                @@ -1606,6 +1639,158 @@

                                                                Submodules +

                                                                qcodes.instrument_drivers.tektronix.Keithley_2600_channels module

                                                                +
                                                                +
                                                                +class qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel(parent: qcodes.instrument.base.Instrument, name: str, channel: str) → None[source]
                                                                +

                                                                Bases: qcodes.instrument.channel.InstrumentChannel

                                                                +

                                                                Class to hold the two Keithley channels, i.e. +SMUA and SMUB.

                                                                + +++ + + + +
                                                                Parameters:
                                                                  +
                                                                • parent – The Instrument instance to which the channel is +to be attached.
                                                                • +
                                                                • name – The ‘colloquial’ name of the channel
                                                                • +
                                                                • channel – The name used by the Keithley, i.e. either +‘smua’ or ‘smub’
                                                                • +
                                                                +
                                                                +
                                                                +
                                                                +doFastSweep(start: float, stop: float, steps: int, mode: str) → qcodes.data.data_set.DataSet[source]
                                                                +

                                                                Perform a fast sweep using a deployed lua script and +return a QCoDeS DataSet with the sweep.

                                                                + +++ + + + +
                                                                Parameters:
                                                                  +
                                                                • start – starting sweep value (V or A)
                                                                • +
                                                                • stop – end sweep value (V or A)
                                                                • +
                                                                • steps – number of steps
                                                                • +
                                                                • mode – What kind of sweep to make. +‘IV’ (I versus V) or ‘VI’ (V versus I)
                                                                • +
                                                                +
                                                                +
                                                                + +
                                                                +
                                                                +reset()[source]
                                                                +

                                                                Reset instrument to factory defaults. +This resets only the relevant channel.

                                                                +
                                                                + +
                                                                +
                                                                +snapshot_base(update: bool = False) → typing.Dict[source]
                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +class qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600(name: str, address: str, **kwargs) → None[source]
                                                                +

                                                                Bases: qcodes.instrument.visa.VisaInstrument

                                                                +

                                                                This is the qcodes driver for the Keithley_2600 Source-Meter series, +tested with Keithley_2614B

                                                                + +++ + + + +
                                                                Parameters:
                                                                  +
                                                                • name – Name to use internally in QCoDeS
                                                                • +
                                                                • address – VISA ressource address
                                                                • +
                                                                +
                                                                +
                                                                +
                                                                +ask(cmd: str) → str[source]
                                                                +

                                                                Override of normal ask. This is important, since queries to the +instrument must be wrapped in ‘print()’

                                                                +
                                                                + +
                                                                +
                                                                +display_clear()[source]
                                                                +

                                                                This function clears the display, but also leaves it in user mode

                                                                +
                                                                + +
                                                                +
                                                                +display_normal()[source]
                                                                +

                                                                Set the display to the default mode

                                                                +
                                                                + +
                                                                +
                                                                +exit_key()[source]
                                                                +

                                                                Get back the normal screen after an error: +send an EXIT key press event

                                                                +
                                                                + +
                                                                +
                                                                +get_idn()[source]
                                                                +
                                                                + +
                                                                +
                                                                +reset()[source]
                                                                +

                                                                Reset instrument to factory defaults. +This resets both channels.

                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +class qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter(name: str, instrument: qcodes.instrument.base.Instrument) → None[source]
                                                                +

                                                                Bases: qcodes.instrument.parameter.ArrayParameter

                                                                +

                                                                Parameter class to hold the data from a +deployed Lua script sweep.

                                                                +
                                                                +
                                                                +get() → numpy.ndarray[source]
                                                                +
                                                                + +
                                                                +
                                                                +prepareSweep(start: float, stop: float, steps: int, mode: str) → None[source]
                                                                +

                                                                Builds setpoints and labels

                                                                + +++ + + + +
                                                                Parameters:
                                                                  +
                                                                • start – Starting point of the sweep
                                                                • +
                                                                • stop – Endpoint of the sweep
                                                                • +
                                                                • steps – No. of sweep steps
                                                                • +
                                                                • mode – Type of sweep, either ‘IV’ (voltage sweep) +or ‘VI’ (current sweep)
                                                                • +
                                                                +
                                                                +
                                                                + +
                                                                +

                          • qcodes.instrument_drivers.tektronix.Keithley_2700 module

                            diff --git a/api/generated/qcodes.utils.helpers.html b/api/generated/qcodes.utils.helpers.html index ce52afecbe3..03560bb64b5 100644 --- a/api/generated/qcodes.utils.helpers.html +++ b/api/generated/qcodes.utils.helpers.html @@ -247,7 +247,7 @@ LogCapture([logger]) context manager to grab all log messages, optionally -NumpyJSONEncoder([skipkeys, ensure_ascii, …]) +NumpyJSONEncoder(*[, skipkeys, …]) Return numpy types as standard types. diff --git a/examples/index.html b/examples/index.html index 5d0de945df6..76cb02881bb 100644 --- a/examples/index.html +++ b/examples/index.html @@ -115,7 +115,6 @@
                        • Drivers - +
                          • pre_acquire() (qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController method)
                          • SR560 (class in qcodes.instrument_drivers.stanford_research.SR560) diff --git a/objects.inv b/objects.inv index d9a6d2d9e4c..d2f917d486c 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/py-modindex.html b/py-modindex.html index 26493319532..a8ca884978b 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -534,6 +534,11 @@

                            Python Module Index

                                qcodes.instrument_drivers.tektronix.Keithley_2600 + + +     + qcodes.instrument_drivers.tektronix.Keithley_2600_channels +     diff --git a/searchindex.js b/searchindex.js index a3977b72f6d..bc5e63320a3 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/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Metadata","_notebooks/Metadata with instruments","_notebooks/Parameters","_notebooks/Qcodes location-format example","_notebooks/Tutorial","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/Keithley_example","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with AMI430","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","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.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Metadata.rst","_notebooks/Metadata with instruments.rst","_notebooks/Parameters.rst","_notebooks/Qcodes location-format example.rst","_notebooks/Tutorial.rst","_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.rst","_notebooks/benchmarking/Benchmark of Keysight DMM software trigger vs set-get.rst","_notebooks/benchmarking/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/Keithley_example.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with AMI430.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.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.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[31,1,1,""]},"qcodes.BreakIf":{__init__:[32,1,1,""]},"qcodes.ChannelList":{__init__:[33,1,1,""]},"qcodes.CombinedParameter":{__init__:[34,1,1,""]},"qcodes.Config":{__init__:[35,1,1,""],config_file_name:[35,2,1,""],current_config:[35,2,1,""],current_config_path:[35,2,1,""],current_schema:[35,2,1,""],cwd_file_name:[35,2,1,""],default_file_name:[35,2,1,""],env_file_name:[35,2,1,""],home_file_name:[35,2,1,""],schema_cwd_file_name:[35,2,1,""],schema_default_file_name:[35,2,1,""],schema_env_file_name:[35,2,1,""],schema_file_name:[35,2,1,""],schema_home_file_name:[35,2,1,""]},"qcodes.DataArray":{__init__:[36,1,1,""]},"qcodes.DataSet":{__init__:[37,1,1,""],background_functions:[37,2,1,""]},"qcodes.DiskIO":{__init__:[38,1,1,""]},"qcodes.FormatLocation":{__init__:[39,1,1,""]},"qcodes.Formatter":{__init__:[40,1,1,""]},"qcodes.Function":{__init__:[41,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[42,1,1,""]},"qcodes.IPInstrument":{__init__:[43,1,1,""]},"qcodes.Instrument":{__init__:[44,1,1,""],functions:[44,2,1,""],name:[44,2,1,""],parameters:[44,2,1,""],submodules:[44,2,1,""]},"qcodes.InstrumentChannel":{__init__:[45,1,1,""],functions:[45,2,1,""],name:[45,2,1,""],parameters:[45,2,1,""]},"qcodes.Loop":{__init__:[46,1,1,""]},"qcodes.ManualParameter":{__init__:[47,1,1,""]},"qcodes.MultiParameter":{__init__:[48,1,1,""]},"qcodes.Parameter":{__init__:[49,1,1,""]},"qcodes.StandardParameter":{__init__:[50,1,1,""]},"qcodes.SweepFixedValues":{__init__:[51,1,1,""]},"qcodes.SweepValues":{__init__:[52,1,1,""]},"qcodes.Task":{__init__:[53,1,1,""]},"qcodes.VisaInstrument":{__init__:[54,1,1,""],visa_handle:[54,2,1,""]},"qcodes.Wait":{__init__:[55,1,1,""]},"qcodes.instrument_drivers":{Advantech:[58,4,0,"-"],AlazarTech:[59,4,0,"-"],HP:[60,4,0,"-"],Harvard:[61,4,0,"-"],Keysight:[62,4,0,"-"],Lakeshore:[63,4,0,"-"],QDev:[64,4,0,"-"],QuTech:[65,4,0,"-"],Spectrum:[66,4,0,"-"],ZI:[68,4,0,"-"],agilent:[69,4,0,"-"],american_magnetics:[70,4,0,"-"],devices:[57,4,0,"-"],ithaco:[71,4,0,"-"],oxford:[72,4,0,"-"],rigol:[73,4,0,"-"],rohde_schwarz:[74,4,0,"-"],signal_hound:[75,4,0,"-"],stanford_research:[76,4,0,"-"],tektronix:[77,4,0,"-"],test:[57,4,0,"-"],weinschel:[78,4,0,"-"],yokogawa:[79,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[58,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[58,0,1,""],DAQNaviException:[58,5,1,""],DAQNaviWarning:[58,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[58,2,1,""],check:[58,1,1,""],close:[58,1,1,""],get_idn:[58,1,1,""],port_count:[58,1,1,""],read_pin:[58,1,1,""],read_port:[58,1,1,""],write_pin:[58,1,1,""],write_port:[58,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[59,4,0,"-"],ATS:[59,4,0,"-"],ATS_acquisition_controllers:[59,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[59,0,1,""],AlazarParameter:[59,0,1,""],AlazarTech_ATS:[59,0,1,""],Buffer:[59,0,1,""],TrivialDictionary:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[59,2,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[59,1,1,""],channels:[59,2,1,""],clear_buffers:[59,1,1,""],config:[59,1,1,""],dll_path:[59,2,1,""],find_boards:[59,6,1,""],get_board_info:[59,6,1,""],get_idn:[59,1,1,""],get_sample_rate:[59,1,1,""],signal_to_volt:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[59,1,1,""],free_mem:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[59,1,1,""],fit:[59,1,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""],update_acquisitionkwargs:[59,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[60,4,0,"-"],HP_83650A:[60,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[60,0,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[60,0,1,""],parsestr:[60,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[60,1,1,""],print_modstatus:[60,1,1,""],reset:[60,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[61,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[61,5,1,""],DacChannel:[61,0,1,""],DacReader:[61,0,1,""],DacSlot:[61,0,1,""],Decadac:[61,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{__repr__:[61,1,1,""],_ramp_state:[61,2,1,""],_ramp_time:[61,2,1,""],connect_message:[61,1,1,""],get_idn:[61,1,1,""],ramp_all:[61,1,1,""],set_all:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[62,4,0,"-"],Keysight_33500B_channels:[62,4,0,"-"],Keysight_34465A:[62,4,0,"-"],M3201A:[62,4,0,"-"],M3300A:[62,4,0,"-"],test_suite:[62,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[62,0,1,""],Keysight_33500B_Channels:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[62,0,1,""],Keysight_34465A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[62,1,1,""],prepare:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[62,2,1,""],flush_error_queue:[62,1,1,""],model:[62,2,1,""],ranges:[62,2,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[62,0,1,""],M3300A_DIG:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[62,0,1,""],TestKeysight_M3300A:[62,0,1,""],TestSD_Module:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_chassis_and_slot:[62,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[63,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[63,0,1,""],SensorChannel:[63,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[64,4,0,"-"],QDac_channels:[64,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[64,0,1,""],QDacChannel:[64,0,1,""],QDacMultiChannelParameter:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[64,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[65,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[65,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[65,2,1,""],Halfrange:[65,2,1,""],adjust_parameter_validator:[65,1,1,""],ask:[65,1,1,""],get_all:[65,1,1,""],get_idn:[65,1,1,""],get_pol_dac:[65,1,1,""],read:[65,1,1,""],round_dac:[65,1,1,""],set_dacs_zero:[65,1,1,""],set_pol_dacrack:[65,1,1,""],write:[65,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[66,4,0,"-"],py_header:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[66,0,1,""],szTypeToName:[66,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{active_channels:[66,1,1,""],blockavg_hardware_trigger_acquisition:[66,1,1,""],close:[66,1,1,""],convert_to_voltage:[66,1,1,""],gated_trigger_acquisition:[66,1,1,""],get_card_memory:[66,1,1,""],get_card_type:[66,1,1,""],get_error_info32bit:[66,1,1,""],get_idn:[66,1,1,""],get_max_sample_rate:[66,1,1,""],initialize_channels:[66,1,1,""],multiple_trigger_acquisition:[66,1,1,""],reset:[66,1,1,""],set_channel_OR_trigger_settings:[66,1,1,""],set_channel_settings:[66,1,1,""],set_ext0_OR_trigger_settings:[66,1,1,""],single_software_trigger_acquisition:[66,1,1,""],single_trigger_acquisition:[66,1,1,""]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[67,4,0,"-"],spcerr:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[67,3,1,""],GIGA_B:[67,3,1,""],KILO:[67,3,1,""],KILO_B:[67,3,1,""],MEGA:[67,3,1,""],MEGA_B:[67,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[68,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[68,0,1,""],Sweep:[68,0,1,""],ZIUHFLI:[68,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[68,1,1,""],names:[68,2,1,""],prepare_scope:[68,1,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[68,1,1,""],get:[68,1,1,""],names:[68,2,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[68,7,1,""],add_signal_to_sweeper:[68,1,1,""],close:[68,1,1,""],print_sweeper_settings:[68,1,1,""],remove_signal_from_sweeper:[68,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[69,4,0,"-"],E8267C:[69,4,0,"-"],E8527D:[69,4,0,"-"],HP33210A:[69,4,0,"-"],test_suite:[69,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[69,1,1,""],display_clear:[69,1,1,""],init_measurement:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[69,7,1,""],rad_to_deg:[69,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[69,1,1,""],off:[69,1,1,""],on:[69,1,1,""],parse_on_off:[69,1,1,""],rad_to_deg:[69,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[69,2,1,""],setUpClass:[69,6,1,""],test_firmware_version:[69,1,1,""],test_frequency:[69,1,1,""],test_on_off:[69,1,1,""],test_phase:[69,1,1,""],test_power:[69,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[70,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[70,0,1,""],AMI430_3D:[70,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[70,2,1,""],mocker_class:[70,2,1,""],set_field:[70,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{get_mocker_messages:[70,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[57,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[57,1,1,""],get_instrument_value:[57,1,1,""],set:[57,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[71,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[71,0,1,""],Ithaco_1211:[71,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[71,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[72,4,0,"-"],IPS120:[72,4,0,"-"],kelvinox:[72,4,0,"-"],mercuryiPS:[72,4,0,"-"],triton:[72,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[72,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],set_remote_status:[72,1,1,""],set_to_fast:[72,1,1,""],set_to_slow:[72,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[72,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[72,1,1,""],examine:[72,1,1,""],get_all:[72,1,1,""],get_changed:[72,1,1,""],get_idn:[72,1,1,""],heater_off:[72,1,1,""],heater_on:[72,1,1,""],hold:[72,1,1,""],identify:[72,1,1,""],leave_persistent_mode:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],run_to_field:[72,1,1,""],run_to_field_wait:[72,1,1,""],set_persistent:[72,1,1,""],to_setpoint:[72,1,1,""],to_zero:[72,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[72,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],identify:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],rotate_Nvalve:[72,1,1,""],set_mix_chamber_heater_mode:[72,1,1,""],set_mix_chamber_heater_power_range:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[72,0,1,""],MercuryiPSArray:[72,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[72,1,1,""],rtos:[72,1,1,""],to_zero:[72,1,1,""],write:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[72,1,1,""],set:[72,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[72,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[72,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[73,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[73,0,1,""],clean_string:[73,3,1,""],is_number:[73,3,1,""],parse_multiple_outputs:[73,3,1,""],parse_single_output:[73,3,1,""],parse_string_output:[73,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[74,4,0,"-"],SMR40:[74,4,0,"-"],ZNB20:[74,4,0,"-"],ZNB:[74,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[74,1,1,""],on:[74,1,1,""],parse_on_off:[74,1,1,""],set_pulsemod_source:[74,1,1,""],set_pulsemod_state:[74,1,1,""],set_status:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[74,1,1,""],do_get_power:[74,1,1,""],do_get_pulse_delay:[74,1,1,""],do_get_status:[74,1,1,""],do_get_status_of_ALC:[74,1,1,""],do_get_status_of_modulation:[74,1,1,""],do_set_frequency:[74,1,1,""],do_set_power:[74,1,1,""],do_set_pulse_delay:[74,1,1,""],do_set_status:[74,1,1,""],do_set_status_of_ALC:[74,1,1,""],do_set_status_of_modulation:[74,1,1,""],get_all:[74,1,1,""],off:[74,1,1,""],off_modulation:[74,1,1,""],on:[74,1,1,""],on_modulation:[74,1,1,""],reset:[74,1,1,""],set_ext_trig:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[74,0,1,""],FrequencySweepMagPhase:[74,0,1,""],ZNB:[74,0,1,""],ZNBChannel:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[74,1,1,""],clear_channels:[74,1,1,""],display_grid:[74,1,1,""],initialise:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNBChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[75,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[75,0,1,""],constants:[75,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[75,1,1,""],abort:[75,1,1,""],check_for_error:[75,1,1,""],closeDevice:[75,1,1,""],configure:[75,1,1,""],default_server_name:[75,6,1,""],dll_path:[75,2,1,""],get_power_at_freq:[75,1,1,""],get_spectrum:[75,1,1,""],initialisation:[75,1,1,""],openDevice:[75,1,1,""],prepare_for_measurement:[75,1,1,""],preset:[75,1,1,""],saStatus:[75,2,1,""],saStatus_inverted:[75,2,1,""],safe_reload:[75,1,1,""],sweep:[75,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[75,2,1,""],TG_THRU_0DB:[75,2,1,""],TG_THRU_20DB:[75,2,1,""],sa124_MAX_FREQ:[75,2,1,""],sa124_MIN_FREQ:[75,2,1,""],sa44_MAX_FREQ:[75,2,1,""],sa44_MIN_FREQ:[75,2,1,""],saDeviceTypeNone:[75,2,1,""],saDeviceTypeSA124A:[75,2,1,""],saDeviceTypeSA124B:[75,2,1,""],saDeviceTypeSA44:[75,2,1,""],saDeviceTypeSA44B:[75,2,1,""],sa_AUDIO:[75,2,1,""],sa_AUDIO_AM:[75,2,1,""],sa_AUDIO_CW:[75,2,1,""],sa_AUDIO_FM:[75,2,1,""],sa_AUDIO_LSB:[75,2,1,""],sa_AUDIO_USB:[75,2,1,""],sa_AUTO_ATTEN:[75,2,1,""],sa_AUTO_GAIN:[75,2,1,""],sa_AVERAGE:[75,2,1,""],sa_BYPASS:[75,2,1,""],sa_IDLE:[75,2,1,""],sa_IQ:[75,2,1,""],sa_IQ_SAMPLE_RATE:[75,2,1,""],sa_LIN_FULL_SCALE:[75,2,1,""],sa_LIN_SCALE:[75,2,1,""],sa_LOG_FULL_SCALE:[75,2,1,""],sa_LOG_SCALE:[75,2,1,""],sa_LOG_UNITS:[75,2,1,""],sa_MAX_ATTEN:[75,2,1,""],sa_MAX_GAIN:[75,2,1,""],sa_MAX_IQ_DECIMATION:[75,2,1,""],sa_MAX_RBW:[75,2,1,""],sa_MAX_REF:[75,2,1,""],sa_MAX_RT_RBW:[75,2,1,""],sa_MIN_IQ_BANDWIDTH:[75,2,1,""],sa_MIN_MAX:[75,2,1,""],sa_MIN_RBW:[75,2,1,""],sa_MIN_RT_RBW:[75,2,1,""],sa_MIN_SPAN:[75,2,1,""],sa_POWER_UNITS:[75,2,1,""],sa_REAL_TIME:[75,2,1,""],sa_SWEEPING:[75,2,1,""],sa_TG_SWEEP:[75,2,1,""],sa_VOLT_UNITS:[75,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[76,4,0,"-"],SIM928:[76,4,0,"-"],SR560:[76,4,0,"-"],SR830:[76,4,0,"-"],SR865:[76,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[76,1,1,""],byte_to_bits:[76,7,1,""],check_module_errors:[76,1,1,""],find_modules:[76,1,1,""],get_module_idn:[76,1,1,""],get_module_status:[76,1,1,""],get_voltage:[76,1,1,""],reset_module:[76,1,1,""],set_smooth:[76,1,1,""],set_voltage:[76,1,1,""],write_module:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[76,0,1,""],VoltageParameter:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[76,0,1,""],SR830:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[76,1,1,""],prepare_buffer_readout:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[76,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[77,4,0,"-"],AWG5200:[77,4,0,"-"],AWG520:[77,4,0,"-"],AWGFileParser:[77,4,0,"-"],Keithley_2000:[77,4,0,"-"],Keithley_2400:[77,4,0,"-"],Keithley_2600:[77,4,0,"-"],Keithley_2700:[77,4,0,"-"],TPS2012:[77,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[77,0,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[77,2,1,""],AWG_FILE_FORMAT_HEAD:[77,2,1,""],all_channels_off:[77,1,1,""],all_channels_on:[77,1,1,""],change_folder:[77,1,1,""],clear_message_queue:[77,1,1,""],create_and_goto_dir:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_event:[77,1,1,""],force_trigger:[77,1,1,""],force_trigger_event:[77,1,1,""],generate_awg_file:[77,1,1,""],generate_channel_cfg:[77,1,1,""],generate_sequence_cfg:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_error:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_sq_mode:[77,1,1,""],get_sqel_loopcnt:[77,1,1,""],get_sqel_trigger_wait:[77,1,1,""],get_sqel_waveform:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],is_awg_ready:[77,1,1,""],load_awg_file:[77,1,1,""],make_and_save_awg_file:[77,1,1,""],make_send_and_load_awg_file:[77,1,1,""],newlinestripper:[77,1,1,""],pack_waveform:[77,1,1,""],run:[77,1,1,""],send_DC_pulse:[77,1,1,""],send_awg_file:[77,1,1,""],send_waveform_to_list:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_sqel_event_jump_target_index:[77,1,1,""],set_sqel_event_jump_type:[77,1,1,""],set_sqel_event_target_index:[77,1,1,""],set_sqel_goto_state:[77,1,1,""],set_sqel_goto_target_index:[77,1,1,""],set_sqel_loopcnt:[77,1,1,""],set_sqel_loopcnt_to_inf:[77,1,1,""],set_sqel_trigger_wait:[77,1,1,""],set_sqel_waveform:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[77,1,1,""],clear_waveforms:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_logicjump:[77,1,1,""],force_trigger:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_jumpmode:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],load_and_set_sequence:[77,1,1,""],make_directory:[77,1,1,""],resend_waveform:[77,1,1,""],return_self:[77,1,1,""],send_pattern:[77,1,1,""],send_sequence2:[77,1,1,""],send_sequence:[77,1,1,""],send_waveform:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_jumpmode:[77,1,1,""],set_sequence:[77,1,1,""],set_setup_filename:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[77,0,1,""],parse_output_bool:[77,3,1,""],parse_output_string:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""],write:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[77,0,1,""],bool_to_str:[77,3,1,""],parsebool:[77,3,1,""],parseint:[77,3,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[77,1,1,""],reset:[77,1,1,""],set_defaults:[77,1,1,""],set_mode:[77,1,1,""],set_mode_volt_dc:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[77,0,1,""],TPS2012:[77,0,1,""],TPS2012Channel:[77,0,1,""],TraceNotReady:[77,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[77,1,1,""],get:[77,1,1,""],prepare_curvedata:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[77,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[57,0,1,""],test_instrument:[57,3,1,""],test_instruments:[57,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[57,2,1,""],setUpClass:[57,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[78,4,0,"-"],test_suite:[78,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[78,2,1,""],test_attenuation:[78,1,1,""],test_firmware_version:[78,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[79,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[79,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[79,1,1,""]},"qcodes.measure":{Measure:[81,0,1,""]},"qcodes.measure.Measure":{__init__:[81,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[83,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[83,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[84,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[84,1,1,""]},"qcodes.station":{Station:[85,0,1,""]},"qcodes.station.Station":{"default":[85,2,1,""],__init__:[85,1,1,""],delegate_attr_dicts:[85,2,1,""]},"qcodes.utils":{command:[86,4,0,"-"],deferred_operations:[87,4,0,"-"],helpers:[88,4,0,"-"],metadata:[89,4,0,"-"],validators:[90,4,0,"-"]},qcodes:{ArrayParameter:[31,0,1,""],BreakIf:[32,0,1,""],ChannelList:[33,0,1,""],CombinedParameter:[34,0,1,""],Config:[35,0,1,""],DataArray:[36,0,1,""],DataSet:[37,0,1,""],DiskIO:[38,0,1,""],FormatLocation:[39,0,1,""],Formatter:[40,0,1,""],Function:[41,0,1,""],GNUPlotFormat:[42,0,1,""],IPInstrument:[43,0,1,""],Instrument:[44,0,1,""],InstrumentChannel:[45,0,1,""],Loop:[46,0,1,""],ManualParameter:[47,0,1,""],MultiParameter:[48,0,1,""],Parameter:[49,0,1,""],StandardParameter:[50,0,1,""],SweepFixedValues:[51,0,1,""],SweepValues:[52,0,1,""],Task:[53,0,1,""],VisaInstrument:[54,0,1,""],Wait:[55,0,1,""],combine:[56,3,1,""],instrument_drivers:[57,4,0,"-"],load_data:[80,3,1,""],new_data:[82,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:{"001_13":39,"001_unicorn_2016":9,"002_rainbow_2016":9,"00370000e":20,"005_rainbow_2016":9,"006_":27,"007_":27,"007_testsweep_14":10,"008_2d_test_14":10,"009_testsweep_15":13,"009_unicorn_2050":9,"01084000e":20,"010_mockloop_hdf5_test_15":4,"011_":30,"011_mockloop_hdf5_test_15":4,"012_":30,"013_":15,"013_n_1000_setget_11":12,"014_n_1000_setget_11":12,"015_n_1000_setget_11":12,"016_n_1000_setget_11":12,"016_test_missing_attr_15":4,"01763000e":20,"017_mockparabola_run_15":4,"017_n_1000_setget_11":12,"018_mockparabola_run_15":4,"018_n_1000_setget_11":12,"018_testsweep_12":11,"019_n_1000_setget_11":12,"019_testsweep_12":11,"020_n_1000_setget_11":12,"020_testsweep_12":11,"021_testsweep_12":11,"025_":13,"026_":13,"027_":13,"028_":13,"029_":13,"02s":26,"030_":13,"031_":13,"032_":13,"033_":13,"034_":13,"035_":13,"036_":13,"03d":28,"06s":11,"07288e":21,"073_":26,"076_":26,"077_":26,"078_":26,"079_":26,"07s":13,"080_":26,"083_":26,"0848e":7,"084_":26,"085_":26,"086_":26,"087_":26,"088_":26,"089_":26,"090_":26,"0x1c10ee73a58":13,"0x212e0582320":30,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":20,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":110,"0x7fd834e99ea0":0,"0x818a908":16,"0x8d11978":7,"100e3":26,"100e6":62,"100x100":11,"10e":[27,30],"10e6":[16,30],"10mhz":75,"10v":50,"11s":22,"13_testsweep":0,"13_testsweep_002":0,"14577e":21,"14s":12,"15_rainbow_test":39,"15s":26,"16243e":7,"16_13":9,"16s":[15,26],"17s":14,"1b1536e1a2e4":30,"1ct":27,"1e3":[22,30],"1e6":[26,30],"20000000e":28,"200e3":26,"200uw":72,"2012b":[27,77],"20e":30,"20ma":58,"20mw":72,"20uw":72,"250khz":75,"25e":[25,27],"25gb":16,"2614b":[7,21],"27041e":7,"28539f77dfd3":2,"2d_test":10,"2e3":22,"2min":26,"2mw":72,"2uw":72,"30_alazartest":16,"33500b":[62,97,106],"33522b":22,"34400a":106,"34401a":7,"34410a":7,"34411a":106,"34460a":62,"34461a":62,"34465a":[13,62,97,99,106],"34470a":62,"348s":4,"352161306002045e":23,"36s":26,"3x2":8,"41753e":21,"42637000e":20,"4271e":7,"44s":27,"44xx":[66,96],"4634e":7,"4port":26,"50e":[22,27],"52608e":24,"541_13":9,"56s":26,"57s":17,"5e9":26,"60s":17,"62s":17,"69014000e":20,"6a5acd":28,"6e6":26,"7bcb44f808c5":21,"8133a":[60,97],"83650a":97,"844e846b99a2":13,"93s":11,"94851000e":20,"95535000e":20,"96216000e":20,"98023e":21,"98941000e":20,"99618000e":20,"9e3":26,"\u03bca":[24,25],"\u03bcv":6,"abstract":113,"boolean":[65,77,99,110],"break":[3,10,32,76,77,101,102],"byte":[59,65,76,77],"case":[2,3,8,16,28,30,41,46,50,57,59,84,102,109,113,114],"char":64,"class":[1,4,8,9,14,18,20,21,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,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,83,84,85,86,87,88,89,90,102,105,106,114],"default":[1,2,3,5,8,10,21,24,25,26,31,35,36,37,39,41,42,43,46,48,49,54,57,59,61,62,64,65,71,72,74,76,77,80,82,83,84,85,94,95,100,102,105,112],"enum":[2,3,18,20,30,50,77,105,110],"export":72,"final":[10,13,16,28,30,40,41,50,109,113],"float":[3,12,14,37,41,50,51,57,61,65,66,68,70,72,73,74,76,77,82,84,99],"function":[0,1,6,7,8,9,10,13,14,16,17,20,21,27,28,32,34,37,44,45,50,51,53,56,58,59,62,65,66,68,69,72,73,74,75,76,77,78,79,87,88,90,99,100,102,105,106,108,113,114],"goto":[28,77],"import":[0,1,2,3,4,5,6,7,8,9,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,99,102,106,110,113,114],"int":[1,8,12,13,28,30,31,36,41,43,48,50,51,57,61,62,64,65,66,68,72,74,76,77,105],"long":[26,31,48,49,77,102],"m\u00e6lkeb\u00f8tt":7,"new":[1,2,3,8,10,16,21,30,36,39,40,41,42,77,80,82,84,101,108,109,110,113,114],"null":[58,110],"public":[91,102,109],"return":[0,1,3,5,8,10,12,13,17,18,21,24,25,26,28,30,31,32,33,39,41,48,49,50,51,57,58,59,61,62,64,65,66,68,71,72,73,74,75,76,77,80,81,82,105,113,114],"short":[36,113],"static":[43,44,54,68,69,76],"super":[3,8,62,114],"switch":[11,26,30,70,72,77,110,113],"true":[2,3,6,7,13,18,19,20,21,24,25,26,30,31,33,36,42,43,48,49,54,61,62,64,65,66,70,74,75,76,77,83,85,110,113],"try":[0,2,3,10,12,13,17,18,22,24,26,102,113],"var":42,"while":[1,10,18,20,27,58,77,113],AND:77,ATS:[16,57],Adding:102,And:[3,8,26,30,110,114],Are:[82,113],Axes:1,BUS:[12,22],BUT:102,But:[0,2,3,21,26,30,55,105],Doing:26,For:[1,2,3,5,8,10,17,22,26,27,28,30,31,39,42,48,50,54,58,59,61,66,68,77,83,102,107,109,110,113,114],Has:3,IPS:[72,106],Its:[110,113],NOT:[30,39,57,68,102],Not:[2,31,48,49,58,85,102,110],ONE:102,One:[1,2,30,68,108,113,114],POS:[13,22,65],PRs:102,SRS:97,THE:[30,106],THERE:106,TPS:[27,97,98],That:[3,51,52,77,114],The:[0,1,2,3,5,11,12,13,15,16,17,19,22,24,25,26,27,28,30,31,33,34,36,39,41,42,43,46,48,49,51,53,54,56,57,58,59,61,62,64,65,66,68,72,75,76,77,79,83,84,102,104,106,109,110,113,114],Then:[15,26,28,30,102,109,114],There:[1,3,10,19,27,28,62,102,105,110],These:[24,25,42,59,75,106,113],Tis:62,Use:[31,37,48,49,59,77,102,108,110],Used:73,Uses:39,Using:[106,112],Will:[36,48,110],With:[17,26,113],_10:26,_11:[26,30],_13:15,_15:13,_16:27,__call__:[13,39],__class__:[0,6,7,10,16,21],__del__:59,__dir__:21,__doc__:[14,30,31,41,48,49],__enter__:[18,20],__exit__:[18,20],__getattr__:[21,33,64],__init__:[3,8,18,20,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,61,81,83,84,85,114],__iter__:[51,52],__name__:[21,30],__next__:52,__repr__:61,_alazar:59,_assigned_fg:13,_ats_dll:3,_attenu:57,_bdaqctrl:58,_call:13,_channel:3,_check_for_error:18,_check_respons:18,_coil_const:17,_count:8,_current_r:17,_current_ramp_limit:17,_error_queu:18,_expect_error:18,_get:114,_get_cmd:72,_get_temp_channel:29,_handl:3,_indic:8,_instrument:[3,13,18],_instrument_list:114,_measured_param:3,_mode:77,_poll:18,_ramp_stat:61,_ramp_tim:61,_raw:3,_read_cmd:72,_recv:72,_response_queu:18,_return_handl:13,_run_loop:13,_run_wrapp:13,_save_v:[3,31,48,49],_scale_param:8,_send:72,_set:114,_set_async:114,_set_both:114,_setget:12,_step:76,_syncoutput:13,_t0:61,_trace:26,_val:8,_win32:58,_write_cmd:72,_write_respons:64,a02:14,a118e754f9e:18,abil:[74,95],abl:[17,62,113,114],abort:[12,75],abort_measur:12,about:[3,16,18,25,26,30,77,102,105,107,108,110,114],abov:[1,26,28,58,77,113],abs:[17,32],absolut:[30,38,77,102],accept:[3,37,38,40,41,42,53,72,113],acces:[10,28],access:[1,33,58],accommod:77,accompani:102,accord:[3,77,109],accordingli:13,account:[57,61,102],accur:40,achiev:28,acknowledg:43,acquir:[3,13,15,16,26,30,59,66,68,106,113],acquisiion:59,acquisit:[12,16,26,30,59,66,68,75,102,106,113],acquisition_conrol:59,acquisition_control:[16,59],acquisition_controller_acquisit:16,acquisitioncontrol:59,acquisiton:[16,59],acquist:59,across:[24,25,113],act:[3,36,50,57],action:[1,3,5,6,8,13,18,29,32,36,46,77,81,85,91,105,106,108,113,114],action_indic:[6,13,36],activ:[1,6,66,72,74,105,109],active_channel:66,active_children:[9,14,21],active_loop:6,activeloop:[6,46,105],actual:[1,3,11,17,57,59,65,102,113],acut:0,adapt:[21,51,52],adaptivesweep:[52,105],adawpt:52,add:[1,2,3,4,6,9,10,12,13,14,15,21,26,27,30,37,39,43,44,54,64,65,68,69,74,75,76,77,79,82,83,84,85,95,96,99,102,105,110],add_arrai:[36,37,82],add_channel:[26,74],add_compon:[4,85],add_funct:[3,44,45,102],add_paramet:[3,10,14,44,45,102,113,114],add_signal_to_sweep:[30,68],add_submodul:44,add_subplot:28,added:[1,17,26,31,36,37,68,77,82,83,84,85,102,113],adding:[1,9,14,21,30,106],addit:[1,3,28,43,44,54,71,72,76,108,110,113],addition:[1,30,66,68],address:[3,7,17,23,25,29,33,43,54,60,61,62,63,64,65,69,70,72,73,74,76,77,78,79,102,113],adjust:[17,26,65,113],adjust_parameter_valid:65,adopt:108,adriaan:75,advantag:1,advantech:[57,97],advantech_pcie_1751:58,aeroflex:[3,78],affect:[30,38,68,102],after:[1,6,10,13,42,46,47,50,53,59,66,72,77,95,102,110,113],again:[6,16,113],against:105,aggeg:0,aggreag:0,aggreg:[34,56,106,114],agi:[7,11,18,20],agil:[7,20,22,57,97,102,106],agilent1:[7,18,20],agilent2:[7,18,20],agilent_2:7,agilent_34400a:[7,11,18,20,57],agilent_34401a:69,agilent_34410a:69,agilent_34411a:69,agilent_e8527d:[69,102],agilent_hp33210a:69,agilent_volt:11,agument:32,ahead:[30,51,52],aid:113,aim:[1,50],airbnb:102,aka:102,akin:113,ala:108,alazar1:16,alazar:[3,16,59,97],alazar_driv:59,alazar_nam:[16,59],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,59],alazarstartcaptur:59,alazartech:[3,16,57],alazartech_at:[3,16,59],alazartech_ats9870:[3,16,59],alazartest:16,alex:102,alexcjohnson:102,alia:[69,70,78],all:[1,2,3,8,9,10,16,19,21,24,25,26,28,30,31,33,34,36,39,40,41,42,44,45,48,49,51,54,56,57,58,59,61,64,68,69,72,73,74,75,76,77,84,85,100,102,105,106,108,109,110,113,114],all_channels_off:77,all_channels_on:77,alloc:[16,59],alloc_buff:[16,59],allocated_buff:[16,59],allow:[1,3,17,24,25,33,43,47,49,51,52,54,68,72,76,77,82,102,113],almost:113,alon:[17,36],along:[1,17,31,48,49,75,83,84,102,105,113],alongsid:8,alpha:[28,65],alreadi:[31,36,40,48],also:[1,2,3,6,10,16,17,26,27,28,32,36,38,40,42,50,51,55,59,61,66,71,72,76,77,82,99,102,105,108,109,110,113],altern:28,although:[3,28,68,102,109],alwai:[1,2,5,10,15,27,30,42,48,61,64,68,76,77,102,113],always_nest:42,amen:102,american:[17,70],american_magnet:[17,57],ami430:[57,97,100,106],ami430_2d:70,ami430_3d:[17,70],ammet:113,amodel:[6,9],among:[39,114],amp:[3,17,71,76],amper:70,amplifi:[3,10,71,76],amplitud:[6,8,9,15,21,24,25,30,59,74,77,114],amplitude_0:21,amplitude_3:21,anaconda3:[13,18],anaconda:[108,109],analog:64,analog_amplitude_n:77,analog_direct_output_n:77,analog_filter_n:77,analog_high_n:77,analog_low_n:77,analog_method_n:77,analog_offset_n:77,analys:74,analysi:[102,113],analyz:108,angl:17,angle_deg:69,angle_rad:69,ani:[0,2,3,8,9,10,14,16,17,18,20,21,23,24,25,26,28,31,34,36,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,56,59,61,68,76,77,81,85,102,105,108,113,114],anoth:[3,8,10,11,28,39,51,108,113],answer:[61,65],anyth:[10,12,19,77,105],anywai:8,ap_tim:12,aper:14,apertur:[11,12],api:[1,68,91,93,108,110,113],api_level:68,apparatu:105,appear:[62,77],append:[17,18,28,36,51,114],appli:[17,19,24,25,37,41,47,50,77],appropri:[1,59,113],approv:102,arang:3,arbitrari:[41,42,48,69,73,77,105,108],architectur:[3,108,114],arctan:28,arg:[1,2,3,13,18,31,41,48,51,53,62,64,72,83,84,114],arg_count:13,arg_pars:41,argument:[0,1,5,9,10,13,14,21,32,36,37,40,41,48,53,70,105],around:[26,28,36,75,102,113],arrai:[0,1,4,6,8,10,11,12,13,15,16,20,21,26,27,28,30,31,36,37,40,48,59,66,68,73,74,76,77,81,82,84,95,105,106,113,114],array_count:8,array_id:[0,1,4,6,8,10,11,12,13,15,16,26,27,30,36,40,114],arraycount:8,arraygett:5,arraymeasur:62,arrayparamet:[3,62,74,76,77,91,106],arriv:113,arrow:109,ask:[3,12,18,29,30,50,61,65,72,76,77,102,113],ask_direct:21,ask_modul:76,ask_raw:3,asopc:59,asopc_typ:[16,59],asrl10:23,asrl1:27,asrl2:54,asrl4:[11,72],asrl6:[13,24,25],asrl7:12,asrl:65,asrln:61,assert:[17,76,77],assertalmostequ:62,assign:[13,24,25,64,77,102],associ:113,assum:[3,26,28,52,64,109,113],assumpt:[30,77],async:112,asynchron:10,atob:72,ats9870:[3,16,57],ats_acquisition_control:[16,57],ats_contr:16,ats_inst:16,ats_onwork:106,atsapi:[3,59],atsdriv:16,attach:[1,33,37,44,45,46,57,62,64,76],attempt:61,attent:[102,106],attenu:[3,24,25,78],attn:3,attribut:[1,21,30,36,37,40,68,85,102,113],attributeerror:21,author:102,auto:[30,39],autom:108,automat:[1,3,8,26,30,39,58,64,74,96,100,102,108,110],autorang:13,autoreload:2,autoscal:26,aux_in1:15,aux_in2:15,aux_in3:15,aux_in4:15,aux_out1:15,aux_out2:15,aux_out3:15,aux_out4:15,auxiliari:102,avail:[1,3,22,28,30,57,58,62,64,69,74,77,91,93,108,113],avanc:112,averag:[26,30,59,66,75,77],averageandraw:[5,6,9,21],averagegett:[6,9],avg:[26,75],avg_amplitud:21,avoid:[12,17],awar:102,awg1:28,awg5014:[57,96,98,106],awg5200:[57,100],awg520:57,awg:[10,62,77,106],awg_fil:77,awg_file_format_channel:77,awg_file_format_head:77,awgfil:28,awgfilepars:[28,57],awgfilepath:77,ax1:28,ax2:28,ax3:28,ax4:28,axes:[1,23,26,72],axes_api:1,axi:[1,17,26,30,31,36,42,48,49,68,113],axs:30,b06:14,babi:114,back:[3,10,17,26,28,52,61,72,77,102,108,109,110,113,114],backend:[1,54],background:[6,18,20,113],background_color:83,background_funct:37,backslash:102,backward:38,bad:2,bandwidth:[16,26,30,68],bar:[102,110],bare:[43,51],base0:114,base1:114,base2:114,base:[1,8,13,17,33,36,37,38,39,40,44,45,52,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,83,102,106,110,113,114],base_loc:[2,6,38],baseplot:83,baseserv:114,basi:48,basic:[3,27,42,59,65,108],basicconfig:13,baud:[61,76],bdaqctrl:58,bear:102,becam:6,becaus:[1,2,3,21,27,36,37,40,58,59,62,102,109,113,114],becom:[16,28,72,105,113],been:[3,8,17,27,28,68,75,77,113,114],beep:3,befor:[2,3,10,11,13,15,17,26,27,30,39,43,46,53,57,58,59,65,68,72,77,102,110,113],beforehand:57,begin:6,begin_tim:61,behav:102,behavior:[6,9,16,18,20,21,23,102,113],behaviour:68,behind:30,being:[2,10,16,28,36,75,77],belong:[31,48,49,50,74],below:[1,2,3,10,28,102,105,106],ben:17,benchmark:[11,100],best:[3,102],beta:[3,27,59,62,69,72,74,75,76,77],better:[3,12,41,100,102,113],between:[1,3,22,37,40,43,51,68,77,82,83,84],beyond:77,bid:58,bidirect:[3,50],binari:[58,77],binascii:27,bind:30,biodaq:58,bip:65,bit:[12,58,59,76,77],bitlevel0:66,bitlevel1:66,bits_per_sampl:[16,59],black:83,blame:[24,25,77],blank:[42,102],blind:10,block:[10,18,42,65,66,114],blockavg_hardware_trigger_acquisit:66,board:[3,16,24,25,59],board_id:[3,16,59],board_kind:[16,59],bodi:102,boilerpl:[3,41],bold:105,bool:[3,31,33,36,43,48,49,61,62,64,65,66,70,71,74,76,77,82,85],bool_to_str:77,born:102,bot:[98,99],both:[1,3,8,11,26,30,38,49,62,74,76,77,102,105,108,109,113,114],bottom:[65,109],bound:[10,113],bracket:102,branch:102,breakif:[10,91,113],breviti:3,bring:21,brittl:113,broader:108,broken:[2,50],brows:[109,114],buf:59,buffer:[16,58,59,66,76,98,106],buffer_acq_mod:15,buffer_list:3,buffer_npt:15,buffer_paus:15,buffer_reset:15,buffer_sr:15,buffer_start:15,buffer_timeout:[16,59],buffer_trig_mod:15,buffers_per_acquisit:[16,59],bug:103,build:[28,30,68,77,96,97,102,109,113],build_sweep:[30,68],built:[1,8,30],builtin:41,bunch:30,burden:113,burst:106,busi:58,button:[77,102],bwlimit1:16,bwlimit2:16,bwlimit:[16,59],bwmode:30,byref:13,byte_to_bit:76,byte_to_value_dict:[3,59],c_amp_in:[3,71],c_set:8,cabl:[77,113],calc:66,calc_set_point:77,calcul:[17,68,105,113],calibr:[57,59],call:[2,3,8,9,13,14,17,18,21,26,27,28,30,31,34,36,37,39,40,41,43,48,49,53,54,56,58,59,61,64,65,68,75,76,77,79,82,102,113],call_by_str:13,call_by_str_parsed_out:13,call_cmd:[3,41],callabl:[10,18,32,34,37,39,46,53,55,56,82,98,113],callsig:28,came:59,camp1:20,camp:[7,20],can:[0,1,2,3,8,9,12,15,17,21,22,24,25,26,28,30,31,32,35,36,37,39,41,42,46,48,49,50,51,52,55,58,59,61,62,65,66,68,72,73,74,77,81,82,83,84,85,102,105,106,107,108,110,113,114],cancel:[24,77],cannot:[4,17,26,31,47,48,50,58,76,77,113],canva:1,capabl:[19,105,108,113],capit:102,captur:[10,26,59],card:[3,16,58,59,62,66,97],cardid:66,care:[2,3],cartesian:[17,113],cartesian_measur:17,cast:[12,28,41],caus:[24,25,66,76],caution:[77,106],caveat:113,cdll:3,cell:28,center:[26,75],certain:[10,17,30,59,72],cesr:76,cffi:58,ch01:25,ch01_i:24,ch01_irang:24,ch01_slope:[13,24],ch01_sync:13,ch01_sync_delai:13,ch01_sync_dur:13,ch01_v:[12,13,24],ch01_vrang:24,ch02:[24,25],ch02_slope:24,ch02_sync:24,ch02_v:[13,24],ch0_offset:19,ch0_voltag:19,ch1:[10,77],ch1_amplitud:22,ch1_amplitude_unit:22,ch1_burst_mod:22,ch1_burst_ncycl:22,ch1_burst_phas:22,ch1_burst_polar:22,ch1_burst_stat:22,ch1_curvedata:27,ch1_databuff:15,ch1_displai:15,ch1_frequenc:22,ch1_function_typ:22,ch1_offset:22,ch1_output:22,ch1_posit:27,ch1_ramp_symmetri:22,ch1_ratio:15,ch1_scale:27,ch1_state:27,ch1_trigger_count:22,ch1_trigger_delai:22,ch1_trigger_slop:22,ch1_trigger_sourc:22,ch1_trigger_tim:22,ch1_voltag:19,ch2:[10,27,77],ch2_curvedata:27,ch2_databuff:15,ch2_displai:15,ch2_offset:28,ch2_posit:27,ch2_ratio:15,ch2_scale:27,ch2_state:27,ch3_state:28,ch41_v:11,ch42_v:11,cha0:57,chain:113,chan0:[6,9,57],chan0_set:6,chan1:[6,9,21,30,32],chan1_set:6,chan2:[6,9,21,30],chan:64,chan_alia:29,chan_go:13,chan_list:33,chan_reset_1:13,chan_reset_2:13,chan_reset_3:13,chan_typ:33,chanc:59,chandata:30,chang:[1,3,10,16,19,24,25,27,30,31,35,38,48,50,65,68,76,77,101,102,106,108,109,110,113],change_autozero:77,change_displai:77,change_fold:77,channel2:66,channel:[3,6,7,10,11,15,16,18,19,20,21,27,28,33,44,45,54,58,59,61,62,63,64,65,66,68,72,74,76,77,98,99,105,106,107,113],channel_0:66,channel_1:66,channel_a:59,channel_cfg:77,channel_rang:[16,59],channel_range1:16,channel_range2:16,channel_select:[16,59],channel_skew_n:77,channel_state_n:77,channelbuff:76,channelis:64,channelist:33,channellist:[64,91],channum:[62,64],charact:[31,42,43,48,49,54,72,102],characterist:113,chassi:62,check:[3,17,55,58,72,74,76,83,84,102,107,111,113,114],check_error:13,check_for_error:75,check_module_error:76,check_schema:2,checklist:102,chime:102,chnum:28,choic:[26,59],choos:[28,65,68,74,77,113],chore:102,chosen:68,chx:10,clariti:3,classic:12,classmethod:[57,59,62,69,75],clean:[73,77,95,102],clean_str:73,cleanup:[40,100],clear:[13,15,26,27,28,54,62,76,77],clear_buff:59,clear_channel:[26,74],clear_error:69,clear_message_queu:[27,28,77],clear_waveform:77,clearli:102,clever:103,cli:108,click:[1,109],clim:1,clip:113,clock:[3,16,59,77],clock_edg:[16,59],clock_edge_ris:16,clock_frequ:62,clock_sourc:[3,16,59,77],clone:102,close:[1,4,11,17,19,24,25,26,27,28,29,30,58,66,68,72,100,102],close_ev:1,close_fil:40,closedevic:75,cls:2,cmap:21,cmd:[3,13,61,64,76,77],cmd_str:13,code:[1,3,30,41,50,60,61,66,69,76,85,103,108,113],codebas:108,coil:[17,70],coil_const:[17,70],col:74,cold:72,collect:[8,51,59,105,108,113],colon:[72,102],color:[1,28,30,83],colorbar:[1,36],column:[1,42,113],com2:54,com:[66,69,78,102,104,106,109],combin:[34,37,42,75,80,82,91,99,105,106,112,113],combined_set:0,combinedparamet:[0,91],come:[42,102,113],comma:[72,77],command:[1,3,12,13,16,27,28,30,41,50,58,61,64,65,66,69,72,74,76,77,91,102,105,108,113],comment:[3,42,58,102],commit:[59,107,108],common:[3,72,74,77,105,113],commonli:[69,74,77],commun:[3,17,43,54,59,61,65,72,76,105,107,113],communc:17,compani:3,compar:[11,26,102],compat:[46,53,68,77,108,113],compatibil:77,compens:[66,77],complain:[10,113],complet:[1,13,28,36,37,58,66,77,113,114],complex:[3,26,74,102,113],compliant:102,complic:[21,41,113],compon:[7,48,59,85,108,113],composit:[13,113],comprehens:[102,106],comput:[1,68,72,102,109,113],con:97,concaten:[64,102],concept:114,conclus:12,concurr:113,conda:109,condit:[3,10,32,58,72,77,113],config:[3,16,59,77,91,99,102,106,112],config_file_nam:35,configur:[16,30,35,47,58,59,75,77,94,106,108,112,113],conflict:[58,113],confusingli:114,connect:[3,11,12,13,14,15,16,17,18,22,24,25,26,27,28,30,54,59,61,62,68,72,76,77,85,105,113],connect_messag:[3,61,62,64],consequ:113,consid:[10,77,102],consist:[10,24,25,26,65,75,77,81,102,113],consol:66,consolid:108,constant:[5,10,17,30,65,68,70,75],construct:[5,26,32,36,43,50,114],constructor:[3,31,36,48,83,84],consult:113,cont_meas_off:26,cont_meas_on:26,conta:68,contact:100,contain:[3,5,6,10,26,28,33,36,37,39,42,50,58,59,61,64,68,69,72,74,76,77,85,102,105,110,113,114],content:[36,106],context:113,contian:59,contin:77,contini:26,continu:[28,30,46,77,85,102],contrast:102,contribut:[3,103,107],contributor:102,control:[2,3,9,16,18,19,20,21,23,24,25,26,28,30,59,61,63,65,70,72,74,77,97,108,110,113,114],controlthermometri:72,conveni:[77,85,113],convent:3,convers:[77,102],convert:[3,17,36,38,59,64,66,72,76,77,113],convert_to_voltag:66,coordin:17,copi:[2,18,36,51,65,68,113],core:[0,1,6,7,9,13,14,15,16,18,20,21,23,26,27,29,30,102,106,107,108,110],corner:[9,16,18,20,21,23],correct:[1,3,17,19,28,30,40,76,99],correctli:17,correspond:[1,3,11,15,19,28,42,59,61,68,74,76,77],cosmet:[95,96],cost:65,could:[3,9,13,14,21,28,102,113],count:[8,13,41,58,64,77,114],counter:[9,10,39,58],coupl:[3,16,30,59,66,77],coupling1:16,coupling2:16,cours:[102,113],cov:102,cover:[102,114],coverag:[102,108],coveragerc:102,cpld:59,cpld_version:[16,59],cpu:26,crash:[59,108],creat:[1,4,7,8,9,10,16,18,20,21,33,36,40,46,48,51,57,59,61,62,68,69,72,77,78,81,82,105,106,109,110,113,114],create_and_goto_dir:77,creation:[10,114],creator:102,critic:[2,110],cryo:97,ctwrapper:13,ctype:3,cumbersom:64,curernt:114,curr1:21,curr2:21,curr:[3,7,20,21,71,76],curr_0:21,curr_0_0:21,curr_0_1:21,curr_1:21,curr_1_0:21,curr_1_1:21,current:[2,3,6,7,14,17,20,24,25,26,27,28,30,35,37,38,39,58,62,64,68,70,71,72,76,77,79,80,82,85,102,110,113,114],current_config:[2,35],current_config_path:35,current_field:17,current_r:[17,70],current_ramp_limit:[17,70],current_schema:[2,35],current_target:17,current_to_field:17,current_valu:13,currentparamet:[3,7,20,71],curv:[77,106],custom:[8,35,38,106],customawgfil:77,customis:64,cutoff_hi:76,cutoff_lo:76,cwd:35,cwd_file_nam:[2,35],cycl:[7,14,16,18,20,22,62,113],cylindirc:17,cylindr:17,cylindrical_measur:17,d_bdaq_c_interfac:58,dac1:5,dac2:5,dac3:5,dac:[5,10,57,61,65,99],dac_ch1_set:10,dac_ch2_set:10,dac_commands_v_13:64,dac_delai:65,dac_max_delai:65,dac_step:65,dacchannel:61,dacexcept:61,dacnam:65,dacread:61,dacslot:61,dai:102,dancer:102,daq:30,daqnavi:58,daqnaviexcept:58,daqnaviwarn:58,dark:83,dat:42,data1:26,data2:[4,9,21,27],data3:21,data4:21,data:[0,1,2,3,5,6,8,11,12,13,15,16,18,20,21,26,27,30,36,37,38,39,40,42,46,48,50,58,59,64,65,66,68,74,77,80,82,83,84,91,99,102,105,106,108,113,114],data_arrai:6,data_buff:13,data_l:4,data_set:[2,4,6,10,13,40,94],data_v:50,dataarrai:[0,1,6,8,20,21,31,37,40,48,82,91,105,113],dataflow:59,dataformat:106,dataformatt:102,datamanag:[105,113],datamin:113,datamod:[0,6,8,9,11,16,20,21,30,114],datapoint:77,datasav:106,dataserv:[9,21,37,105,113],dataset:[0,1,2,4,5,6,8,9,10,11,12,13,15,16,20,21,26,27,30,36,39,40,42,48,62,80,81,82,91,105,112,114],date:[9,10,39,59],datetim:39,daunt:102,dbm:[26,74],dc_channel_numb:77,dc_output_level_n:77,ddl:58,deacadac:61,deadlin:18,dealt:113,debug:[2,4,27,30,110,113,114],debugmod:13,deca:19,decadac:[57,98,100,106],decadec:61,decid:[2,113,114],decim:[16,59],declar:58,decod:3,decoupl:102,decreas:11,deem:68,deeper:18,def:[0,1,2,3,8,10,12,13,17,18,20,21,72,114],default_current_ramp_limit:70,default_figs:1,default_file_nam:35,default_fmt:110,default_formatt:[37,80,82],default_io:[37,80,82],default_parameter_nam:100,default_server_nam:75,defaulttestload:4,defer:32,deferred_oper:91,defin:[0,2,3,9,21,26,28,30,31,41,47,48,49,50,62,71,72,76,77,102,105,106,110,113,114],definit:[9,21,30,41,113],deg:15,deg_to_rad:69,degre:[22,30,49],del:3,delai:[0,1,6,10,13,16,17,25,30,46,50,52,55,65,74,113,114],delay_in_points_n:77,delay_in_time_n:77,deleg:[21,36],delegate_attr_dict:85,delet:[3,77,102],delete_all_waveforms_from_list:[28,77],demand:113,demo:106,demod1:[30,68],demod1_harmon:30,demod1_ord:30,demod1_phaseshift:30,demod1_sampler:30,demod1_signalin:30,demod1_sinc:30,demod1_stream:30,demod1_timeconst:30,demod1_trigg:30,demod:30,demodul:[68,106],demodulation_acquisitioncontrol:[16,59],demodulation_frequ:[16,59],demonstr:[3,8],denot:[31,42,48,82],depend:[1,16,24,25,30,42,74,93,100,102,109,113],deprec:[3,31,36,49,77,96],deprecationwarn:77,deriv:105,descipt:35,describ:[2,3,8,10,31,46,48,68,102,110,113],descript:[2,36,77,102,110,113],descriptor:65,design:[69,77,78,113],desir:[10,17,76],desktop:13,destruct:113,detail:[1,102,113],detect:99,determin:[40,84],dev2235:30,dev:[2,12],develop:[62,68,103,107,108],devic:[54,58,62,65,68,72,74,77,97,113],device_clear:54,device_descript:58,device_id:68,dft:[16,59],dg4000:57,dg4062:73,dg4102:73,dg4162:73,dg4202:73,diagon:105,dict:[31,35,36,39,40,43,44,45,48,49,50,54,61,72,76,77,79,82,98,113],dictionari:[3,28,59,76,77,85,110,113],did:[3,9,11,21,109],didact:10,diff:77,differ:[1,3,8,21,26,31,37,48,68,74,77,102,105,108,113,114],differenti:36,difficult:102,difficulti:102,dig:[30,62,99],digit:[3,10,58,62,64,66,77,97],digital_amplitude_n:77,digital_high_n:77,digital_low_n:77,digital_method_n:77,digital_offset_n:77,dilut:72,dim:30,dimens:[8,21,31,36,42,48,113],dimension:[1,36,37,72],dio:58,dir:[2,77],direct:[31,48,62,75,102],directli:[1,3,5,8,17,24,25,28,30,37,46,72,77,106,113],directori:[2,3,37,38,77,80,82,102,109,110],disabl:[16,33,37],disadvantag:113,disambigu:[9,21],disappear:113,disc:77,disconnect:113,discov:57,discret:113,discuss:[102,107],disk:[37,38,40,77,82,113],diskio:[6,37,39,80,82,91,105],displai:[0,1,2,6,7,9,11,12,13,14,15,16,18,20,21,23,26,27,29,30,74],display_clear:[11,12,13,69],display_grid:[26,74],display_sij_split:26,display_single_window:26,display_text:[7,11,12],display_text_2:7,dissip:113,distribut:108,div:27,dived:57,divid:[57,97,98],divider_r:77,divis:[27,57],division_valu:57,divsion:57,dll:[58,59,75,106,113],dll_path:[3,59,75],dma:58,dmm:[10,11,12,13,69,99,100],dmm_data_buff:13,dmm_volt:12,dmm_voltag:10,do_acquisit:59,do_get_frequ:74,do_get_pow:74,do_get_pulse_delai:74,do_get_statu:74,do_get_status_of_alc:74,do_get_status_of_modul:74,do_set_frequ:74,do_set_pow:74,do_set_pulse_delai:74,do_set_statu:74,do_set_status_of_alc:74,do_set_status_of_modul:74,doc:[2,6,65,102,106,109],docstr:[3,8,31,41,48,49,77,102],document:[1,14,17,31,41,48,49,59,77,94,95,97,102,108,113],doe:[1,10,17,23,26,30,36,39,42,46,47,54,57,58,62,65,69,72,74,76,77,78,102,113],doesn:[3,8,9,21,28,36,58,62,66,77,102],doing:[16,26,102,113],domain:[30,72],domin:108,don:[1,3,27,40,50,51,52,61,62,64,77,102,113,114],done:[1,6,10,28,30,72,95,109,113,114],dot:[2,102,110],doubl:[39,77],doubt:[30,102],down:[17,28,102],download:[30,106,109],dramat:113,drive:6,driver:[5,8,10,15,17,24,25,26,27,28,30,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,95,96,97,98,99,100,102,108,112,113],driver_vers:[16,59],drivertestcas:[57,62,69,78],due:[3,6,24,25,30,61,113,114],dummi:[5,10,16,81,106,114],dummy_set:16,dummyinstru:[5,10],dump:[7,59],duplic:[3,77],dur:30,durat:[25,30],dure:[1,13,49,50,51,55,59,62,66,77,93,113,114],dut:26,dynam:[24,25,58,106],e1cb66:28,e8267:69,e8267c:[57,97],e8527d:[57,102],each:[0,1,3,4,6,8,10,11,12,13,15,16,18,19,20,21,22,24,25,26,27,28,30,31,36,37,40,41,42,43,46,48,49,50,51,58,59,61,64,65,68,69,76,77,78,83,84,85,102,105,108,113,114],eachot:114,earli:27,easi:[5,16,102,105,108,109],easier:[68,100,102,113],easiest:2,easili:[1,9,10,21,77,108],echo:61,edg:[16,27],edit:75,editor:102,ee82e:28,eendebakpt:14,effect:[59,77,110],effort:3,eight:[24,25],either:[1,3,24,25,30,40,49,50,58,62,70,73,77,84,113],elaps:[13,18,20],electron:[3,108],elem1m1ch1:77,elem1m1ch2:77,elem1m2ch1:77,elem1m2ch2:77,elem2m1ch1:77,elem2m1ch2:77,elem2m2ch1:77,elem2m2ch2:77,element:[1,28,77,84,110,113],element_no:77,elemnum:28,elif:18,elnum:28,elpi:102,els:[2,13,19,26,58,77,102],elsewher:85,emac:102,email:107,embed:[1,109],emit:[50,65],emoji:102,empti:[2,8,10,18,28,61],enabl:[16,30,66],enable_channel:66,enable_record_head:[16,59],encapsul:113,enco:13,encod:[3,13,41,50,58],encount:58,encourag:[3,30,102],end:[3,39,51,54,58,59,74,77,102,108,113],endpoint:11,engin:16,enough:[10,58,72,102,105],ensur:[27,75,76,102,113],ensure_ascii:7,enter:[31,48,113],entir:[15,16,22,76,85,113],entri:[2,40,46,48,77,91],entrypoint:93,enumer:[3,30],env:[2,13,35,109,110],env_file_nam:[2,35],enviro:109,environ:[2,108,109,110],equal:110,equitim:76,equival:[8,21,77,108],err:75,error:[0,2,3,4,13,17,18,24,36,46,50,58,59,62,65,66,76,77,99,106,110,114],error_cod:65,errorcod:58,errormsg:58,errorreg:66,errorvalu:66,esr:76,essenti:[10,69,76],establish:17,etc:[1,3,8,19,26,31,36,41,48,50,102,113],ethernet:[3,43,77],etr_5v:16,eumer:52,evalu:53,even:[8,12,17,24,25,38,40,47,49,50,51,52,54,64,66,77,102,113],event:[28,30,58,61,76,77,106],event_input_imped:77,event_input_polar:77,event_input_threshold:77,everi:[1,3,34,37,46,56,59,68,107,113,114],everybodi:[102,107],everyon:102,everyth:[28,30,39,91,102],exactli:[5,13,102],examin:72,exampl:[0,1,2,6,8,31,32,36,39,48,49,50,52,54,59,62,66,77,97,102,105,108,109,111,114],exce:102,exceed:[28,58],except:[2,3,13,17,58,61,76,77,86],exec_funct:13,exec_str:13,execut:[10,13,30,41,53,57,58,62,66,68,69,74,77,78,105,108,113],executor:114,exemplifi:30,exept:30,exercis:102,exis:26,exist:[3,10,26,28,39,40,52,58,66,77,80,82,102,108,113],expand:103,expect:[2,3,13,18,30,31,40,46,48,58,64,66,76,77,102,114],experi:[9,10,21,35,106,108,109,113],experiment:[108,113],expir:13,explain:[102,110],explicit:[21,28,51],explicitli:[31,36,48,49,102,113],explor:[10,77],expos:[64,110],express:[50,113],ext:[13,22],ext_trigg:15,extend:[28,42,51,74],extens:[42,77],extern:[16,22,66,74,75,77],external_add_n:77,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:77,external_startcaptur:[16,59],external_trigger_coupl:[16,59],external_trigger_rang:[16,59],extra:[8,12,21,31,48,49,102,113],extra_schema_path:2,extract:72,extrem:113,f008:72,fact:102,factor:[3,7,24,25,30],factori:77,fail:[2,100,102,113],falcon:102,fall:77,fals:[2,6,7,8,13,18,19,20,24,25,26,30,36,37,43,44,49,60,61,62,64,65,66,69,70,73,74,76,77,82,110,113],faq:112,fast:[64,72,113],faster:[26,28,100,102],fastest:28,feasibl:108,feat:102,featur:[1,3,19,21,75,97,98,99,100,103,108],feed:[3,71,76],feedback:[52,113],feel:102,fetch:[7,12,72],few:[22,26,41,68,102,107],fewer:[24,25],ff4500:28,ff8c00:28,fft:68,field:[17,31,41,42,48,49,50,70,72,108,114],field_limit:[17,70],field_measur:17,field_target:17,field_target_cartesian:17,field_target_cylindr:17,field_target_spher:17,field_valu:72,field_vector:17,fieldvector:17,fifo:16,fifo_only_stream:[16,59],fig:[1,17,26,28,30],figsiz:[1,10,21,83,84],figur:[1,13,28,30,84,102,109,113],figure_api:1,file:[2,4,9,10,21,35,37,39,40,42,58,65,72,77,80,82,102,106,112,113],file_path:77,filen:35,filenam:[28,77],filepath:28,filestructur:77,fill:[8,10,15,46,77,113],filter:[30,68],filter_slop:15,filw:77,find:[18,39,59,102,107,110],find_board:[16,59],find_modul:76,findal:72,finder:10,fine:[65,113],finish:[1,6,12,21,26,30,59,95,113],finit:[24,25,64,65],fire:[24,25],firmwar:[3,6,7,10,11,12,13,15,16,17,22,26,27,59,61,72,76,98],first:[1,2,6,8,10,12,13,17,22,26,28,31,36,42,48,50,53,70,77,83,84,102,113,114],first_delai:13,fit:[28,59,102],five:75,fix:[17,30,36,41,51,72,98,99,100,101,102,113,114],fixabl:102,flag:[24,25,65,75],flake8:102,flavor:113,flexibl:[105,108],flow:[24,25],flush:[22,76,77],flush_error_queu:[22,62],fmt:[2,9,10,39],fmt_counter:39,fmt_date:39,fmt_time:39,fname:77,focus:102,folder:[3,38,42,77],follow:[1,3,5,10,11,17,22,28,61,77,102,109,110,113,114],foo:[102,110,114],footer:102,forc:[6,9,16,18,20,21,23,26,28,77],force_ev:77,force_logicjump:77,force_reload:77,force_trigg:[27,77],force_trigger_ev:77,foreground:[100,113],foreground_color:83,foreign:58,fork:102,form:[3,41,59,72,74],format:[3,10,11,12,13,17,21,24,25,26,28,30,37,39,41,42,50,58,74,77,80,82,106,108,113],formatloc:[2,9,10,82,91,105],formatt:[4,6,37,80,82,91,97,105,110,113],former:12,formerli:[3,78],forward:[16,38,59],foul:28,found:[3,26,28,30,40,50,53,58,65,77,102,106],four:[19,58,61,73],fourier:59,framework:[102,108,113],free_mem:59,freedom:49,freeli:113,freq:[26,75],frequenc:[10,15,26,30,59,62,74,75,77,114],frequency_set:26,frequencysweep:74,frequencysweepmagphas:74,frequent:102,fridg:[72,108],friendli:68,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,31,36,37,39,40,41,42,46,48,49,50,58,59,62,64,65,66,68,69,71,72,74,76,77,80,81,84,85,99,102,104,105,106,108,113,114],fron:7,front:[30,77],frontend:110,full:[0,2,22,24,30,37,42,77,80,82,108],full_nam:[0,36],full_trac:26,fulli:[26,30,102],fullrang:65,fun:64,func:[3,13,53],func_nam:18,fundament:113,further:[73,105,108],furthermor:[1,17,68],futur:[3,77,102,114],gain:[71,76],garbag:59,gate:[6,9,10,22,32,61,105,113,114],gate_frequ:114,gate_frequency_set:114,gated_trigger_acquisit:66,gather:[9,21],gather_paramet:[9,21],gave:28,gcc:58,gee:30,gener:[3,10,17,22,27,28,37,39,51,58,60,62,68,69,73,74,75,76,77,78,97,102,105,106,108,109,113],generate_awg_fil:77,generate_channel_cfg:77,generate_sequence_cfg:77,get:[0,2,3,4,5,6,8,9,10,11,13,14,16,17,18,19,20,21,23,24,25,27,29,30,31,36,40,48,49,50,57,59,62,64,65,68,71,72,74,76,77,85,102,106,110,113,114],get_al:[65,72,74,77],get_board_info:59,get_card_memori:66,get_card_typ:66,get_chang:72,get_cmd:[3,10,14,50,59,72,114],get_compon:17,get_current_folder_nam:77,get_data_set:[0,1,10,11,12,13],get_error:77,get_error_info32bit:66,get_filenam:77,get_folder_cont:77,get_funct:59,get_idn:[3,16,58,59,61,65,66,71,72,76,77],get_instrument_valu:57,get_integrationtim:14,get_jumpmod:77,get_latest:[27,30,31,32,48,49],get_max_sample_r:66,get_mocker_messag:70,get_module_idn:76,get_module_statu:76,get_pars:[3,14,50],get_pol_dac:65,get_power_at_freq:75,get_processed_data:[16,59],get_sample_r:59,get_spectrum:75,get_sq_mod:77,get_sqel_loopcnt:77,get_sqel_trigger_wait:77,get_sqel_waveform:77,get_stat:77,get_voltag:76,getattr:[3,21],getcwd:28,getdoubl:30,getlogg:[4,27,28,30],gettabl:[3,8,31,48,49,71,76,81,105,113],getter:[13,105],getx:114,giga:67,giga_b:67,gimm:22,git:[6,18,106,108],github:[21,102,104,105,106,108,109],giulio:102,giulioungaretti:102,give:[1,8,10,17,46,61,77,102,113],given:[0,1,17,24,25,33,43,58,59,61,73,102,113,114],global:[3,9,19,21,26,106],gmbh:66,gnuplot:[42,108],gnuplot_format:[4,6],gnuplotformat:[4,6,37,80,82,91,105,113],goal:102,going:[3,5,65],good:[2,3,10,27,30,74,102],googl:[6,102],got:[12,102],goto_root:77,goto_st:[28,77],goto_to_index_no:77,gotten:[22,24,25,28,113],gpib0:[7,15,18,20,21],gpib1:14,gpib:[3,77,79],gradual:19,grai:83,graph:[10,31,48,49],graphicswindow:83,great:102,greater:50,greatest:113,green:109,grid:[26,74],group:[1,44,58,74,102,108,113],grow:107,gs200:[57,96],guarante:2,gui:[1,2,13,20,30,102,108,110],guid:[1,59,102,107,109],guidelin:102,h5fmt:4,h5py:109,hack:[102,110],had:[9,21,28,58],half:30,halfrang:65,halt:55,halt_bg:[16,21],han:28,hand:28,handl:[3,8,31,36,37,41,48,58,59,64,65,66,83,100,105,106],handle_buff:59,handle_clos:1,handler:4,hang:102,happen:[3,24,25,28,36,53,113],happi:102,hard:[77,102],harder:[102,113],hardwar:[3,17,24,25,28,61,65,66,74,77,102,105,113],harmon:15,harvard:[19,57],has:[1,3,4,6,8,10,15,17,19,22,24,25,27,28,30,31,36,42,48,58,59,68,70,76,77,102,110,113,114],hasattr:[13,18],hasn:[3,58],have:[1,2,3,5,8,9,10,17,21,24,25,26,27,28,30,31,36,40,42,48,49,52,57,58,59,61,62,65,68,69,71,75,76,77,78,84,102,105,107,108,109,113,114],haz:95,hdf5:[4,97,113],hdf5_format:4,hdf5format:4,head:77,header:[16,22,58,102],heater:72,heater_off:72,heater_on:72,heatmap:[83,84],height:[83,84],helium:[72,100],help:[2,3,28,30,31,37,40,41,43,48,49,54,77,102,108,113],helper:[2,4,21,28,68,91,110],henc:61,here:[1,3,6,8,9,14,15,16,21,24,25,26,30,36,64,68,72,76,81,102,109,113],hesit:102,hewlett:[7,60],hierarchi:103,high:[10,66,77,102,113],higher:[17,110,113],highest:[39,113],highlevel:13,hislip0:12,histori:[77,102],hkey_current_usersoftwareoxford:72,hold:[3,12,15,23,30,72,105,113,114],hold_repetition_r:77,holdoff:30,home:[2,35,102,110],home_file_nam:[2,35],horisont:[27,30],horizont:27,horizontal_scal:27,host:[24,25],hot:21,hotfix:102,hound:75,how:[2,5,8,10,17,26,28,30,31,40,42,46,48,49,51,52,83,102,104,105,106,107,113,114],howev:[17,26,62,102],hp33210a:57,hp8133a:57,hp_83650a:57,htm:65,html:[1,54],http:[1,54,65,66,102,104,106,109],human:[10,59,96],i3d:17,iPS:97,icon:109,id1:42,id2:42,id3:42,idea:[3,10,74,102,107],ideal:102,ident:[3,8,68,77,114],identifi:[31,37,40,42,44,48,49,61,72,76],idl:[29,77],idn:[3,4,6,7,10,15,16,21,29,61,64,65,72],idn_param:61,idr:72,iff:77,igh:72,ignor:[26,31,48,53,59,77],ignore_kwarg:13,igor:108,illustr:1,ilm200:57,ilm:[72,100],imaginari:26,imm:[12,22],immedi:[10,11,22,24,25,33,38,59,68,85,102,113],imp:14,impact:113,imped:[10,16,30,59],impedance1:16,impedance2:16,imper:102,implememnt:85,implement:[9,14,16,17,21,40,43,51,52,58,59,68,72,74,75,77],implicit:102,implicitli:113,importlib:4,impos:113,improv:[101,102],imprrov:98,inc:[7,14,17,21],inch:84,includ:[3,8,11,31,39,48,49,51,54,58,66,69,76,77,81,83,84,102,105,107,108,113,114],inclus:77,inconsist:113,inconsistensi:77,inconsit:27,incorrect:102,incorrectli:59,increas:[8,17,102],increment:[42,50,99,113],ind:30,inde:[17,102],indend:30,indent:[7,102],independ:[40,113],index0:8,index1:8,index:[1,8,64,65,77,84,113],indic:[0,1,17,36,66,77,113,114],individu:[1,17,26,33,37,51,70],inf:[13,22,24,25],infer:36,infin:77,infinit:[28,77],info:[2,3,6,13,20,21,23,30,39,59,77,107,110],inform:[10,16,31,39,43,48,49,54,59,66,75,77,83,100,102,108,110,113],inherit:[13,59,74,77],inifit:[24,25],init:61,init_measur:[12,13,69],init_s_param:[26,74],initi:[1,3,10,36,37,40,47,57,58,72,77,80,82,108,113],initial_valu:[1,3,8,47],initialis:[13,74,75,77,79,106],initialize_channel:66,initialz:65,inner:[0,1,8,36,42,113],input:[2,3,13,17,18,21,28,41,50,57,58,65,72,76,77,102,105,106,113],input_config:15,input_coupl:15,input_path:66,input_rang:66,input_shield:15,insert:[3,39,110],insid:[3,8,11,31,33,37,46,48,49,77,80,82,102,108,109,113],inspect:[2,17],inst0:[3,11,13,22,26,28,74],instal:[30,54,58,62,68,76,93,100,102,104,108],instanc:[1,2,3,10,31,37,41,48,49,57,59,61,62,68,69,71,76,78,113],instant:58,instantan:[24,25],instanti:[3,16,30,37,64,70,102,106,113],instdict:28,instead:[0,1,3,10,21,36,114],institut:3,instr:[3,7,11,12,13,14,15,18,20,21,22,23,24,25,26,27,28,61,72,74],instruct:[17,108,109],instrument:[0,6,8,11,13,14,15,16,17,18,20,21,22,24,25,26,28,29,30,31,33,36,41,43,45,47,48,49,50,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,91,98,100,102,103,106,108,112],instrument_cod:50,instrument_driv:[3,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,102],instrument_i:70,instrument_mock:[4,5,10],instrument_nam:[10,16,36],instrument_testcas:57,instrument_x:70,instrument_z:70,instrumentchannel:[33,61,62,63,64,74,77,91],instrumentrefparamet:98,instrumentserv:[113,114],instrumentstriton:72,insuffici:113,integ:[3,8,31,36,39,48,58,76,77,84,110,113],integr:[1,7,14,18,20,75,102,113],integration_tim:7,integrationtim:14,intellig:[72,113],intend:[17,31,48,52,113],inter:65,interact:[1,3,76,102,106,109,113],interdepend:113,interest:[30,102,113],interfac:[3,30,58,68,77,106,113],interleav:[16,66,77],interleave_adj_amplitud:77,interleave_adj_phas:77,interleave_sampl:[16,59],intermedi:102,intern:[15,17,22,30,36,59,62,68,76],internal_clock:[3,16],internal_trigger_r:77,interpret:[3,4,9,10,21,113],interrupt:[58,111],interv:[83,84],introduct:112,inv:22,invert:[3,7,20,71,76],invit:102,invok:[3,30],involv:[106,108,113],io_manag:[37,80,82,113],iomanag:105,ion:30,ipinstru:[3,70,72,91,105],ips120:[57,100],ipython:[0,1,2,6,7,9,13,14,15,16,18,20,21,23,26,27,29,30,108],iq_arrai:8,iqarrai:8,irang:[25,64],irrespect:[24,25,77],irrevers:113,is_awg_readi:77,is_numb:73,is_setpoint:[6,36],is_typ:2,isobu:72,issu:[17,77,95,96,99,102,105],issue_warning_on:13,ital:105,item:[8,29,31,39,48,51,64],iter:[33,51,52,105],iter_error:2,ithaco1:7,ithaco:[3,7,57,106],ithaco_1211:[3,7,20,57],its:[1,3,8,10,11,19,21,24,25,28,30,36,41,58,59,76,77,81,84,102,105,109,113,114],itself:[33,39,49,59,77,102,113],ivert:7,ivvi:[57,97,99,100],javascript:[0,1,2,6,7,9,13,14,15,16,18,20,21,23,26,27,29,30,102],jhn:26,job:[113,114],johnson:102,join:[2,28,102,107],jorgenschaef:102,json:[2,6,7,26,31,43,44,48,49,54,76,77,97,108,110,113],json_config:2,jsonschema:2,jtar_index_no:77,jtar_stat:77,jump:[10,19,28,77],jump_log:77,jump_tim:77,jump_to:[28,77],jumplog:77,junk:9,jupyt:[1,10,108,109,111],just:[0,3,5,6,9,10,11,12,14,21,27,28,30,41,42,50,55,61,65,102,105,109,112,113,114],k2600:3,k2600a:3,keep:[17,40,59,61,98,102,108,110,113],kei:[1,3,9,21,28,37,51,59,76,77,82,85,110,113],keightlei:98,keith:[7,14,18,20,21,96],keithlei:[7,77,97,106],keithley1:[7,18,20,21],keithley2:[7,18,20,21],keithley_2000:57,keithley_2400:57,keithley_2600:[3,7,18,20,21,57],keithley_2614b:[3,77],keithley_2700:[14,57],kelvinox:[57,100],kept:110,kernel:[110,111],keysight:[10,57,97,98,99,100,106],keysight_33500b:[10,22,57],keysight_33500b_channel:57,keysight_34465a:[11,12,13,57],keysight_m3201a:62,keysight_volt:11,keysightchannel:62,keyword:[39,41,53],khz:[26,27],kilo:67,kilo_b:67,kind:[0,30,114],knob:[3,113],know:[10,51,52,102,107,114],known:[3,36,78],kwarg:[1,2,3,8,13,16,18,41,43,44,45,47,50,52,53,54,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,114],lab:[30,68,108],label1:42,label2:42,label3:42,label:[0,1,3,6,7,8,10,14,16,28,30,31,34,36,39,42,48,49,56,57,59,102,113,114],lack:61,lakeshor:57,lambda:[5,10,17,59],languag:42,larg:[6,28,77,102],larger:50,last:[1,2,6,13,18,21,30,59,64,68,77,102,113],last_saved_index:40,latenc:[10,11],later:[3,30,31,37,38,39,48,82,85,102,113,114],latest:[59,109,113],latest_cal_d:[16,59],latter:[12,84],launch:[68,109],lazi:106,lcardtyp:66,lead:[72,102],leak:59,learn:[30,108],least:[30,102,105,113],leav:[21,31,43,48],leave_persistent_mod:72,left:[1,109],legacy_mp:[2,110],legend:26,len:[12,13,30,58,77,114],length:[8,11,22,28,30,48,58,68,77,81,113,114],less:[30,102,113],lest:28,let:[1,17,26,36,102,110,114],letter:102,leve:3,level0:66,level1:66,level:[2,3,10,13,16,36,42,66,72,76,77,100,102,110,113,114],levelnam:4,levelv:3,lib:[2,13,18,99],librari:[13,28,58,62,102,109,110],life:[62,102],like:[3,9,10,17,21,26,28,30,31,36,40,41,48,50,51,52,59,62,69,72,74,77,102,105,108,110,113],limit:[1,3,16,17,24,25,27,58,70,77,102,113,114],limiti:[7,21],limitv:[7,21],lin:[30,75],linalg:17,line2d:[13,30],line:[5,7,10,13,18,20,30,42,62,83,84,102,107,108],linear:[0,26,74,114],linearli:[30,105],liner:102,link:[36,52,58,59,105],linkag:103,linspac:[0,12,28,114],linux:109,list:[1,4,8,10,12,16,25,33,34,37,39,41,44,51,56,58,59,62,64,65,66,68,72,74,76,77,82,85,91,93,95,97,102,105,106,113,114],list_of_dataset:4,list_of_mixed_typ:4,listcomp:13,liter:102,littl:[102,113],live:[1,21,80,104,106,109,113,114],load:[2,3,8,28,35,40,58,75,77,80,95,106,108,110,114],load_and_set_sequ:77,load_awg_fil:77,load_data:[10,37,91],load_ext:2,loaded_data:10,loadlibrari:3,loadtestsfromtestcas:4,loc:39,loc_fmt:9,loc_provid:[2,9,10,39],loc_provider_junk:9,loc_record:[9,82],local:[0,8,11,12,28,30,31,37,41,43,47,48,49,50,54,61,62,72,77,79,102,108,113,114],locat:[0,1,2,4,6,8,11,12,13,15,16,18,20,21,24,25,26,27,30,37,38,39,40,62,77,80,82,106,110,113,114],location_provid:[2,10,39,82,105],lock:[10,30,33,65,72,76],lockin:[3,15,71,76],lockin_ch1_databuff:15,log:[2,4,5,13,27,28,30,68,75,108,110,114],logger:[4,27,28],logic:[44,77,102],logic_jump:77,loglevel:[2,110],logo:95,lograng:51,logview:102,longer:[26,39,42,46],look:[5,10,24,25,27,30,39,54,59,102,110,113,114],loop:[0,1,6,8,9,12,13,16,18,20,21,26,27,31,32,36,37,40,42,48,49,53,55,59,77,81,85,91,95,105,106,112,114],loop_indic:13,loop_result:8,loop_writing_test_2d_skewed_parabola:4,loop_writing_test_2d_x_set:4,loop_writing_test_2d_y_set:4,loop_writing_test_skewed_parabola:4,loop_writing_test_x_set:4,loopcount:77,lose:12,lost:58,lot:[3,17,36,77,102],loudli:10,love:[102,107],low:[3,10,13,26,30,77,113,114],lower:[36,113],lowest:[39,76],m1s:[28,77],m2cmd_card_reset:66,m2s:[28,77],m3201a:57,m3300a:[57,97],m3300a_awg:62,m3300a_dig:62,m4i:[57,96,97,99],mac:[6,9,16,18,20,21,23],machin:[77,102],made:[2,30,62,68,110],magic:28,magnet:[17,70,72,97,100,106,108,114],magnitud:[17,26,74,113],magnitur:26,mai:[3,10,19,24,25,26,27,28,30,32,37,40,41,47,51,52,77,83,84,93,102,105,110,113],mail:107,main:[1,21,77,113],mainfram:76,mainli:10,maintain:[3,71,76,102,103,107,113],majorana:110,make:[3,5,8,9,10,11,15,16,17,18,20,21,23,24,25,30,36,41,42,46,59,64,65,72,76,77,102,105,106,108,109,113],make_and_save_awg_fil:[28,77],make_directori:77,make_send_and_load_awg_fil:[28,77],manag:[3,18,37,39,40,72,76,82,113],mandatori:[15,77,102],mani:[1,8,30,36,37,42,50,51,52,59,62,99,102,113],manner:28,manual:[17,21,26,30,47,65,69,71,72,74,76,77,106,108,113,114],manualparamet:[0,1,3,8,10,16,91,114],map:[3,12,41,50,59,76,84,113],mark:[76,113],marker1:77,marker1_amplitude_n:77,marker1_high_n:77,marker1_low_n:77,marker1_method_n:77,marker1_offset_n:77,marker1_skew_n:77,marker2:77,marker2_amplitude_n:77,marker2_high_n:77,marker2_low_n:77,marker2_method_n:77,marker2_offset_n:77,marker2_skew_n:77,marker:[28,77],mashup:95,mass:77,master:[102,106,109],match:[28,30,39,41,42,48,50,58,72,74,76,77,113],math:17,matlab:1,matplot:[0,2,10,15,16,21,26,27,91,98,106],matplotlib:[0,2,4,5,9,11,13,14,15,16,17,18,19,20,21,23,26,27,28,29,30,84,106,109,110],matter:[28,102],maunual:2,max:[22,42,50,65,66,75],max_delai:50,max_sampl:[16,59],max_status_ag:64,max_subplot_column:1,max_val:61,max_val_ag:50,max_work:114,maxim:[24,25,77],maximum:[17,50,61,65,70,75,110,113],mayb:[36,46,102],mea:15,mean:[2,3,8,12,17,26,30,46,50,77,102,110,113,114],meaning:3,meaningless:102,meant:[41,68],meassur:26,measur:[0,1,3,4,6,8,9,11,12,13,14,15,16,17,18,20,21,26,27,31,36,37,42,46,48,49,50,52,53,57,62,68,71,74,76,85,91,99,106,112],measured_param:[3,71,76],measured_v:1,measured_val_2:1,measured_valu:52,mechan:65,media:77,mega:67,mega_b:67,member:108,memori:[37,58,59,66,77,82,110,113],memory_s:[16,59],memrori:28,memsiz:66,mention:102,mercuri:[97,106],mercuryip:[23,57],mercuryipsarrai:72,merg:102,merger:3,merlin:6,messag:[4,13,22,27,28,61,62,64,65,66,76,77],message_len:65,messagebas:13,messur:26,met:93,meta:[5,30,108,112,113],meta_fil:7,meta_serv:114,meta_server_nam:114,metadat:[44,52],metadata:[3,10,20,21,31,36,40,43,44,48,49,54,57,76,91,97,106,108,113],metadata_fil:42,meter:[3,6,9,10,14,21,72,77,100],method:[1,2,3,8,9,10,12,17,21,24,25,28,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,57,59,62,64,68,69,72,77,78,81,83,84,85,102,113,114],methodnam:[57,62,69,78],mhz:[26,30],might:[19,59,102,113],millisecond:76,mimic:105,mimick:113,min:[22,65],min_val:61,min_valu:8,mind:59,mini:42,minim:30,minimum:61,minu:110,mirror:113,misc:91,misinterpret:28,mismatch:58,miss:[102,114],mistak:102,mix:[3,4,102],mock:[5,17,102],mockami430:70,mocker_class:70,mockgat:[6,9],mockinstru:105,mockmet:[6,9],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,9],mode:[0,3,6,7,8,11,12,14,16,17,19,21,30,37,58,59,64,66,68,72,74,75,77,79,106,113,114],model:[3,6,7,9,10,14,16,20,21,59,62,63,70,72,73,74,76,102,105,110,113],model_336:57,modif:110,modifi:[1,25,51,68,102],modified_rang:40,modul:[2,3,10,13,14,18,21,30,93,102,110],modular:[108,113],moment:[62,77],monitor:[9,21,46,55,85,105,108,113],more:[1,6,10,21,24,25,26,28,30,37,41,42,59,62,66,68,77,94,99,102,105,106,108,109,113],most:[1,2,3,8,13,18,19,21,26,30,48,49,59,62,69,74,77,102,105,109,113],mostli:[30,105],motiv:102,move:[3,9,17,21,72,77],mpl_connect:1,msec:[3,7],msg:72,mua:24,much:[26,40,74,102,113],multi:[10,64,94,113],multichan_paramclass:33,multichannelinstrumentparamet:[33,64],multilin:102,multimet:[77,97],multiparamet:[3,26,68,71,72,74,76,91,97,106],multipl:[0,1,8,25,30,33,41,48,50,65,66,69,74,77,106,113,114],multiple_trigger_acquisit:66,multipli:113,multiprocess:[3,18,94,97,108,114],multityp:105,must:[3,8,10,27,28,30,31,36,39,42,43,48,49,51,52,59,61,62,66,68,76,77,82,102,105,110,113,114],mv_rang:66,mvpp:27,my47004267:7,my48002016:11,my54505281:12,my54505388:[11,13],my57800256:22,my_experi:109,mycount:8,myget:10,myinstrument:114,myset:10,myvector:114,myvector_set:114,n48280:15,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,23,24,25,26,27,28,29,30,31,33,34,35,36,37,39,41,42,43,44,45,47,48,49,50,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,85,102,105,109,110,113,114],name_to_delet:3,namespac:[9,21,91,110],nan:[10,21],nataliejpg:79,nativ:[10,76],navg:75,navig:109,nbagg:[4,5,9,16,18,19,20,21,23,26,27,28,29],nbi:[102,107],ndarrai:[31,36,48,77,113],nearli:3,necessari:[16,30,36,52,58,59,68,108,113],necessarili:[31,48,49,102,105],need:[1,2,3,8,10,17,28,36,59,66,72,77,102,105,106,113,114],neg:[55,65],neither:102,nep:[30,68],nepbw:68,nepbw_to_timeconst:68,nest:[8,10,11,36,46,113],nested_dataset:4,network:[74,113],never:[50,102],new_cmd:3,new_data:[37,91],new_indic:13,new_nam:3,new_valu:13,newlin:42,newlinestripp:77,next:[1,28,31,39,42,48,77,109,113,114],nice:[1,3,9,21,30,102,109],nick:102,nielsen:107,nix:109,no_instru:114,nobodi:102,nocommanderror:50,node:30,noisi:17,non:[17,28,81,102,114],none:[2,3,4,6,7,10,13,15,16,17,18,20,21,23,30,31,33,34,36,37,39,41,42,43,46,47,48,49,50,51,54,56,57,59,60,61,62,64,65,66,70,72,74,75,76,77,80,82,84,85,95,102],nonetyp:[33,57],nonlinear:21,noofpoint:28,noofseqelem:28,nor:102,norm:[17,22],normal:[31,37,38,41,48,49,51,62,105,113],notabl:30,notat:[2,51],notch_filt:15,note:[1,2,3,8,10,17,24,25,28,30,31,33,37,48,49,50,51,52,54,61,64,68,71,72,75,76,77,80,82,93,108,110,113,114],notebook:[1,2,11,13,15,16,17,21,27,28,30,97,99,106,108,109,110,111],noth:[59,61],notic:[1,21,26],now:[0,6,8,9,10,15,17,21,24,25,26,28,30,31,48,85,97,102,109,110,114],nplc:[7,11,12,13,14,18,20,77],nplc_list:62,npt:[16,26,74],nr_averag:66,nr_bytes_written:13,nrep:[28,77],num:[6,12,13,51,84],num_chan:64,num_channel:77,num_port:26,number:[0,1,3,7,8,9,10,11,12,13,14,18,20,21,24,25,26,28,30,39,42,43,46,48,49,51,54,57,58,59,61,62,64,65,66,68,72,73,74,76,77,102,105,110,113,114],number_format:42,number_of_channel:59,number_of_paramet:114,numdac:65,numer:[42,113],numpi:[0,3,4,8,9,11,12,13,14,17,18,20,21,23,24,25,27,28,29,30,31,36,48,68,76,77,99,113,114],numpoint:77,numval:[12,13],object:[0,1,2,6,7,9,10,13,14,15,16,18,20,21,23,26,27,29,30,31,33,36,38,40,41,46,48,49,50,51,52,59,61,64,75,80,82,85,102,103,110,113,114],obsolet:28,obtain:[1,59],obviou:46,occasion:40,occupi:[39,77],occur:[1,17,58,61,65,66,76,110,113],oct:15,oem:77,off:[3,7,11,12,13,19,22,24,25,26,27,30,41,64,69,72,74,77],off_modul:74,offer:[0,1,114],offload:113,offset:[16,17,19,27,30,77],often:[1,5,37,102,105],ohm:[16,30],old:[15,26,27,98],oldest:22,oldn:30,omit:[21,31,48,50,72],on_modul:74,onc:[0,5,8,9,10,21,36,40,77,102,105,109,113,114],one:[1,2,3,8,9,10,14,15,17,19,21,24,25,26,27,28,30,31,34,36,37,40,41,42,46,47,48,50,51,56,57,58,59,61,64,65,74,76,77,82,102,105,106,110,113,114],ones:[69,74,77,102],onli:[3,4,8,10,16,17,18,21,24,25,26,27,28,30,31,36,37,39,41,42,47,48,49,50,51,52,58,59,62,64,68,69,71,72,74,76,77,82,102,106,113],onlin:1,onto:[77,113],opc:77,open:[4,7,40,43,54,58,72,84,98,102,108,109,113],opendevic:75,oper:[1,3,13,16,31,32,38,48,51,58,61,77,110,113,114],oppos:[3,28],opposit:83,optim:108,option:[2,3,22,28,31,33,34,36,37,39,40,41,43,44,47,48,49,50,51,52,54,56,57,62,66,72,76,77,80,82,95,99,102],order:[2,3,10,17,28,30,34,37,41,56,68,70,102,110,113],ordereddict:[0,37],org:[1,54],organ:[102,106],orient:113,origin:[11,57,113],osc:30,oscil:30,oscillator2_freq:30,oscilloscop:[77,106],osx:109,other:[1,2,3,8,24,25,26,28,30,39,40,46,53,55,59,61,71,76,81,83,84,102,108,113],otherclass:3,otherwis:[3,28,36,58,59,61,102,113],our:[26,42,102],out:[0,3,5,8,10,13,17,18,21,22,24,25,26,27,30,31,32,48,58,59,64,66,72,102,107,108,111,113,114],outer:[1,8,10,36,42,113],output:[3,7,9,16,18,19,20,21,23,24,25,26,28,41,46,50,58,61,64,65,66,68,71,73,74,76,77,81,102,106,113],output_interfac:15,output_waveform_name_n:77,outsid:[55,59,65,66,68,77],over:[0,3,10,21,26,30,33,40,46,51,52,59,75,102,105,113,114],overhead:[12,113],overid:72,overload:[61,76],overrid:[3,37,39,40,64,68,72,82],overridden:1,overview:[10,66,77,106,110,112],overwrit:[2,18,20,21,65,77,82,110],overwritten:39,ovsr:76,own:[2,3,10,26,41,58,59,84,102,113],oxford:[23,29,57,97,100],oxfordinstruments_ilm200:72,oxfordinstruments_ips120:72,oxfordinstruments_kelvinox_igh:72,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:77,pack_waveform:77,packag:[1,2,13,30,93,102,108,110],packard:[7,60],packed_waveform:77,pad:3,page:[91,93,102,113],pai:102,pair:11,panel:[30,61,77,108],panic:113,par:28,paraemt:57,parallel:72,param:[8,28,29,30,49,59,64,65],param_id:13,param_nam:[36,64],param_out:13,paramet:[1,5,6,7,9,10,14,16,17,19,20,21,24,25,26,28,29,30,31,32,33,34,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,61,62,64,65,66,68,69,70,71,72,74,75,76,77,79,80,81,82,83,84,85,91,94,96,99,102,103,106,108,112],parameter_class:3,parameter_nam:95,params_to_skip_upd:[64,74],paramt:[0,56,114],parent:[31,33,41,45,47,48,49,50,52,61,62,63,64,74,76,77],parenthes:102,parmet:66,pars:[28,41,73,77],parse_awg_fil:[28,77],parse_multiple_output:73,parse_on_off:[69,74],parse_output_bool:77,parse_output_str:77,parse_single_output:73,parse_string_output:73,parsebool:77,parseint:77,parser:[3,41,76,77],parsestr:[60,77],part:[2,3,9,21,26,31,39,48,49,50,66,75,76,97,102,105,106,110,113],partial:[73,114],particular:[3,8,17,28,30,105,113],particularli:[3,41,44,76,113],pass:[1,3,39,41,47,50,52,53,57,59,62,66,70,74,79,82,83,84,102,110,113,114],pat:77,patch:102,path:[2,10,28,35,37,38,40,59,72,77,80,82,109,113],pattern:77,paus:17,pci:[3,58],pcie:[58,59,97],pcie_1751:57,pcie_link_spe:[16,59],pcie_link_width:[16,59],pdf:64,pend:77,pep8:102,per:[3,12,13,16,31,36,48,59,61,64,65,70,77,108,114],percent:[30,68],percentag:72,perf:102,perfom:11,perform:[1,10,11,15,16,17,24,25,30,40,54,59,65,68,75,77,81,98,100,102,113],perform_safety_check:70,perhap:[13,113,114],period:[37,83,84],persist:[43,70,72],persistent_switch:70,person:102,phase:[8,15,22,26,30,59,68,74,113],phase_delay_input_method_n:77,phase_n:77,phi:17,phi_measur:17,physic:[3,24,25,37,57,61,80,82,85,113],pick:102,pictur:113,piec:[105,113],pillar:113,pin:58,ping:102,pinki:102,pip:[102,108,109],pixel:83,place:[1,2,24,25,62,102,113],plai:10,platform:66,pleas:[28,30,64,77,102,107],plese:107,plot2:21,plot2q:21,plot3:21,plot3b:21,plot3bq:21,plot3q:21,plot4:21,plot4q:21,plot:[0,2,13,15,16,17,20,21,22,24,26,27,28,30,36,91,95,98,99,106,109,110,113],plot_1d:10,plotlib:[2,110],plotq1:21,plotq2:21,plotq:20,plotter:30,plt:[1,9,11,13,14,17,18,20,21,23,26,27,28,29,30,84],plu:110,plubic:93,plug:[62,108],plugin:102,plural:8,point:[10,11,12,13,15,17,26,30,34,38,42,46,50,56,68,72,74,75,91,108,113],poitn:77,polar:65,polish:108,poll:15,polyfit:17,poor:19,popul:[36,44,45],port:[17,19,26,29,43,58,61,70,72,75,108],port_count:58,posit:[41,113],possibl:[8,19,26,28,71,72,76,77,110,113],post:102,post_acquir:59,post_trigg:66,posttrigger_s:66,potenti:[37,46,108,113],power:[17,26,62,70,72,74,75,97,102,113],power_limit:32,powerlin:14,ppi:58,pprint:[6,7],practic:102,pre:[80,106],pre_acquir:59,pre_start_captur:59,preamp:[3,71,76],preamplifi:[3,71,76],prece:68,preced:42,precis:[19,65,68,96],preconfigur:2,predefin:[28,53,76,77,106],prefer:[108,113],prefix:102,preliminari:11,prepar:[12,13,30,59,62,68,77,113],prepare_buffer_readout:[15,76],prepare_curvedata:[27,77],prepare_for_measur:75,prepare_scop:[30,68],prepend:[36,77],preprocessor:58,prerequisit:106,present:[3,15,71,76,102,113],preservechannelset:77,preset:75,preset_data:36,press:[1,77,111],pretrigger_s:66,pretti:[24,25,64,68],prevent:[3,31,48,49,59,65,77],previou:[1,6,61,102],previous:[68,77,113],primari:108,princip:41,print:[0,1,2,3,8,9,10,11,12,13,14,16,17,18,20,21,23,24,25,28,29,30,61,62,64,66,68,77,114],print_al:60,print_cont:77,print_modstatu:60,print_overview:[24,25,64],print_readable_snapshot:[10,15,26],print_sweeper_set:[30,68],printslop:[24,25,64],prior:[57,61],prioriti:[39,113],privat:[59,91],privileg:58,probabl:[41,59,74,102,113],problem:[28,66,102],procedur:[64,113],process:[9,16,21,59,102,113],produc:[21,26,113],profit:109,program:[1,59],programm:[59,70,77],programmat:[2,77,108],progress:46,progress_interv:[13,46],project:[3,102],proper:[30,65],properli:[17,77],properti:[2,58,110,113],protect:65,protocol:[16,65,113],provid:[1,2,8,16,24,25,36,39,41,43,50,52,59,62,66,69,78,82,83,84,102,105,106,109,113],proxi:113,psu:72,pts:[15,30],pull:[13,30],pull_from_serv:[6,9,16,20,21,113],puls:[24,25,28,60,97],purchas:30,purpos:[3,8,113],push:113,push_to_serv:[6,20,113],put:[17,28,42,64,72,77,113,114],pxie:62,py_head:[57,66],pyenv:2,pyplot:[1,9,11,13,14,17,18,20,21,23,26,27,28,29,30],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,20,22,24,91,98,100,109],pyqtmaxplot:110,pyqtplot:110,pyspcm:66,pytest:102,python3:2,python:[3,10,37,58,59,65,66,72,77,80,82,95,102,108,109,113],pyvisa:[13,54,113],pywin32:100,qcmatplotlib:[0,2,16,91],qcode:[0,1,4,5,6,7,12,13,14,91,93,102,103,104,107,112,113,114],qcodes_colorbar:1,qcodes_config:110,qcodesrc:2,qcodesrc_schema:26,qdac:[11,12,57,97,98,99,100,106],qdac_ch01_v_set:12,qdac_ch02_v_set:13,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[57,106],qdac_setpoint:12,qdacchannel:64,qdacmultichannelparamet:64,qdev:[11,12,13,18,24,25,57,108,110],qtlab:75,qtplot:[0,2,10,13,20,21,22,24,91,106],qtwork:65,quadratur:8,quantiti:[21,42],quantum:109,queri:[18,24,25,30,64,75,76,77,113],querysweep:75,question:[62,64,102],queue:[18,22,28,61,62,77],quickli:28,quiet:13,quirk:94,quit:[1,32,102,113],quot:42,qutech:57,qutech_controlbox:69,r_offset:15,rack:65,rad_to_deg:69,rainbow:[9,39],rais:[2,3,13,17,18,21,32,33,50,52,55,57,58,59,62,65,68,69,76,77,78],raiseexc:76,ramiro:75,ramp:[3,10,13,17,19,22,24,25,61,70,72,77],ramp_al:61,ramp_rat:[17,61],ramptim:24,ran:4,randint:[5,10],random:[2,5,10,17,28,62],rang:[3,7,8,11,12,13,14,16,22,24,25,26,28,30,58,59,62,65,66,68,75,77,113,114],range_auto:7,rangei:[7,21],rangev:[7,21],rate:[15,16,17,30,59,61,65,66,70,76],rather:[19,30,62,102,114],ravel:113,raw:[12,65,105,106,108],raw_val:12,reach:[17,76,102],read:[3,4,8,10,14,17,18,20,24,25,27,37,40,41,42,43,54,58,61,64,65,66,71,72,74,76,77,80,82,102,105,106,109,110,113],read_metadata:40,read_one_fil:40,read_pin:58,read_port:58,read_stat:64,readabl:[10,50,59,96,102],reader:10,readi:[8,10,30,77,82,102,109],readili:1,readm:102,readnext:14,readout:[64,66,98],readthedoc:54,real:[3,10,26,62,71,76,102,105,108,113,114],realli:[24,25,36,62,109,113],realtim:[102,108],reappear:102,rear:77,reason:[10,17,102,114],recal:10,receiv:[1,22,61,76],recent:[2,13,18,21,30,49],recommend:102,reconnect:113,reconstruct:40,record:[10,16,39,68,77,82,108,113],records_per_buff:[16,59],recycl:59,redirect:[31,36,49,96],reduc:41,ref:[27,113],refactor:102,refer:[10,30,36,59,91,102,104,113,114],referenc:[31,48,49,113],reference_clock_frequency_select:77,reference_multiplier_r:77,reference_sourc:[15,77],refernc:75,reflect:[47,74],refriger:72,reg:[29,57,66],regard:[59,113],regardless:102,regist:[66,76,102],registri:72,regular:[3,5,113],reimport:110,reinvent:102,reject:75,rel:[10,26,37,38,80,82,113],relat:[1,113],relationship:113,releas:[40,108],relev:[13,49,59,76,77],reli:[1,3,59],reliabl:[59,113],reload:[4,14,40,57,113],remain:59,rememb:[12,17,26,27,68],remot:[7,18,23,72,83,113],remoteinstru:[7,113,114],remoteparamet:113,remov:[22,26,30,36,37,65,68,72,74,77,97,99,102,106],remove_signal_from_sweep:68,rep:77,repeat:[33,102,113],repet:77,repetit:[28,77],repetition_r:77,replac:[1,61,99],repo:[2,102],report:[103,108],repositori:[102,106,108],repr:[13,61],reprec:26,repres:[8,42,49,59,62,76,113],represent:[10,58,85,105],reproduc:[102,113],request:[12,17,103,113],requir:[8,10,30,31,41,48,51,52,54,58,68,74,82,100,102,110,113,114],res:18,research:[76,98],resend:77,resend_waveform:77,reserv:15,reset:[3,8,10,13,15,26,28,41,42,60,65,66,69,70,73,74,76,77],reset_modul:76,resit:57,resolut:[7,10,65,99],resolv:62,resourc:[13,40,54,58,62,64,76,113],respect:[1,31,48,58,77],respons:[3,18,41,43,50,54,61,64,76],restart:[66,110],restrict:[76,105],restructur:102,result:[1,4,8,21,39,59,65,75,77,106,113],ret:13,ret_cod:13,ret_valu:13,retriev:[22,77,110],retur:77,return_count:13,return_pars:41,return_self:77,reus:113,revers:[50,51],review:[102,108],revion:61,revok:[24,25],rewrit:113,rewritten:102,rf_off:26,rf_on:26,rho:17,richer:113,rid:36,right:[1,17,21,28,57,59,76,85],rigol:57,rigol_dg4000:73,rise:[3,7,30],risetim:[3,7,20],robust:3,rohd:[74,106],rohde_schwarz:[26,57],rohdeschwarz_sgs100a:74,rohdeschwarz_smr40:74,rol:75,ron:77,root:[4,37,38,77,80,82],rotate_nvalv:72,rough:103,round:[65,99,113],round_dac:65,routin:[62,64],row:[1,42,74],rrm:30,rs232linkformat:65,rs_sgs100a:74,rs_smb100a:74,rst:[3,41,102],rto:72,rtoz:23,rtype:13,rule:17,run:[0,1,5,6,9,10,11,12,13,15,16,17,18,20,21,22,26,27,30,46,57,58,68,77,95,106,108,110,113,114],run_mod:77,run_stat:77,run_temp:8,run_to_field:72,run_to_field_wait:72,runtest:[57,62,69,78],runtim:[2,110],runtimeerror:30,s11:26,s12:26,s21:26,s22:26,s44:26,sa124_max_freq:75,sa124_min_freq:75,sa44_max_freq:75,sa44_min_freq:75,sa_api:75,sa_audio:75,sa_audio_am:75,sa_audio_cw:75,sa_audio_fm:75,sa_audio_lsb:75,sa_audio_usb:75,sa_auto_atten:75,sa_auto_gain:75,sa_averag:75,sa_bypass:75,sa_idl:75,sa_iq:75,sa_iq_sample_r:75,sa_lin_full_scal:75,sa_lin_scal:75,sa_log_full_scal:75,sa_log_scal:75,sa_log_unit:75,sa_max_atten:75,sa_max_devic:75,sa_max_gain:75,sa_max_iq_decim:75,sa_max_rbw:75,sa_max_ref:75,sa_max_rt_rbw:75,sa_min_iq_bandwidth:75,sa_min_max:75,sa_min_rbw:75,sa_min_rt_rbw:75,sa_min_span:75,sa_power_unit:75,sa_real_tim:75,sa_sweep:75,sa_tg_sweep:75,sa_volt_unit:75,sabandwidthclamp:75,sabandwidtherr:75,sacompressionwarn:75,sadevicenotconfigurederr:75,sadevicenotfounderr:75,sadevicenotidleerr:75,sadevicenotopenerr:75,sadevicetypenon:75,sadevicetypesa124a:75,sadevicetypesa124b:75,sadevicetypesa44:75,sadevicetypesa44b:75,saexternalreferencenotfound:75,safe:[17,65,72,102,113],safe_reload:75,safe_vers:65,safeti:[17,26,62,72],safrequencyrangeerr:75,safti:26,sai:[37,80,82,102,114],said:[36,77],sainterneterr:75,sainvaliddetectorerr:75,sainvaliddeviceerr:75,sainvalidmodeerr:75,sainvalidparametererr:75,sainvalidscaleerr:75,same:[1,3,5,8,11,16,17,34,36,42,48,50,51,56,58,68,76,77,84,102,113,114],sampl:[12,15,16,30,51,52,57,59,66,113],sample_count:[12,13],sample_r:[16,59],sample_timer_minimum:[12,13],samples_per_buff:59,samples_per_record:[16,59],sampling_r:77,sane:35,sanocorrect:75,sanoerror:75,sanotconfigurederr:75,sanullptrerr:75,saovencolderr:75,saparameterclamp:75,sastatu:75,sastatus_invert:75,satisfi:17,satoomanydeviceserr:75,satrackinggeneratornotfound:75,saunknownerr:75,sausbcommerr:75,save:[0,10,13,28,31,36,37,40,42,48,49,50,59,77,81,82,95,102,105,106,108,113,114],save_to_cwd:2,save_to_env:2,save_to_hom:[2,110],savvi:108,sawtooth:22,sbench6:66,sca:1,scalar:[5,8,10,31,48,81,113],scale:[8,26,27,30,57,75],scale_param:8,scale_set:8,scale_v:8,scan:26,scenario:[62,102],scene:30,scf:1,schema:[2,26,35,110],schema_cwd_file_nam:35,schema_default_file_nam:35,schema_env_file_nam:35,schema_file_nam:35,schema_home_file_nam:35,schouten:65,schwarz:[74,106],scientist:109,scope:[27,68,77,106],scope_average_weight:30,scope_channel1_input:30,scope_channel2_input:30,scope_channel:30,scope_correctly_built:30,scope_dur:30,scope_length:30,scope_measur:27,scope_mod:30,scope_samplingr:30,scope_seg:30,scope_segments_count:30,scope_trig_delai:30,scope_trig_en:30,scope_trig_gating_en:30,scope_trig_gating_sourc:30,scope_trig_holdoffmod:30,scope_trig_holdoffsecond:30,scope_trig_hystabsolut:30,scope_trig_hystmod:30,scope_trig_level:30,scope_trig_refer:30,scope_trig_sign:30,scope_trig_slop:30,scopearrai:77,scopedata:30,scpi:61,screen:109,script:[106,108,114],sd_awg:62,sd_common:62,sd_dig:62,sd_modul:62,sdk:59,sdk_version:[16,59],seamless:62,search:[39,102,113],sec:77,second:[1,6,8,10,14,15,22,30,31,36,37,43,46,48,50,54,55,59,61,65,70,72,76,77,82,83,84,107,113,114],section:[107,109],see:[0,1,2,5,9,17,21,22,24,27,28,39,40,43,50,52,54,59,65,66,74,77,83,102,113,114],seem:[42,66,102],seen:26,seg_siz:66,segm1_ch1:77,segm1_ch2:77,segm2_ch1:77,segm2_ch2:77,segment:[1,30,68,77],select:[16,17,59,68,77,102,109],self:[2,3,8,13,18,20,21,31,37,40,48,49,61,62,64,72,75,77,82,85,102,114],semant:108,semi:102,semicolon:72,sen:[3,7,20,71],send:[3,12,13,17,43,65,71,76,77,106,107],send_awg_fil:77,send_dc_puls:77,send_pattern:77,send_sequ:77,send_sequence2:77,send_waveform:77,send_waveform_to_list:[28,77],sens:102,sens_factor:[3,7,71],sens_x:20,sensit:[3,7,15,71],sensor:[63,106],sensorchannel:63,sent:[3,41,50,72,77,105,113],separ:[8,40,42,48,72,85,108,113,114],seper:[61,77],seprar:21,seq:77,seq_elem:28,sequanti:56,sequecn:77,sequenc:[8,28,31,36,46,48,51,61,77,81,84,113],sequence_cfg:77,sequence_length:28,sequence_po:28,sequenti:[30,34,114],seri:[3,69,73,77],serial:[3,6,7,10,11,12,13,15,16,17,22,26,27,59,61,72,76,105],serial_numb:[20,21],serialis:77,serv:3,server:[16,18,23,30,59,68,113,114],server_err:18,server_nam:[4,7,16,21,23,60,66,114],session:[9,10,13,21,37,80,82,102],set:[0,1,2,3,4,5,7,8,9,11,13,15,16,17,18,19,20,21,22,23,26,28,34,36,37,40,42,46,47,49,50,51,52,56,57,58,59,61,62,64,65,66,68,70,71,72,74,75,76,77,79,80,81,82,105,106,108,110,113,114],set_al:61,set_arrai:36,set_channel_or_trigger_set:66,set_channel_set:66,set_cmd:[1,3,10,50,72,114],set_current_folder_nam:77,set_dacs_zero:65,set_default:77,set_delai:10,set_ext0_or_trigger_set:66,set_ext_trig:74,set_field:70,set_funct:59,set_jumpmod:77,set_level:77,set_measur:[6,7,9,14,18,20,21],set_mix_chamber_heater_mod:72,set_mix_chamber_heater_power_rang:72,set_mod:77,set_mode_volt_dc:77,set_mp_method:[6,9,16,18,20,21,23],set_pars:50,set_persist:72,set_point:27,set_pol_dacrack:65,set_pulsemod_sourc:74,set_pulsemod_st:74,set_ramp:19,set_remote_statu:72,set_sequ:77,set_set_point:27,set_setup_filenam:77,set_smooth:76,set_sqel_event_jump_target_index:77,set_sqel_event_jump_typ:77,set_sqel_event_target_index:[28,77],set_sqel_goto_st:77,set_sqel_goto_target_index:[28,77],set_sqel_loopcnt:[28,77],set_sqel_loopcnt_to_inf:[28,77],set_sqel_trigger_wait:[28,77],set_sqel_waveform:[28,77],set_statu:74,set_step:10,set_sweep:74,set_titl:[1,28],set_to_fast:72,set_to_slow:72,set_valu:52,set_voltag:76,set_ylim:28,setattr:21,setboth:114,setbothasync:114,setformatt:4,setlevel:[4,27,28,30],setpoint:[0,1,4,5,6,8,10,11,12,13,16,17,26,27,31,36,42,48,62,68,72,74,76,81,97,113,114],setpoint_arrai:[31,48],setpoint_label:[8,31,48],setpoint_nam:[8,31,48,68],setpoint_unit:[31,48],settabl:[49,52,105,113],setter:105,settl:[30,102],setup:[26,66,74,85,106,108],setupclass:[57,62,69],setx:114,sever:[21,62,68,72,102,105,113],sg384:[57,96],sgs100a:57,shadow:2,shape:[0,1,3,4,6,8,10,11,12,13,15,16,26,27,28,30,31,36,48,62,68,74,84,113,114],share:[19,107],shared_kwarg:114,shell:108,shift:30,ship:[2,30],shortcut:83,shorthand:1,shot:[94,102,106],should:[3,10,12,16,17,21,22,26,27,28,30,31,33,36,37,39,40,41,43,45,46,48,49,51,52,53,57,58,59,61,62,71,72,76,77,85,102,109,113],shouldn:36,show:[1,5,9,10,16,17,18,20,21,23,24,25,102],show_subprocess_widget:[6,9,16,18,20,21,23],show_window:83,shown:[1,17],side:[17,28,50,105,109,114],sig:30,sig_gen:102,signadyn:62,signal:[10,27,28,59,66,68,69,74,75,76,77,97,106,113],signal_hound:57,signal_input1:30,signal_input1_ac:30,signal_input1_diff:30,signal_input1_imped:30,signal_input1_rang:30,signal_input1_sc:30,signal_output1:30,signal_output1_ampdef:30,signal_output1_amplitud:30,signal_output1_autorang:30,signal_output1_en:30,signal_output1_imp50:30,signal_output1_offset:30,signal_output1_on:30,signal_output1_rang:30,signal_to_volt:59,signalhound_usb_sa124b:75,signatur:[28,40,58,77],significantli:26,silent:62,sim900:76,sim928:[57,97],sim:76,similar:[1,10,74,77,113],similarli:[25,30,113],simpl:[5,8,10,15,16,26,27,32,38,41,55,66,84,102,106,108,113],simpler:102,simplest:113,simpli:[2,30,41,49,77],simplifi:[3,9,21,61,102],simul:[105,108,112,113],simultan:[15,21,25,61],simultani:70,sin:[28,73],sinc:[1,3,10,17,30,61,68,72,77,113,114],sine:27,sing:26,singl:[1,8,10,18,20,26,31,42,49,50,51,58,59,61,63,64,66,70,77,81,84,94,102,105,106,113],single_iq:8,single_set:8,single_software_trigger_acquisit:66,single_trigger_acquisit:66,singleiqpair:8,site:[1,2,13],situat:[10,42,113],six:[24,25,58],size:[1,6,10,31,37,48,50,59,65,66,76],skewed_parabola:4,skill:102,skip:102,slack:[98,99,100,102,107,108],slash:38,sleep:[3,12,13,15,18,20,23,24,25,27,28,52,55,65],slice:[9,21,26,51,105],slider:1,slider_demo:1,slightli:96,slope:[13,16,17,22,24,25,64],slot:[19,61,62,76],slot_nam:76,slow:[24,25,72,113],slow_external_clock:3,slower:28,small:[24,25,26,30,58,94,102],smaller:[26,76],smart:[72,102],smooth_timestep:76,smoothli:76,smr40:57,smu:3,snap:7,snapshot:[0,3,6,7,10,16,20,21,31,33,36,43,44,48,49,54,76,77,85,96,99,100,113],snapshot_bas:[64,74],snapshot_get:[31,48,49],snapshot_valu:[31,48,49],socket:[43,63],soft:77,softwar:[3,22,30,64,68,77,100,102,106,113],software_revis:[20,21],software_triggered_read:12,solv:102,some:[0,3,10,25,30,31,41,43,48,49,51,61,62,66,76,77,102,106,110,113],somebodi:102,somehow:113,someon:[58,102],someth:[2,9,17,21,28,30,59,62,64,102,110,113],sometim:[3,8,10,30,42,113],soon:[61,102],sophist:59,sort:[28,42],sort_kei:7,sourc:[3,6,9,10,16,17,26,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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,102,103,108,109,113],sourcemet:[77,97],space:[24,25,31,48,49,51,102,105],span:[26,75],spawn:[6,9,16,18,20,21,23],spc_tm_high:66,spcerr:[57,66],spcm0:66,special:[3,10,31,48,49,102,113],specif:[16,28,37,61,64,65,72,77,102,105,113],specifi:[1,17,22,28,31,40,46,48,57,58,62,65,68,69,75,76,77,78,84,85,102,110,113],specifiedta:77,spectrum:[57,96,97,113],speed:[11,12,26,50,59,113],speedup:99,spheric:17,spherical_measur:17,splat:1,split:[3,12,26,29],spread:107,sqel:77,sql:113,squar:27,squencer:77,sr560:[3,57],sr830:[57,95,98,106],sr865:57,src:[2,4,26],srs_sg384:76,stabl:54,stackoverflow:1,stage:113,stai:[102,114],staircas:10,stale:113,stand:17,standalon:108,standard:[1,3,12,26,61,64,76,108],standardparamet:[1,3,6,8,10,16,20,57,65,91,105],stanford:[76,98],stanford_research:[3,15,57],stanford_research_system:15,stanford_sr865:76,start:[0,1,3,6,9,10,11,12,13,15,16,20,21,22,26,30,35,36,37,42,47,50,51,53,58,59,61,72,74,76,77,80,82,102,106,113],startcaptur:16,startup:[24,25,64],stat:[69,74],state:[3,24,25,28,30,58,61,77,102,105,108,113],statement:[65,102],station1:[18,20],station2:[18,20],station:[4,5,6,7,9,10,11,13,14,18,20,21,26,30,31,44,46,48,49,76,91,103,113],stationq:108,statu:[3,29,30,59,62,64,65,69,72,74,75,76,77],status:76,statuscod:77,std:12,stderr:4,stdlib:58,stdout:[13,66],step:[1,3,10,11,26,46,50,51,65,76,78,109,114],step_attenu:69,stepper:72,still:[24,25,28,36,102,113],stop:[1,15,21,22,26,28,30,51,74,77],storag:[77,108,113],store:[0,2,4,33,36,37,40,57,59,77,82,85,99,113],str:[3,13,31,33,34,35,36,37,38,39,41,43,44,45,47,48,49,50,54,56,57,61,62,64,65,68,71,72,74,76,77,79,80,82],straightforward:[28,113],strang:30,strategi:61,stream:[13,16,30],streamhandl:4,strftime:39,strictli:68,string:[2,3,4,13,18,20,31,33,39,40,41,42,48,49,50,59,62,65,66,68,70,72,73,74,76,77,82,85,102,105,110,113],strip:[3,42],strive:102,strongli:[1,3,30,102],structur:[37,40,59,80,82,105,110,113],struggl:102,stuf:110,stuff:[3,17,72,77,106],stupid:17,subclass:[3,8,31,33,40,41,43,48,49,52,54,59,105],subject:[102,113],sublim:102,sublimelint:102,submit:114,submodul:44,subplot:[17,21,26,27,30,84,106],subprocess:[9,16,18,20,21,23],subscrib:68,subsequ:53,subset:26,substitut:3,subtract:30,succes:77,successfulli:[17,58],succinct:102,suit:[4,62,69,74,78,108],sum:[0,114],summari:106,superclass:3,superconduct:72,suppli:[3,38,40,70,72,97,113],support:[0,1,2,3,4,10,22,24,25,26,27,28,30,44,45,52,58,62,68,72,76,77,98,99,102,110,113],suppos:72,suppress:[3,7,20,77],supress:62,sure:[11,15,17,30,72,77,102,105,109],sv2:51,sv3:51,sv4:51,swap:108,sweep:[0,5,6,10,12,13,21,26,30,33,34,50,51,52,56,68,72,74,75,94,105,106,108,112,113],sweep_val:[0,1,114],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[6,10,46],sweepabl:56,sweepdata:30,sweeper:[68,97,106],sweeper_bw:30,sweeper_bwmod:30,sweeper_ord:30,sweeper_param:30,sweeper_samplecount:30,sweeper_start:30,sweeper_stop:30,sweeper_xmap:30,sweeper_xxx:30,sweepfixedvalu:[91,105],sweepvalu:[46,91,103],swept:114,symmetri:17,sync:[18,20,21,24,25,27,30,106,113],sync_delai:25,sync_dur:25,sync_filt:15,sync_output:22,sync_sourc:22,synchron:[61,113],syntax:108,synthes:97,sys:[4,13,26],system32:[3,59,75],system:[3,16,31,35,41,48,49,59,72,76,77,85,94,96,110,113],system_id:[3,16,59],sztypetonam:66,t_actual:17,t_set:17,t_start:[11,13],t_stop:[11,13],tab:[30,42,102],tabl:[77,106,110,113],tag:102,tailor:1,take:[0,10,13,21,25,31,32,33,46,48,49,61,64,66,74,77,98,102,105,108,114],taken:[50,66,74,77],talent:102,talk:[3,71,76,113,114],target:[17,51,52,59,77],target_curr:17,target_field:17,task:[5,10,13,22,46,55,91,95,102,105,113],tcpip0:[3,11,12,13,22,26,28,74],tcpip:113,tech:108,techniqu:102,technolog:[7,11,12,13,22],tektp:27,tektron:100,tektronix:[3,7,14,18,20,21,57,97,98,106],tektronix_awg5014:[28,77],tektronix_awg5200:77,tektronix_awg520:77,tell:[40,42,55,102,113],temp0_0:[24,25],temp2_1:[24,25],temp5_2:[24,25],temperatur:[63,72,97,106],templat:102,temporari:[37,82],tempx_i:[24,25],tend:3,tens:102,term:[13,102],termin:[3,7,9,13,16,18,20,21,23,42,43,54,64,66,70,72,108,109,113],tesla:[17,70,72],test2d:21,test:[3,5,10,11,12,17,21,39,43,44,58,61,62,64,65,69,70,73,74,77,78,96,105,106,108,113],test_ami430:17,test_attenu:78,test_awg_fil:28,test_channel_amplitud:62,test_channel_frequ:62,test_channel_offset:62,test_channel_phas:62,test_channel_wave_shap:62,test_chassis_and_slot:62,test_chassis_numb:62,test_clock_frequ:62,test_closed_fil:4,test_complex_param:21,test_dataset_clos:4,test_dataset_finalize_closes_fil:4,test_dataset_flush_after_writ:4,test_dataset_with_missing_attr:4,test_double_closing_gives_warn:4,test_field_vector:17,test_firmware_vers:[69,78],test_frequ:69,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[57,102],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:102,test_metadata_write_read:4,test_multi_d:21,test_on_off:69,test_open_clos:62,test_phas:69,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:69,test_pxi_trigg:62,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:77,test_serial_numb:62,test_slot_numb:62,test_snapshot:102,test_str_to_bool:4,test_suit:57,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:69,testcas:57,testhdf5_format:4,testkeysight_m3201a:62,testkeysight_m3300a:62,testmetadat:102,testsd_modul:62,testsweep:[0,10,11,13,18,20,21],testweinschel_8320:78,text:[3,13,73,102,105,113],texttestrunn:4,textual:113,tg_thru_0db:75,tg_thru_20db:75,than:[1,3,24,25,26,30,46,50,102,108,113],thank:102,thebrain:102,thei:[2,5,9,10,16,18,20,21,23,36,37,46,53,59,71,76,77,102,105,110,113],them:[1,2,3,8,9,21,24,25,36,57,70,72,76,77,102,106,110,113,114],theme:83,theoret:113,therebi:22,thermometri:29,theta:17,theta_measur:17,thi:[0,1,2,3,5,6,8,9,10,11,12,13,14,16,17,18,20,21,23,24,25,26,27,28,30,31,33,36,37,39,40,41,42,43,44,45,46,47,48,49,50,52,54,55,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,84,85,91,93,102,103,105,108,109,110,112,113,114],thing:[3,9,10,14,16,21,23,41,46,50,51,52,53,55,62,69,78,102,105,107,109,113,114],think:[102,110,113],third:113,those:[5,8,36,39,41,105,113],though:[1,3,50,51,52,113],thread:[65,113],thread_map:13,threadpoolexecutor:114,three:[1,8,24,25,30,42,51,70,77,113],through:[10,24,25,28,30,36,37,102,109,113,114],thu:[102,113],tick:[1,16],tight_layout:[1,26,28],tim:22,time:[1,3,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,39,40,46,50,51,52,58,61,62,66,68,75,76,77,102,108,113,114],time_const:15,timeit:12,timeout:[7,13,15,16,18,28,30,43,54,72,76,77],timeout_tick:[16,59],timer:[18,20],timestamp:[21,108,113],titl:1,tmpfile:[29,72],to_setpoint:72,to_zero:72,toc:10,todo:[3,36,64,65,68,69,76,79,102],togeth:[1,5,28,50,74,113],toggl:19,tolist:3,too:[3,26,31,48,49,50,58,74,102],tool:[1,102],top:1,toplevel:99,tortur:102,total:[3,8,26],touch:102,toymodel:[6,9],tps1:27,tps1_scope_measurement_0:27,tps1_scope_measurement_1:27,tps2012:[57,106],tps2012channel:77,tps:27,trace:[1,10,26,27,30,59,66,68,74,83,84],traceback:[2,13,18,20,21,30,108],tracenotreadi:77,track:[59,61,75,113],trail:102,transer:16,transfer:[28,77],transfer_offset:[16,59],transform:[3,17,41,50,55,59],translat:[3,40,68],transmiss:74,trcl:76,treat:[61,85,113],tree:[106,109],trg:[12,13],trig:[30,77],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:66,trig_slope_posit:16,trig_wait:[28,77],trigger:[3,13,16,22,27,28,30,66,74,77,100,106],trigger_count:12,trigger_delai:[16,59],trigger_engine1:[16,59],trigger_engine2:[16,59],trigger_input_imped:77,trigger_input_polar:77,trigger_input_slop:77,trigger_input_threshold:77,trigger_level1:[16,59],trigger_level2:[16,59],trigger_level:27,trigger_oper:[16,59],trigger_slop:13,trigger_slope1:[16,59],trigger_slope2:[16,59],trigger_sourc:[12,13,27,77],trigger_source1:[16,59],trigger_source2:[16,59],trigger_typ:27,triton1_thermometri:29,triton:[57,97,106],trival:114,trivial:[1,102],trivialdictionari:59,troubleshoot:113,truncat:102,trust:50,truthi:[10,32],ts_start:6,tst:4,tstart:[18,20],tudelft:65,tune:[65,102],tupl:[1,8,28,30,31,33,36,41,48,64,68,77,83,84],turn:[3,12,26,30,72,77],turoti:10,tutori:[5,8,106,112],two:[1,3,8,10,12,15,21,26,27,28,36,64,68,70,75,76,77,102,106,114],txt:65,type:[0,1,2,3,4,6,8,10,11,12,13,15,16,18,20,26,27,28,30,33,40,41,57,58,59,65,66,68,76,77,99,102,109,110,113,114],typeerror:[13,32,52,77],typic:[36,102,106,113],typo:102,ufh:97,uhf:[68,106],unambigu:3,unassign:[24,25],unavail:58,uncommit:59,uncondit:77,undefin:[22,58],under:77,underli:[105,113],underscor:102,understand:[102,113],undesir:10,undo:77,unfortun:62,unga:[2,4,102,110],ungaretti:102,unicorn:9,unimport:77,union:[33,36,41,50,51,57],uniqu:[36,62],unit:[0,3,6,7,8,10,14,16,20,24,25,30,31,34,36,48,49,56,59,68,72,76,96,97,102,113,114],unitless:[31,48,49],unittest:[4,57,102],unittest_data:4,unless:[24,25,36,50,102],unlik:57,unload:77,unlock:[72,74],unnecessari:8,unrecogn:58,unrel:113,unsav:113,unsign:77,until:[3,28,72,109,113],unus:82,updat:[1,2,7,10,13,21,24,25,26,27,30,31,35,48,49,59,64,68,72,74,77,83,84,85,100,105,109,113],update_acquisitionkwarg:[16,59],update_curr:[13,24,25,64],update_display_off:26,update_display_on:26,update_snapshot:85,upfront:[31,48],upgrad:30,upload:[28,77],upon:[1,22,24,25,57,76],uppercas:72,ups:17,upsteam:2,upto:77,usag:[8,39,52,62,66,72,77,103,106,112],usb:3,usb_sa124b:57,use:[0,1,2,3,5,8,10,14,21,26,27,28,30,36,39,41,42,50,51,52,54,55,57,59,62,64,66,69,70,71,72,76,77,78,84,102,105,107,109,110,112,113,114],use_lock:65,use_thread:13,used:[3,8,10,17,19,21,31,33,36,39,41,42,48,49,51,52,57,59,62,64,65,66,68,69,71,72,74,75,76,77,81,85,105,108,113],useful:[1,8,62,102,113],user:[1,2,4,6,13,14,18,26,28,50,54,58,59,68,76,77,108,109,110,113],usernam:102,userwarn:26,uses:[1,3,8,50,57,58,75,76,105,110,113],using:[1,3,10,17,21,24,25,28,30,35,40,42,54,62,65,66,70,75,77,102,105,108,113],usual:[10,44,45,64,77,113],util:[0,4,13,18,20,21,62,91,102,114],utility_freq:62,utopia:102,v11:27,v_amp_in:76,v_in:76,v_out:76,v_rang:[24,25],vaild:35,val:[0,3,6,8,10,30,49,50,51,52,59,77,114],val_map:[3,50],valid:[0,2,3,8,13,18,20,26,31,35,41,47,48,49,50,51,52,65,66,77,81,83,91,97,98,99,102,103,110,113,114],validate_al:41,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,11,13,14,15,16,17,18,20,21,24,25,26,28,30,31,34,35,36,39,41,42,46,47,48,49,50,51,52,56,57,58,59,61,62,64,65,68,70,72,74,76,77,105,113,114],valuabl:102,value_round:65,value_typ:2,valueerror:[33,55,57,62,68,69,77,78],valv:72,vari:[10,31,48,113],variabl:[3,42,62,77,102,105,106,110,113],variou:[102,105],vbw:75,vector:[17,70,113],vendor:[3,6,7,10,15,16,20,21,59,72,76],ver1:15,verbos:[4,10,57,60,62,64,66,74,77,102],verbose_channel:10,veri:[24,25,59,64,113],verifi:[3,17],vernier:76,versa:[17,30],version:[2,3,8,10,27,58,59,61,64,65,69,72,74,75,76,77,95,108,109,114],versu:106,vertic:[27,30],vi_error_rsrc_nfound:113,vi_error_tmo:13,via:[1,3,9,21,25,30,44,45,63,71,76,77,85,106,113],vibuf:13,vice:30,videobandwidth:75,view:[26,102],vipuint32:13,virtual:[3,70,71,74,76,109,114],virtualivvi:114,vis:17,visa:[3,13,28,54,60,61,62,63,64,65,69,72,73,74,76,77,78,79,113],visa_handl:[13,54,61,72],visainstru:[60,61,62,63,64,65,69,72,73,74,76,77,78,79,91,105,106,113],visaioerror:13,visalib:13,visess:13,visibl:[24,25],vision:102,visit:102,visual:108,visualis:28,viuint32:13,viwrit:13,vna:[26,75],vna_:26,vna_paramet:[26,74],vna_s11:26,vna_s11_magnitud:26,vna_s11_phas:26,vna_s11_power_set:26,vna_s11_trac:26,vna_s12_trac:26,vna_s13_trac:26,vna_s14_trac:26,vna_s21_trac:26,vna_s22_trac:26,vna_s23_trac:26,vna_s24_trac:26,vna_s31_trac:26,vna_s32_trac:26,vna_s33_trac:26,vna_s34_trac:26,vna_s41_trac:26,vna_s42_trac:26,vna_s43_trac:26,vna_s44_trac:26,volt:[3,7,10,11,12,14,18,20,21,30,59,61,76,77],volt_0:[20,21],volt_1:[20,21],volt_:76,volt_set:20,voltag:[3,7,8,10,11,12,19,21,24,25,57,61,62,64,66,71,76,77,79,97,98,105,113],voltage_range_statu:64,voltage_raw:[3,71,76],voltagedict:76,voltagedivid:57,voltageparamet:76,voltmet:[62,113],volunt:102,vpp:22,vrang:[13,24,25,64],vsd1:21,vsd2:21,vsd:[5,6,9],w8320_1:3,wai:[1,2,3,5,9,10,15,16,21,28,30,33,50,77,102,113,114],wait:[6,10,12,28,41,46,50,72,77,91,105,109,113,114],wait_trigg:77,wait_valu:77,walk:114,wall:26,want:[0,1,2,3,5,17,19,26,27,30,31,37,48,49,57,58,59,64,102,103,105,107,110,112,113,114],warn:[2,3,4,17,26,28,46,50,58,59,65,68,96,110],wav:64,wave:[27,66],waveform:[8,22,62,69,73,77,97,106,113],waveform_nam:77,web:[30,68],week:[102,107],weight:2,weinschel:[3,57],weinschel_8320:[3,57],welcom:[102,107],well:[1,5,30,33,40,61,62,69,72,76,78,102,113],went:17,were:[36,37,49,59,93],wfm001ch1:77,wfm002ch1:77,wfm1ch1:77,wfm1ch2:77,wfm2ch1:77,wfm2ch2:77,wfm:[28,77],wfmname:[28,77],wfname_l:77,wfs1:77,wfs2:77,wfs:77,what:[2,3,9,10,14,17,21,24,25,28,30,43,46,48,51,52,54,61,72,77,79,91,102,110,113,114],whatev:[12,59],wheel:102,when:[1,3,6,8,17,21,22,24,25,26,27,28,31,32,33,36,39,48,49,52,53,57,58,59,61,62,64,66,68,69,71,76,77,78,82,102,108,113,114],whenev:[66,76,77,113],where:[3,8,10,24,25,31,37,40,48,51,52,59,61,62,68,71,72,76,77,80,82,83,102,113,114],wherea:12,whether:[19,40,42,43,50,64,70,73,77,102,113],which:[1,2,3,5,8,10,17,21,26,28,30,31,33,35,36,37,39,40,42,45,46,48,50,51,53,57,58,59,62,64,72,74,76,77,80,82,85,102,105,110,113,114],whish:0,white:[83,102],whitespac:42,who:[102,107],whole:[3,5,8,42,48,71,76,102,105,113],whose:[36,76,85,113,114],why:[30,102],widget:[1,9,16,18,20,21,23,95],width:[83,84],william:[13,30],williamhpnielsen:[64,76],win32:58,win:2,window:[3,6,9,16,18,20,21,23,26,59,72,75,77,84,100,109],window_titl:83,windowtitl:20,wish:77,with_bg_task:[1,10,13],within:[1,3,16,33,36,53,55,59,68,102,108,113],without:[17,19,74,99,106,110,113],won:[21,26],wonder:30,word:[106,107],work:[2,3,5,16,23,37,38,66,69,73,74,77,78,80,82,102,108,109,110,113,114],workflow:[106,108],world:[59,102,108],wors:102,would:[1,2,8,9,16,18,20,21,23,39,50,62,74,102,107,113],wrap:[8,38,113],wrapper:[65,72,74],write:[2,3,12,13,18,22,37,40,41,42,43,50,54,58,61,64,65,72,76,77,82,102,112,113],write_confirm:43,write_copi:113,write_metadata:40,write_modul:76,write_period:[37,82],write_pin:58,write_port:58,write_raw:13,written:[1,42,59,62,72,77],wrong:[17,61,66,102],x_actn:23,x_fld:23,x_fldc:23,x_length:1,x_offset:15,x_rate:23,x_setpoint:23,x_val:[0,114],xlabel:17,xml:102,xrm:30,xxx:61,y_length:1,y_offset:15,y_val:[0,114],yai:95,yeah:20,year:102,yes:113,yet:[30,40,62,102,113],yield:[46,76],ylabel:17,yokogawa:[57,96],yolo:2,you:[0,1,2,3,5,8,9,10,17,21,26,27,28,30,31,35,36,37,38,40,41,46,48,49,50,51,52,57,59,64,71,76,77,80,82,84,103,105,106,107,109,110,112,113,114],your:[3,10,35,41,57,71,76,102,106,107,109,110,113,114],yourself:[59,76],yrm:30,yscale:30,z_val:[0,114],zero:[3,17,24,25,28,31,48,72,77],ziapinotfoundexcept:30,zip:[13,17],ziuhfli:[30,57],ziuhfli_rrm:30,ziuhfli_sig:30,ziuhfli_xrm:30,ziuhfli_yrm:30,zn20:106,znb20:57,znb4:74,znb8:[26,74,99],znb:[26,57],znbchannel:74,zone:17,zoom:68,zurich:30},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark of Keysight 34465A","QDac and Keysight 34465 sync and buffer","Example script for Keithley driver","QCoDeS example with SR830","Qcodes example ATS_ONWORK","QCoDeS example with AMI430","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","QCoDeS Example with ZI UHF-LI","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.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"33500b":22,"34400a":18,"34411a":11,"34465a":[11,12],"break":[94,95,96,97],"class":[3,91,92,93],"default":110,"function":[3,41,91,92,93],"import":[10,11,28],"new":[94,95,96,97,98,99,100,102],"public":93,ATS:59,IPS:23,THE:27,THERE:28,The:10,Using:[2,22,30,110],abort:111,acquir:27,acquisit:[15,27],action:[10,93],adding:3,advantech:58,aggreg:0,agil:[11,18,69],agilent_34400a:69,alazartech:59,all:5,american_magnet:70,ami430:[17,70],arrai:5,arrayparamet:[8,31],async:114,ats9870:59,ats_acquisition_control:59,ats_onwork:16,attent:[24,25],avanc:114,awg5014:[28,77],awg5200:77,awg520:77,awg:28,awgfilepars:77,base:3,basic:[10,22,24,25,30,106],benchmark:[12,13,26,106],breakif:32,buffer:[13,15],bug:102,burst:22,can:10,caution:30,chang:[2,94,95,96,97],changelog:[94,95,96,97,98,99,100,101],channel:[24,25,26],channellist:33,chat:107,clever:102,code:[102,104],combin:[0,56,114],combinedparamet:34,command:86,commit:102,commun:103,comprehens:1,config:[2,35,93,110],configur:[2,110],content:[10,28,30,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,102],contribut:102,core:2,creat:3,curv:27,custom:[2,3],data:[4,10,93],dataarrai:36,dataformat:4,datasav:4,dataset:[37,113],decadac:[19,61],deferred_oper:87,defin:10,demo:5,demodul:30,develop:102,devic:57,dg4000:73,diskio:38,dll:3,driver:[3,14,106,114],dummi:4,dynam:3,e8267c:69,e8527d:69,enter:109,error:22,event:1,exampl:[3,4,9,10,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,106,113],experi:2,familiar:102,faq:111,featur:102,file:[28,110],fix:[94,95,96,97],format:[9,102],formatloc:39,formatt:40,from:[4,27],gener:4,get:[12,28,107,109],git:102,global:10,gnuplotformat:42,gs200:79,guid:[103,112],handl:[1,22],harvard:61,help:107,helper:88,hierarchi:105,hour:107,how:[1,111],hp33210a:69,hp8133a:60,hp_83650a:60,ilm200:72,improv:[94,95,96,97,98,99,100],initialis:28,input:30,instal:109,instanti:[5,10],instrument:[3,4,5,7,10,44,93,105,113,114],instrument_driv:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],instrumentchannel:45,interact:10,interfac:1,introduct:113,involv:3,ipinstru:43,ips120:72,ithaco:[20,71],ithaco_1211:71,ivvi:65,keithlei:[14,21],keithley_2000:77,keithley_2400:77,keithley_2600:77,keithley_2700:77,kelvinox:72,keysight:[11,12,13,22,62],keysight_33500b:62,keysight_33500b_channel:62,keysight_34465a:62,lakeshor:63,lazi:28,linkag:105,list:[15,28],live:10,load:10,load_data:80,locat:[9,10],loop:[4,5,10,11,46,93,113],m3201a:62,m3300a:62,m4i:66,magnet:23,make:28,manual:3,manualparamet:47,matplot:[1,84],matplotlib:1,measur:[5,10,30,81,93,111,113,114],mercuri:23,mercuryip:72,messag:102,meta:114,metadata:[6,7,89],misc:93,mode:[22,28],model_336:63,modul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],more:[3,107,110],multiparamet:[8,48],multipl:10,need:5,new_data:82,note:102,object:105,offic:107,one:11,onli:5,organ:3,oscilloscop:27,output:[5,10,30],overview:[24,25,113],oxford:72,packag:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],paramet:[0,3,8,15,49,105,113,114],part:11,pcie_1751:58,phase:108,plan:108,plot:[1,10,83,84,93],pre:12,predefin:26,prerequisit:30,privat:92,project:108,provid:10,pull:102,push:102,py_head:67,pyqtgraph:83,qcmatplotlib:84,qcode:[2,3,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,106,108,109,110,111],qdac:[13,24,25,64],qdac_channel:[25,64],qdev:64,qtplot:[1,83],qutech:65,raw:11,read:11,realli:102,reg:67,remov:3,report:102,request:102,requir:109,respons:113,result:12,rigol:73,rohd:26,rohde_schwarz:74,rough:105,run:[4,28,102,111],save:[2,110],schwarz:26,scope:30,script:14,send:28,sensor:[24,25],set:[10,12,24,25,27,30],setup:[11,102],sg384:76,sgs100a:74,shot:13,signal:30,signal_hound:75,sim928:76,simpl:[0,1,3],simul:114,singl:13,smr40:74,softwar:12,some:28,sourc:104,spcerr:67,spectrum:[66,67],sr560:76,sr830:[15,76],sr865:76,standardparamet:50,stanford_research:76,start:[4,109],station:[85,93,105],stuff:13,style:102,submodul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],subpackag:[57,66],subplot:1,summari:12,sweep:[1,11,114],sweeper:30,sweepfixedvalu:51,sweepvalu:[52,105],sync:13,tabl:[10,28,30],task:53,tektronix:[27,28,77],temperatur:[24,25],test:[4,57,102],test_suit:[62,69,78],them:28,todo:[46,52,66,72,74,75,77,105,110,114],tps2012:[27,77],trigger:12,triton:[29,72],tutori:[10,114],two:11,typic:10,uhf:30,updat:110,usag:[22,24,25,30,102,109,111],usb_sa124b:75,user:112,using:106,util:[86,87,88,89,90,93],valid:[90,105],valu:110,variabl:2,versu:11,via:28,visainstru:[3,54],wait:55,waveform:28,weinschel:78,weinschel_8320:78,without:[5,26],word:30,workflow:10,write:114,yokogawa:79,you:102,your:2,ziuhfli:68,zn20:26,znb20:74,znb:74}}) \ 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/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/Metadata","_notebooks/Metadata with instruments","_notebooks/Parameters","_notebooks/Qcodes location-format example","_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/QDac and Keysight 34465 sync and buffer","_notebooks/driver_examples/QCodes example with SR830","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with AMI430","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","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.QDev","api/generated/qcodes.instrument_drivers.QuTech","api/generated/qcodes.instrument_drivers.Spectrum","api/generated/qcodes.instrument_drivers.Spectrum.py_header","api/generated/qcodes.instrument_drivers.ZI","api/generated/qcodes.instrument_drivers.agilent","api/generated/qcodes.instrument_drivers.american_magnetics","api/generated/qcodes.instrument_drivers.ithaco","api/generated/qcodes.instrument_drivers.oxford","api/generated/qcodes.instrument_drivers.rigol","api/generated/qcodes.instrument_drivers.rohde_schwarz","api/generated/qcodes.instrument_drivers.signal_hound","api/generated/qcodes.instrument_drivers.stanford_research","api/generated/qcodes.instrument_drivers.tektronix","api/generated/qcodes.instrument_drivers.weinschel","api/generated/qcodes.instrument_drivers.yokogawa","api/generated/qcodes.load_data","api/generated/qcodes.measure.Measure","api/generated/qcodes.new_data","api/generated/qcodes.plots.pyqtgraph.QtPlot","api/generated/qcodes.plots.qcmatplotlib.MatPlot","api/generated/qcodes.station.Station","api/generated/qcodes.utils.command","api/generated/qcodes.utils.deferred_operations","api/generated/qcodes.utils.helpers","api/generated/qcodes.utils.metadata","api/generated/qcodes.utils.validators","api/index","api/private","api/public","changes/0.1.0","changes/0.1.2","changes/0.1.3","changes/0.1.4","changes/0.1.5","changes/0.1.6","changes/0.1.7","changes/index","community/contributing","community/index","community/install","community/objects","examples/index","help","roadmap","start/index","user/configuration","user/faq","user/index","user/intro","user/tutorial"],envversion:53,filenames:["_notebooks/Combined Parameters.rst","_notebooks/Comprehensive Plotting How-To.rst","_notebooks/Configuring_QCoDeS.rst","_notebooks/Creating Instrument Drivers.rst","_notebooks/Datasaving examples.rst","_notebooks/Measure without a Loop.rst","_notebooks/Metadata.rst","_notebooks/Metadata with instruments.rst","_notebooks/Parameters.rst","_notebooks/Qcodes location-format example.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/QDac and Keysight 34465 sync and buffer.rst","_notebooks/driver_examples/QCodes example with SR830.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with AMI430.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.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.QDev.rst","api/generated/qcodes.instrument_drivers.QuTech.rst","api/generated/qcodes.instrument_drivers.Spectrum.rst","api/generated/qcodes.instrument_drivers.Spectrum.py_header.rst","api/generated/qcodes.instrument_drivers.ZI.rst","api/generated/qcodes.instrument_drivers.agilent.rst","api/generated/qcodes.instrument_drivers.american_magnetics.rst","api/generated/qcodes.instrument_drivers.ithaco.rst","api/generated/qcodes.instrument_drivers.oxford.rst","api/generated/qcodes.instrument_drivers.rigol.rst","api/generated/qcodes.instrument_drivers.rohde_schwarz.rst","api/generated/qcodes.instrument_drivers.signal_hound.rst","api/generated/qcodes.instrument_drivers.stanford_research.rst","api/generated/qcodes.instrument_drivers.tektronix.rst","api/generated/qcodes.instrument_drivers.weinschel.rst","api/generated/qcodes.instrument_drivers.yokogawa.rst","api/generated/qcodes.load_data.rst","api/generated/qcodes.measure.Measure.rst","api/generated/qcodes.new_data.rst","api/generated/qcodes.plots.pyqtgraph.QtPlot.rst","api/generated/qcodes.plots.qcmatplotlib.MatPlot.rst","api/generated/qcodes.station.Station.rst","api/generated/qcodes.utils.command.rst","api/generated/qcodes.utils.deferred_operations.rst","api/generated/qcodes.utils.helpers.rst","api/generated/qcodes.utils.metadata.rst","api/generated/qcodes.utils.validators.rst","api/index.rst","api/private.rst","api/public.rst","changes/0.1.0.rst","changes/0.1.2.rst","changes/0.1.3.rst","changes/0.1.4.rst","changes/0.1.5.rst","changes/0.1.6.rst","changes/0.1.7.rst","changes/index.rst","community/contributing.rst","community/index.rst","community/install.rst","community/objects.rst","examples/index.rst","help.rst","roadmap.rst","start/index.rst","user/configuration.rst","user/faq.rst","user/index.rst","user/intro.rst","user/tutorial.rst"],objects:{"qcodes.ArrayParameter":{__init__:[31,1,1,""]},"qcodes.BreakIf":{__init__:[32,1,1,""]},"qcodes.ChannelList":{__init__:[33,1,1,""]},"qcodes.CombinedParameter":{__init__:[34,1,1,""]},"qcodes.Config":{__init__:[35,1,1,""],config_file_name:[35,2,1,""],current_config:[35,2,1,""],current_config_path:[35,2,1,""],current_schema:[35,2,1,""],cwd_file_name:[35,2,1,""],default_file_name:[35,2,1,""],env_file_name:[35,2,1,""],home_file_name:[35,2,1,""],schema_cwd_file_name:[35,2,1,""],schema_default_file_name:[35,2,1,""],schema_env_file_name:[35,2,1,""],schema_file_name:[35,2,1,""],schema_home_file_name:[35,2,1,""]},"qcodes.DataArray":{__init__:[36,1,1,""]},"qcodes.DataSet":{__init__:[37,1,1,""],background_functions:[37,2,1,""]},"qcodes.DiskIO":{__init__:[38,1,1,""]},"qcodes.FormatLocation":{__init__:[39,1,1,""]},"qcodes.Formatter":{__init__:[40,1,1,""]},"qcodes.Function":{__init__:[41,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[42,1,1,""]},"qcodes.IPInstrument":{__init__:[43,1,1,""]},"qcodes.Instrument":{__init__:[44,1,1,""],functions:[44,2,1,""],name:[44,2,1,""],parameters:[44,2,1,""],submodules:[44,2,1,""]},"qcodes.InstrumentChannel":{__init__:[45,1,1,""],functions:[45,2,1,""],name:[45,2,1,""],parameters:[45,2,1,""]},"qcodes.Loop":{__init__:[46,1,1,""]},"qcodes.ManualParameter":{__init__:[47,1,1,""]},"qcodes.MultiParameter":{__init__:[48,1,1,""]},"qcodes.Parameter":{__init__:[49,1,1,""]},"qcodes.StandardParameter":{__init__:[50,1,1,""]},"qcodes.SweepFixedValues":{__init__:[51,1,1,""]},"qcodes.SweepValues":{__init__:[52,1,1,""]},"qcodes.Task":{__init__:[53,1,1,""]},"qcodes.VisaInstrument":{__init__:[54,1,1,""],visa_handle:[54,2,1,""]},"qcodes.Wait":{__init__:[55,1,1,""]},"qcodes.instrument_drivers":{Advantech:[58,4,0,"-"],AlazarTech:[59,4,0,"-"],HP:[60,4,0,"-"],Harvard:[61,4,0,"-"],Keysight:[62,4,0,"-"],Lakeshore:[63,4,0,"-"],QDev:[64,4,0,"-"],QuTech:[65,4,0,"-"],Spectrum:[66,4,0,"-"],ZI:[68,4,0,"-"],agilent:[69,4,0,"-"],american_magnetics:[70,4,0,"-"],devices:[57,4,0,"-"],ithaco:[71,4,0,"-"],oxford:[72,4,0,"-"],rigol:[73,4,0,"-"],rohde_schwarz:[74,4,0,"-"],signal_hound:[75,4,0,"-"],stanford_research:[76,4,0,"-"],tektronix:[77,4,0,"-"],test:[57,4,0,"-"],weinschel:[78,4,0,"-"],yokogawa:[79,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[58,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[58,0,1,""],DAQNaviException:[58,5,1,""],DAQNaviWarning:[58,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[58,2,1,""],check:[58,1,1,""],close:[58,1,1,""],get_idn:[58,1,1,""],port_count:[58,1,1,""],read_pin:[58,1,1,""],read_port:[58,1,1,""],write_pin:[58,1,1,""],write_port:[58,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[59,4,0,"-"],ATS:[59,4,0,"-"],ATS_acquisition_controllers:[59,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[59,0,1,""],AlazarParameter:[59,0,1,""],AlazarTech_ATS:[59,0,1,""],Buffer:[59,0,1,""],TrivialDictionary:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[59,2,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[59,1,1,""],channels:[59,2,1,""],clear_buffers:[59,1,1,""],config:[59,1,1,""],dll_path:[59,2,1,""],find_boards:[59,6,1,""],get_board_info:[59,6,1,""],get_idn:[59,1,1,""],get_sample_rate:[59,1,1,""],signal_to_volt:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[59,1,1,""],free_mem:[59,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[59,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[59,1,1,""],fit:[59,1,1,""],handle_buffer:[59,1,1,""],post_acquire:[59,1,1,""],pre_acquire:[59,1,1,""],pre_start_capture:[59,1,1,""],update_acquisitionkwargs:[59,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[60,4,0,"-"],HP_83650A:[60,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[60,0,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[60,0,1,""],parsestr:[60,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[60,1,1,""],print_modstatus:[60,1,1,""],reset:[60,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[61,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[61,5,1,""],DacChannel:[61,0,1,""],DacReader:[61,0,1,""],DacSlot:[61,0,1,""],Decadac:[61,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{ask:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{__repr__:[61,1,1,""],_ramp_state:[61,2,1,""],_ramp_time:[61,2,1,""],connect_message:[61,1,1,""],get_idn:[61,1,1,""],ramp_all:[61,1,1,""],set_all:[61,1,1,""],write:[61,1,1,""]},"qcodes.instrument_drivers.Keysight":{Keysight_33500B:[62,4,0,"-"],Keysight_33500B_channels:[62,4,0,"-"],Keysight_34465A:[62,4,0,"-"],M3201A:[62,4,0,"-"],M3300A:[62,4,0,"-"],test_suite:[62,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[62,0,1,""],Keysight_33500B_Channels:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[62,0,1,""],Keysight_34465A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[62,1,1,""],prepare:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[62,2,1,""],flush_error_queue:[62,1,1,""],model:[62,2,1,""],ranges:[62,2,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[62,0,1,""],M3300A_DIG:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[62,0,1,""],TestKeysight_M3300A:[62,0,1,""],TestSD_Module:[62,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_PXI_trigger:[62,1,1,""],test_channel_amplitude:[62,1,1,""],test_channel_frequency:[62,1,1,""],test_channel_offset:[62,1,1,""],test_channel_phase:[62,1,1,""],test_channel_wave_shape:[62,1,1,""],test_chassis_and_slot:[62,1,1,""],test_chassis_number:[62,1,1,""],test_clock_frequency:[62,1,1,""],test_open_close:[62,1,1,""],test_serial_number:[62,1,1,""],test_slot_number:[62,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[62,2,1,""],setUpClass:[62,6,1,""],test_chassis_and_slot:[62,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[63,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[63,0,1,""],SensorChannel:[63,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[64,4,0,"-"],QDac_channels:[64,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[64,0,1,""],QDacChannel:[64,0,1,""],QDacMultiChannelParameter:[64,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[64,1,1,""],max_status_age:[64,2,1,""],print_overview:[64,1,1,""],printslopes:[64,1,1,""],read:[64,1,1,""],read_state:[64,1,1,""],snapshot_base:[64,1,1,""],voltage_range_status:[64,2,1,""],write:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[64,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[64,1,1,""]},"qcodes.instrument_drivers.QuTech":{IVVI:[65,4,0,"-"]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[65,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[65,2,1,""],Halfrange:[65,2,1,""],adjust_parameter_validator:[65,1,1,""],ask:[65,1,1,""],get_all:[65,1,1,""],get_idn:[65,1,1,""],get_pol_dac:[65,1,1,""],read:[65,1,1,""],round_dac:[65,1,1,""],set_dacs_zero:[65,1,1,""],set_pol_dacrack:[65,1,1,""],write:[65,1,1,""]},"qcodes.instrument_drivers.Spectrum":{M4i:[66,4,0,"-"],py_header:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.M4i":{M4i:[66,0,1,""],szTypeToName:[66,3,1,""]},"qcodes.instrument_drivers.Spectrum.M4i.M4i":{active_channels:[66,1,1,""],blockavg_hardware_trigger_acquisition:[66,1,1,""],close:[66,1,1,""],convert_to_voltage:[66,1,1,""],gated_trigger_acquisition:[66,1,1,""],get_card_memory:[66,1,1,""],get_card_type:[66,1,1,""],get_error_info32bit:[66,1,1,""],get_idn:[66,1,1,""],get_max_sample_rate:[66,1,1,""],initialize_channels:[66,1,1,""],multiple_trigger_acquisition:[66,1,1,""],reset:[66,1,1,""],set_channel_OR_trigger_settings:[66,1,1,""],set_channel_settings:[66,1,1,""],set_ext0_OR_trigger_settings:[66,1,1,""],single_software_trigger_acquisition:[66,1,1,""],single_trigger_acquisition:[66,1,1,""]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[67,4,0,"-"],spcerr:[67,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[67,3,1,""],GIGA_B:[67,3,1,""],KILO:[67,3,1,""],KILO_B:[67,3,1,""],MEGA:[67,3,1,""],MEGA_B:[67,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[68,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{Scope:[68,0,1,""],Sweep:[68,0,1,""],ZIUHFLI:[68,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{get:[68,1,1,""],names:[68,2,1,""],prepare_scope:[68,1,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[68,1,1,""],get:[68,1,1,""],names:[68,2,1,""],setpoint_names:[68,2,1,""],setpoints:[68,2,1,""],shapes:[68,2,1,""],units:[68,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[68,7,1,""],add_signal_to_sweeper:[68,1,1,""],close:[68,1,1,""],print_sweeper_settings:[68,1,1,""],remove_signal_from_sweeper:[68,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[69,4,0,"-"],E8267C:[69,4,0,"-"],E8527D:[69,4,0,"-"],HP33210A:[69,4,0,"-"],test_suite:[69,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[69,1,1,""],display_clear:[69,1,1,""],init_measurement:[69,1,1,""],reset:[69,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[69,7,1,""],rad_to_deg:[69,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[69,1,1,""],off:[69,1,1,""],on:[69,1,1,""],parse_on_off:[69,1,1,""],rad_to_deg:[69,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[69,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[69,2,1,""],setUpClass:[69,6,1,""],test_firmware_version:[69,1,1,""],test_frequency:[69,1,1,""],test_on_off:[69,1,1,""],test_phase:[69,1,1,""],test_power:[69,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[70,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[70,0,1,""],AMI430_3D:[70,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[70,2,1,""],mocker_class:[70,2,1,""],set_field:[70,1,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430_3D":{get_mocker_messages:[70,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[57,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get:[57,1,1,""],get_instrument_value:[57,1,1,""],set:[57,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[71,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[71,0,1,""],Ithaco_1211:[71,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[71,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[71,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[72,4,0,"-"],IPS120:[72,4,0,"-"],kelvinox:[72,4,0,"-"],mercuryiPS:[72,4,0,"-"],triton:[72,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[72,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],set_remote_status:[72,1,1,""],set_to_fast:[72,1,1,""],set_to_slow:[72,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[72,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[72,1,1,""],examine:[72,1,1,""],get_all:[72,1,1,""],get_changed:[72,1,1,""],get_idn:[72,1,1,""],heater_off:[72,1,1,""],heater_on:[72,1,1,""],hold:[72,1,1,""],identify:[72,1,1,""],leave_persistent_mode:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],run_to_field:[72,1,1,""],run_to_field_wait:[72,1,1,""],set_persistent:[72,1,1,""],to_setpoint:[72,1,1,""],to_zero:[72,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[72,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[72,1,1,""],get_all:[72,1,1,""],get_idn:[72,1,1,""],identify:[72,1,1,""],local:[72,1,1,""],remote:[72,1,1,""],rotate_Nvalve:[72,1,1,""],set_mix_chamber_heater_mode:[72,1,1,""],set_mix_chamber_heater_power_range:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[72,0,1,""],MercuryiPSArray:[72,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[72,1,1,""],rtos:[72,1,1,""],to_zero:[72,1,1,""],write:[72,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[72,1,1,""],set:[72,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[72,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[72,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[73,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[73,0,1,""],clean_string:[73,3,1,""],is_number:[73,3,1,""],parse_multiple_outputs:[73,3,1,""],parse_single_output:[73,3,1,""],parse_string_output:[73,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{SGS100A:[74,4,0,"-"],SMR40:[74,4,0,"-"],ZNB20:[74,4,0,"-"],ZNB:[74,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[74,1,1,""],on:[74,1,1,""],parse_on_off:[74,1,1,""],set_pulsemod_source:[74,1,1,""],set_pulsemod_state:[74,1,1,""],set_status:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[74,1,1,""],do_get_power:[74,1,1,""],do_get_pulse_delay:[74,1,1,""],do_get_status:[74,1,1,""],do_get_status_of_ALC:[74,1,1,""],do_get_status_of_modulation:[74,1,1,""],do_set_frequency:[74,1,1,""],do_set_power:[74,1,1,""],do_set_pulse_delay:[74,1,1,""],do_set_status:[74,1,1,""],do_set_status_of_ALC:[74,1,1,""],do_set_status_of_modulation:[74,1,1,""],get_all:[74,1,1,""],off:[74,1,1,""],off_modulation:[74,1,1,""],on:[74,1,1,""],on_modulation:[74,1,1,""],reset:[74,1,1,""],set_ext_trig:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[74,0,1,""],FrequencySweepMagPhase:[74,0,1,""],ZNB:[74,0,1,""],ZNBChannel:[74,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[74,1,1,""],set_sweep:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[74,1,1,""],clear_channels:[74,1,1,""],display_grid:[74,1,1,""],initialise:[74,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNBChannel":{snapshot_base:[74,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[75,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[75,0,1,""],constants:[75,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[75,1,1,""],abort:[75,1,1,""],check_for_error:[75,1,1,""],closeDevice:[75,1,1,""],configure:[75,1,1,""],default_server_name:[75,6,1,""],dll_path:[75,2,1,""],get_power_at_freq:[75,1,1,""],get_spectrum:[75,1,1,""],initialisation:[75,1,1,""],openDevice:[75,1,1,""],prepare_for_measurement:[75,1,1,""],preset:[75,1,1,""],saStatus:[75,2,1,""],saStatus_inverted:[75,2,1,""],safe_reload:[75,1,1,""],sweep:[75,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[75,2,1,""],TG_THRU_0DB:[75,2,1,""],TG_THRU_20DB:[75,2,1,""],sa124_MAX_FREQ:[75,2,1,""],sa124_MIN_FREQ:[75,2,1,""],sa44_MAX_FREQ:[75,2,1,""],sa44_MIN_FREQ:[75,2,1,""],saDeviceTypeNone:[75,2,1,""],saDeviceTypeSA124A:[75,2,1,""],saDeviceTypeSA124B:[75,2,1,""],saDeviceTypeSA44:[75,2,1,""],saDeviceTypeSA44B:[75,2,1,""],sa_AUDIO:[75,2,1,""],sa_AUDIO_AM:[75,2,1,""],sa_AUDIO_CW:[75,2,1,""],sa_AUDIO_FM:[75,2,1,""],sa_AUDIO_LSB:[75,2,1,""],sa_AUDIO_USB:[75,2,1,""],sa_AUTO_ATTEN:[75,2,1,""],sa_AUTO_GAIN:[75,2,1,""],sa_AVERAGE:[75,2,1,""],sa_BYPASS:[75,2,1,""],sa_IDLE:[75,2,1,""],sa_IQ:[75,2,1,""],sa_IQ_SAMPLE_RATE:[75,2,1,""],sa_LIN_FULL_SCALE:[75,2,1,""],sa_LIN_SCALE:[75,2,1,""],sa_LOG_FULL_SCALE:[75,2,1,""],sa_LOG_SCALE:[75,2,1,""],sa_LOG_UNITS:[75,2,1,""],sa_MAX_ATTEN:[75,2,1,""],sa_MAX_GAIN:[75,2,1,""],sa_MAX_IQ_DECIMATION:[75,2,1,""],sa_MAX_RBW:[75,2,1,""],sa_MAX_REF:[75,2,1,""],sa_MAX_RT_RBW:[75,2,1,""],sa_MIN_IQ_BANDWIDTH:[75,2,1,""],sa_MIN_MAX:[75,2,1,""],sa_MIN_RBW:[75,2,1,""],sa_MIN_RT_RBW:[75,2,1,""],sa_MIN_SPAN:[75,2,1,""],sa_POWER_UNITS:[75,2,1,""],sa_REAL_TIME:[75,2,1,""],sa_SWEEPING:[75,2,1,""],sa_TG_SWEEP:[75,2,1,""],sa_VOLT_UNITS:[75,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[76,4,0,"-"],SIM928:[76,4,0,"-"],SR560:[76,4,0,"-"],SR830:[76,4,0,"-"],SR865:[76,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[76,1,1,""],byte_to_bits:[76,7,1,""],check_module_errors:[76,1,1,""],find_modules:[76,1,1,""],get_module_idn:[76,1,1,""],get_module_status:[76,1,1,""],get_voltage:[76,1,1,""],reset_module:[76,1,1,""],set_smooth:[76,1,1,""],set_voltage:[76,1,1,""],write_module:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[76,0,1,""],VoltageParameter:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[76,0,1,""],SR830:[76,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[76,1,1,""],prepare_buffer_readout:[76,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[76,0,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[77,4,0,"-"],AWG5200:[77,4,0,"-"],AWG520:[77,4,0,"-"],AWGFileParser:[77,4,0,"-"],Keithley_2000:[77,4,0,"-"],Keithley_2400:[77,4,0,"-"],Keithley_2600:[77,4,0,"-"],Keithley_2600_channels:[77,4,0,"-"],Keithley_2700:[77,4,0,"-"],TPS2012:[77,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[77,0,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[77,2,1,""],AWG_FILE_FORMAT_HEAD:[77,2,1,""],all_channels_off:[77,1,1,""],all_channels_on:[77,1,1,""],change_folder:[77,1,1,""],clear_message_queue:[77,1,1,""],create_and_goto_dir:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_event:[77,1,1,""],force_trigger:[77,1,1,""],force_trigger_event:[77,1,1,""],generate_awg_file:[77,1,1,""],generate_channel_cfg:[77,1,1,""],generate_sequence_cfg:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_error:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_sq_mode:[77,1,1,""],get_sqel_loopcnt:[77,1,1,""],get_sqel_trigger_wait:[77,1,1,""],get_sqel_waveform:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],is_awg_ready:[77,1,1,""],load_awg_file:[77,1,1,""],make_and_save_awg_file:[77,1,1,""],make_send_and_load_awg_file:[77,1,1,""],newlinestripper:[77,1,1,""],pack_waveform:[77,1,1,""],run:[77,1,1,""],send_DC_pulse:[77,1,1,""],send_awg_file:[77,1,1,""],send_waveform_to_list:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_sqel_event_jump_target_index:[77,1,1,""],set_sqel_event_jump_type:[77,1,1,""],set_sqel_event_target_index:[77,1,1,""],set_sqel_goto_state:[77,1,1,""],set_sqel_goto_target_index:[77,1,1,""],set_sqel_loopcnt:[77,1,1,""],set_sqel_loopcnt_to_inf:[77,1,1,""],set_sqel_trigger_wait:[77,1,1,""],set_sqel_waveform:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[77,1,1,""],clear_waveforms:[77,1,1,""],delete_all_waveforms_from_list:[77,1,1,""],force_logicjump:[77,1,1,""],force_trigger:[77,1,1,""],get_all:[77,1,1,""],get_current_folder_name:[77,1,1,""],get_filenames:[77,1,1,""],get_folder_contents:[77,1,1,""],get_jumpmode:[77,1,1,""],get_state:[77,1,1,""],goto_root:[77,1,1,""],load_and_set_sequence:[77,1,1,""],make_directory:[77,1,1,""],resend_waveform:[77,1,1,""],return_self:[77,1,1,""],send_pattern:[77,1,1,""],send_sequence2:[77,1,1,""],send_sequence:[77,1,1,""],send_waveform:[77,1,1,""],set_current_folder_name:[77,1,1,""],set_jumpmode:[77,1,1,""],set_sequence:[77,1,1,""],set_setup_filename:[77,1,1,""],start:[77,1,1,""],stop:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[77,0,1,""],parse_output_bool:[77,3,1,""],parse_output_string:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""],write:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[77,0,1,""],Keithley_2600:[77,0,1,""],LuaSweepParameter:[77,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[77,1,1,""],reset:[77,1,1,""],snapshot_base:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[77,1,1,""],display_clear:[77,1,1,""],display_normal:[77,1,1,""],exit_key:[77,1,1,""],get_idn:[77,1,1,""],reset:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get:[77,1,1,""],prepareSweep:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[77,0,1,""],bool_to_str:[77,3,1,""],parsebool:[77,3,1,""],parseint:[77,3,1,""],parsestr:[77,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[77,1,1,""],reset:[77,1,1,""],set_defaults:[77,1,1,""],set_mode:[77,1,1,""],set_mode_volt_dc:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[77,0,1,""],TPS2012:[77,0,1,""],TPS2012Channel:[77,0,1,""],TraceNotReady:[77,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[77,1,1,""],get:[77,1,1,""],prepare_curvedata:[77,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[77,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[57,0,1,""],test_instrument:[57,3,1,""],test_instruments:[57,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[57,2,1,""],setUpClass:[57,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[78,4,0,"-"],test_suite:[78,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[78,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[78,2,1,""],test_attenuation:[78,1,1,""],test_firmware_version:[78,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[79,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[79,0,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{initialise:[79,1,1,""]},"qcodes.measure":{Measure:[81,0,1,""]},"qcodes.measure.Measure":{__init__:[81,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[83,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[83,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[84,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[84,1,1,""]},"qcodes.station":{Station:[85,0,1,""]},"qcodes.station.Station":{"default":[85,2,1,""],__init__:[85,1,1,""],delegate_attr_dicts:[85,2,1,""]},"qcodes.utils":{command:[86,4,0,"-"],deferred_operations:[87,4,0,"-"],helpers:[88,4,0,"-"],metadata:[89,4,0,"-"],validators:[90,4,0,"-"]},qcodes:{ArrayParameter:[31,0,1,""],BreakIf:[32,0,1,""],ChannelList:[33,0,1,""],CombinedParameter:[34,0,1,""],Config:[35,0,1,""],DataArray:[36,0,1,""],DataSet:[37,0,1,""],DiskIO:[38,0,1,""],FormatLocation:[39,0,1,""],Formatter:[40,0,1,""],Function:[41,0,1,""],GNUPlotFormat:[42,0,1,""],IPInstrument:[43,0,1,""],Instrument:[44,0,1,""],InstrumentChannel:[45,0,1,""],Loop:[46,0,1,""],ManualParameter:[47,0,1,""],MultiParameter:[48,0,1,""],Parameter:[49,0,1,""],StandardParameter:[50,0,1,""],SweepFixedValues:[51,0,1,""],SweepValues:[52,0,1,""],Task:[53,0,1,""],VisaInstrument:[54,0,1,""],Wait:[55,0,1,""],combine:[56,3,1,""],instrument_drivers:[57,4,0,"-"],load_data:[80,3,1,""],new_data:[82,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":21,"001_":21,"001_13":39,"001_unicorn_2016":9,"002_rainbow_2016":9,"00370000e":20,"005_rainbow_2016":9,"006_":27,"007_":27,"007_testsweep_14":10,"008_2d_test_14":10,"009_testsweep_15":14,"009_unicorn_2050":9,"01084000e":20,"010_mockloop_hdf5_test_15":4,"011_":30,"011_mockloop_hdf5_test_15":4,"012_":30,"013_":15,"013_n_1000_setget_11":13,"014_n_1000_setget_11":13,"015_n_1000_setget_11":13,"016_n_1000_setget_11":13,"016_test_missing_attr_15":4,"01763000e":20,"017_mockparabola_run_15":4,"017_n_1000_setget_11":13,"018_mockparabola_run_15":4,"018_n_1000_setget_11":13,"018_testsweep_12":11,"019_n_1000_setget_11":13,"019_testsweep_12":11,"020_n_1000_setget_11":13,"020_testsweep_12":11,"021_testsweep_12":11,"025_":14,"026_":14,"027_":14,"028_":14,"029_":14,"02s":26,"030_":14,"031_":14,"032_":14,"033_":14,"034_":14,"035_":14,"036_":14,"03d":28,"06s":11,"073_":26,"076_":26,"076_n_100_setget_16":12,"077_":26,"077_n_100_setget_16":12,"078_":26,"078_n_100_setget_16":12,"079_":26,"079_n_100_setget_16":12,"07s":14,"080_":26,"080_n_100_setget_16":12,"081_n_100_setget_16":12,"082_n_100_setget_16":12,"083_":26,"083_n_100_setget_16":12,"0848e":7,"084_":[12,26],"085_":[12,26],"086_":[12,26],"087_":[12,26],"088_":[12,26],"089_":[12,26],"090_":[12,26],"091_":12,"092_n_1000_setget_16":12,"093_n_1000_setget_16":12,"094_n_1000_setget_16":12,"095_n_1000_setget_16":12,"096_n_1000_setget_16":12,"097_n_1000_setget_16":12,"098_n_1000_setget_16":12,"0994e":21,"099_n_1000_setget_16":12,"09s":21,"0x1c10ee73a58":14,"0x212e0582320":30,"0x7ebf668":7,"0x7ebf6a0":7,"0x7ecd5c0":7,"0x7ed0668":20,"0x7edd2e8":7,"0x7f26d30":7,"0x7f920ec0eef0":110,"0x7fd834e99ea0":0,"0x818a908":16,"0x8d11978":7,"100_":12,"100e":12,"100e3":26,"100e6":62,"100x100":11,"101_":12,"102_":12,"103_":12,"104_":12,"105_":12,"106_":12,"107_":12,"108_n_100_setget_16":12,"109_n_100_setget_16":12,"10e":[27,30],"10e6":[16,30],"10mhz":75,"10v":50,"110_n_100_setget_16":12,"111_n_100_setget_16":12,"112_n_100_setget_16":12,"113_n_100_setget_16":12,"114_n_100_setget_16":12,"115_n_100_setget_16":12,"116_":12,"117_":12,"118_":12,"119_":12,"11s":22,"1206e":21,"120_":12,"121_":12,"122_":12,"123_":12,"124_":12,"125_":12,"126_":12,"127_":12,"128_":12,"129_":12,"130_":12,"131_":12,"132_":12,"133_":12,"134_":12,"135_":12,"136_":12,"137_":12,"138_":12,"139_":12,"13_testsweep":0,"13_testsweep_002":0,"140_":12,"141_":12,"142_":12,"143_":12,"144_":12,"145_":12,"146_":12,"147_":12,"148_":12,"149_":12,"14s":13,"150_":12,"151_":12,"152_":12,"153_":12,"154_":12,"155_":12,"156_":12,"157_":12,"158_":12,"159_":12,"15_rainbow_test":39,"15s":[12,26],"160_":12,"161_":12,"16243e":7,"162_":12,"163_":12,"164_":12,"165_":12,"166_":12,"167_":12,"168_":12,"169_":12,"16_13":9,"16s":[15,26],"170_":12,"171_":12,"172_":12,"173_":12,"174_":12,"175_":12,"176_":12,"177_":12,"178_":12,"179_":12,"180_":12,"181_":12,"182_":12,"183_":12,"184_":12,"185_":12,"186_":12,"187_":12,"188_":12,"189_":12,"190_":12,"191_":12,"192_":12,"193_":12,"194_":12,"195_":12,"196_":12,"197_n_1000_setget_16":12,"198_n_1000_setget_16":12,"199_n_1000_setget_16":12,"1b1536e1a2e4":30,"1ct":27,"1e3":[22,30],"1e6":[26,30],"1ms":106,"20000000e":28,"200_n_1000_setget_16":12,"200e3":26,"200uw":72,"2012b":[27,77],"201_n_1000_setget_16":12,"202_n_1000_setget_16":12,"203_n_1000_setget_16":12,"204_n_1000_setget_16":12,"205_":12,"206_":12,"207_":12,"208_":12,"209_":12,"20e":30,"20ma":58,"20mw":72,"20uw":72,"210_":12,"211_":12,"212_":12,"250khz":75,"25e":[25,27],"25gb":16,"2614b":[7,12,21,77],"27041e":7,"28539f77dfd3":2,"2d_test":10,"2e3":22,"2min":26,"2mw":72,"2uw":72,"30_alazartest":16,"33500b":[62,97,106],"33522b":22,"34400a":106,"34401a":7,"34410a":7,"34411a":106,"34460a":62,"34461a":62,"34465a":[14,62,97,99,106],"34470a":62,"348s":4,"352161306002045e":23,"36s":26,"3x2":8,"42637000e":20,"4271e":7,"44s":27,"44xx":[66,96],"4634e":7,"4port":26,"50e":[22,27],"52608e":24,"541_13":9,"54972e":21,"56s":26,"57s":17,"5e9":26,"60s":17,"62s":17,"69014000e":20,"6955e":21,"6a5acd":28,"6e6":26,"8133a":[60,97],"83650a":97,"844e846b99a2":14,"93s":11,"94851000e":20,"95535000e":20,"96216000e":20,"98941000e":20,"99618000e":20,"9e3":26,"\u03bca":[24,25],"\u03bcv":6,"abstract":113,"boolean":[65,77,99,110],"break":[3,10,32,76,77,101,102],"byte":[59,65,76,77],"case":[2,3,8,16,28,30,41,46,50,57,59,84,102,109,113,114],"char":64,"class":[1,4,8,9,18,20,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,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,81,83,84,85,86,87,88,89,90,102,105,106,114],"default":[1,2,3,5,8,10,24,25,26,31,35,36,37,39,41,42,43,46,48,49,54,57,59,61,62,64,65,71,72,74,76,77,80,82,83,84,85,94,95,100,102,105,112],"enum":[2,3,18,20,30,50,77,105,110],"export":72,"final":[10,14,16,21,28,30,40,41,50,109,113],"float":[3,13,37,41,50,51,57,61,65,66,68,70,72,73,74,76,77,82,84,99],"function":[0,1,6,7,8,9,10,14,16,17,20,21,27,28,32,34,37,44,45,50,51,53,56,58,59,62,65,66,68,69,72,73,74,75,76,77,78,79,87,88,90,99,100,102,105,106,108,113,114],"goto":[28,77],"import":[0,1,2,3,4,5,6,7,8,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,29,30,77,99,102,106,110,113,114],"int":[1,8,13,14,28,30,31,36,41,43,48,50,51,57,61,62,64,65,66,68,72,74,76,77,105],"long":[26,31,48,49,77,102],"m\u00e6lkeb\u00f8tt":7,"new":[1,2,3,8,10,16,21,30,36,39,40,41,42,77,80,82,84,101,108,109,110,113,114],"null":[58,110],"public":[91,102,109],"return":[0,1,3,5,8,10,13,14,17,18,21,24,25,26,28,30,31,32,33,39,41,48,49,50,51,57,58,59,61,62,64,65,66,68,71,72,73,74,75,76,77,80,81,82,105,113,114],"short":[36,113],"static":[43,44,54,68,69,76],"super":[3,8,62,114],"switch":[11,26,30,70,72,77,110,113],"true":[2,3,6,7,14,18,19,20,24,25,26,30,31,33,36,42,43,48,49,54,61,62,64,65,66,70,74,75,76,77,83,85,110,113],"try":[0,2,3,10,13,14,17,18,22,24,26,102,113],"var":42,"while":[1,10,18,20,27,58,77,113],AND:77,ATS:[16,57],Adding:102,And:[3,8,26,30,110,114],Are:[82,113],Axes:1,BUS:[13,22],BUT:102,But:[0,2,3,26,30,55,105],Doing:26,For:[1,2,3,5,8,10,17,22,26,27,28,30,31,39,42,48,50,54,58,59,61,66,68,77,83,102,107,109,110,113,114],Has:3,IPS:[72,106],Its:[110,113],NOT:[30,39,57,68,102],Not:[2,31,48,49,58,85,102,110],ONE:102,One:[1,2,30,68,108,113,114],POS:[14,22,65],PRs:102,SRS:97,THE:[30,106],THERE:106,TPS:[27,97,98],That:[3,51,52,77,114],The:[0,1,2,3,5,11,12,13,14,15,16,17,19,21,22,24,25,26,27,28,30,31,33,34,36,39,41,42,43,46,48,49,51,53,54,56,57,58,59,61,62,64,65,66,68,72,75,76,77,79,83,84,102,104,106,109,110,113,114],Then:[15,26,28,30,102,109,114],There:[1,3,10,19,21,27,28,62,102,105,110],These:[24,25,42,59,75,106,113],Tis:62,Use:[31,37,48,49,59,77,102,108,110],Used:73,Uses:39,Using:[106,112],Will:[36,48,110],With:[17,26,113],_10:26,_11:[26,30],_13:15,_14:21,_15:14,_16:[12,27],__call__:[14,39],__class__:[0,6,7,10,16],__del__:59,__doc__:[30,31,41,48,49],__enter__:[18,20],__exit__:[18,20],__getattr__:[33,64],__init__:[3,8,18,20,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,61,81,83,84,85,114],__iter__:[51,52],__name__:30,__next__:52,__repr__:61,_alazar:59,_assigned_fg:14,_ats_dll:3,_attenu:57,_bdaqctrl:58,_call:14,_channel:3,_check_for_error:18,_check_respons:18,_coil_const:17,_count:8,_current_r:17,_current_ramp_limit:17,_error_queu:18,_expect_error:18,_get:114,_get_cmd:72,_get_temp_channel:29,_handl:3,_indic:8,_instrument:[3,14,18],_instrument_list:114,_measured_param:3,_mode:77,_poll:18,_ramp_stat:61,_ramp_tim:61,_raw:3,_read_cmd:72,_recv:72,_response_queu:18,_return_handl:14,_run_loop:14,_run_wrapp:14,_save_v:[3,31,48,49],_scale_param:8,_send:72,_set:114,_set_async:114,_set_both:114,_setget:[12,13],_step:76,_syncoutput:14,_t0:61,_trace:26,_val:8,_win32:58,_write_cmd:72,_write_respons:64,a118e754f9e:18,abil:[74,95],abl:[17,62,113,114],abort:[13,75],abort_measur:13,about:[3,16,18,25,26,30,77,102,105,107,108,110,114],abov:[1,26,28,58,77,113],abs:[17,32],absolut:[30,38,77,102],accept:[3,37,38,40,41,42,53,72,113],acces:[10,28],access:[1,33,58],accommod:77,accompani:102,accord:[3,77,109],accordingli:14,account:[57,61,102],accur:40,achiev:28,acknowledg:43,acquir:[3,12,14,15,16,21,26,30,59,66,68,106,113],acquisiion:59,acquisit:[13,16,26,30,59,66,68,75,102,106,113],acquisition_conrol:59,acquisition_control:[16,59],acquisition_controller_acquisit:16,acquisitioncontrol:59,acquisiton:[16,59],acquist:59,across:[24,25,113],act:[3,36,50,57],action:[1,3,5,6,8,14,18,29,32,36,46,77,81,85,91,105,106,108,113,114],action_indic:[6,14,36],activ:[1,6,66,72,74,105,109],active_channel:66,active_children:9,active_loop:6,activeloop:[6,46,105],actual:[1,3,11,17,57,59,65,102,113],acut:0,adapt:[51,52],adaptivesweep:[52,105],adawpt:52,add:[1,2,3,4,6,9,10,13,14,15,21,26,27,30,37,39,43,44,54,64,65,68,69,74,75,76,77,79,82,83,84,85,95,96,99,102,105,110],add_arrai:[36,37,82],add_channel:[26,74],add_compon:[4,21,85],add_funct:[3,44,45,102],add_paramet:[3,10,44,45,102,113,114],add_signal_to_sweep:[30,68],add_submodul:44,add_subplot:28,added:[1,17,26,31,36,37,68,77,82,83,84,85,102,113],adding:[1,9,30,106],addit:[1,3,28,43,44,54,71,72,76,108,110,113],addition:[1,30,66,68],address:[3,7,17,23,25,29,33,43,54,60,61,62,63,64,65,69,70,72,73,74,76,77,78,79,102,113],adjust:[17,26,65,113],adjust_parameter_valid:65,adopt:108,adriaan:75,advantag:1,advantech:[57,97],advantech_pcie_1751:58,aeroflex:[3,78],affect:[30,38,68,102],after:[1,6,10,14,42,46,47,50,53,59,66,72,77,95,102,110,113],again:[6,16,113],against:105,aggeg:0,aggreag:0,aggreg:[34,56,106,114],agi:[7,11,18,20],agil:[7,20,22,57,97,102,106],agilent1:[7,18,20],agilent2:[7,18,20],agilent_2:7,agilent_34400a:[7,11,18,20,57],agilent_34401a:69,agilent_34410a:69,agilent_34411a:69,agilent_e8527d:[69,102],agilent_hp33210a:69,agilent_volt:11,agreement:21,agument:32,ahead:[30,51,52],aid:113,aim:[1,50],airbnb:102,aka:102,akin:113,ala:108,alazar1:16,alazar:[3,16,59,97],alazar_driv:59,alazar_nam:[16,59],alazar_serv:16,alazargetboardbysystemid:3,alazarparamet:[3,16,59],alazarstartcaptur:59,alazartech:[3,16,57],alazartech_at:[3,16,59],alazartech_ats9870:[3,16,59],alazartest:16,alex:102,alexcjohnson:102,alia:[69,70,78],all:[1,2,3,8,9,10,12,16,19,21,24,25,26,28,30,31,33,34,36,39,40,41,42,44,45,48,49,51,54,56,57,58,59,61,64,68,69,72,73,74,75,76,77,84,85,100,102,105,106,108,109,110,113,114],all_channels_off:77,all_channels_on:77,alloc:[16,59],alloc_buff:[16,59],allocated_buff:[16,59],allow:[1,3,17,24,25,33,43,47,49,51,52,54,68,72,76,77,82,102,113],almost:113,alon:[17,36],along:[1,17,31,48,49,75,83,84,102,105,113],alongsid:8,alpha:[28,65],alreadi:[31,36,40,48],also:[1,2,3,6,10,16,17,26,27,28,32,36,38,40,42,50,51,55,59,61,66,71,72,76,77,82,99,102,105,108,109,110,113],altern:28,although:[3,28,68,102,109],alwai:[1,2,5,10,15,27,30,42,48,61,64,68,76,77,102,113],always_nest:42,amen:102,american:[17,70],american_magnet:[17,57],ami430:[57,97,100,106],ami430_2d:70,ami430_3d:[17,70],ammet:113,amodel:[6,9],among:[39,114],amp:[3,17,21,71,76],amper:70,amplifi:[3,10,71,76],amplitud:[6,8,9,15,24,25,30,59,74,77,114],anaconda3:[14,18],anaconda:[108,109],analog:64,analog_amplitude_n:77,analog_direct_output_n:77,analog_filter_n:77,analog_high_n:77,analog_low_n:77,analog_method_n:77,analog_offset_n:77,analys:74,analysi:[102,113],analyz:108,angl:17,angle_deg:69,angle_rad:69,ani:[0,2,3,8,9,10,16,17,18,20,23,24,25,26,28,31,34,36,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,56,59,61,68,76,77,81,85,102,105,108,113,114],anoth:[3,8,10,11,28,39,51,108,113],answer:[61,65],anyth:[10,13,19,77,105],anywai:8,ap_tim:13,apertur:[11,13],api:[1,68,91,93,108,110,113],api_level:68,apparatu:105,appear:[62,77],append:[17,18,28,36,51,114],appli:[17,19,24,25,37,41,47,50,77],appropri:[1,59,113],approv:102,arang:3,arbitrari:[41,42,48,69,73,77,105,108],architectur:[3,108,114],arctan:28,arg:[1,2,3,14,18,31,41,48,51,53,62,64,72,83,84,114],arg_count:14,arg_pars:41,argument:[0,1,5,9,10,14,32,36,37,40,41,48,53,70,105],around:[26,28,36,75,102,113],arrai:[0,1,4,6,8,10,11,12,13,14,15,16,20,21,26,27,28,30,31,36,37,40,48,59,66,68,73,74,76,77,81,82,84,95,105,106,113,114],array_count:8,array_id:[0,1,4,6,8,10,11,12,13,14,15,16,21,26,27,30,36,40,114],arraycount:8,arraygett:5,arraymeasur:62,arrayparamet:[3,12,62,74,76,77,91,106],arriv:113,arrow:109,ask:[3,13,18,29,30,50,61,65,72,76,77,102,113],ask_modul:76,ask_raw:3,asopc:59,asopc_typ:[16,59],asrl10:23,asrl1:27,asrl2:54,asrl4:[11,72],asrl6:[14,24,25],asrl7:13,asrl:65,asrln:61,assert:[17,76,77],assertalmostequ:62,assign:[14,24,25,64,77,102],associ:113,assum:[3,26,28,52,64,109,113],assumpt:[30,77],async:112,asynchron:10,atob:72,ats9870:[3,16,57],ats_acquisition_control:[16,57],ats_contr:16,ats_inst:16,ats_onwork:106,atsapi:[3,59],atsdriv:16,attach:[1,33,37,44,45,46,57,62,64,76,77],attempt:61,attent:[102,106],attenu:[3,24,25,78],attn:3,attribut:[1,30,36,37,40,68,85,102,113],author:102,auto:[30,39],autom:108,automat:[1,3,8,26,30,39,58,64,74,96,100,102,108,110],autorang:14,autoreload:2,autoscal:26,aux_in1:15,aux_in2:15,aux_in3:15,aux_in4:15,aux_out1:15,aux_out2:15,aux_out3:15,aux_out4:15,auxiliari:102,avail:[1,3,22,28,30,57,58,62,64,69,74,77,91,93,108,113],avanc:112,averag:[26,30,59,66,75,77],averageandraw:[5,6,9],averagegett:[6,9],avg:[26,75],avoid:[13,17],awar:102,awg1:28,awg5014:[57,96,98,106],awg5200:[57,100],awg520:57,awg:[10,62,77,106],awg_fil:77,awg_file_format_channel:77,awg_file_format_head:77,awgfil:28,awgfilepars:[28,57],awgfilepath:77,ax1:28,ax2:28,ax3:28,ax4:28,axes:[1,23,26,72],axes_api:1,axi:[1,17,26,30,31,36,42,48,49,68,113],axs:30,babi:114,back:[3,10,17,26,28,52,61,72,77,102,108,109,110,113,114],backend:[1,54],background:[6,18,20,113],background_color:83,background_funct:37,backslash:102,backward:38,bad:2,bandwidth:[16,26,30,68],bar:[102,110],bare:[43,51],base0:114,base1:114,base2:114,base:[1,8,12,14,17,33,36,37,38,39,40,44,45,52,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,83,102,106,110,113,114],base_loc:[2,6,38],baseplot:83,baseserv:114,basi:48,basic:[3,27,42,59,65,108],basicconfig:14,baud:[61,76],bdaqctrl:58,bear:102,becam:6,becaus:[1,2,3,27,36,37,40,58,59,62,102,109,113,114],becom:[16,28,72,105,113],been:[3,8,17,27,28,68,75,77,113,114],beep:3,befor:[2,3,10,11,14,15,17,26,27,30,39,43,46,53,57,58,59,65,68,72,77,102,110,113],beforehand:57,begin:6,begin_tim:61,behav:102,behavior:[6,9,16,18,20,23,102,113],behaviour:[21,68],behind:30,being:[2,10,16,28,36,75,77],belong:[31,48,49,50,74],below:[1,2,3,10,12,28,102,105,106],ben:17,benchmark:[11,100],best:[3,102],beta:[3,27,59,62,69,72,74,75,76,77],better:[3,13,41,100,102,113],between:[1,3,22,37,40,43,51,68,77,82,83,84],beyond:77,bid:58,bidirect:[3,50],binari:[12,58,77],binascii:27,bind:30,biodaq:58,bip:65,bit:[13,58,59,76,77],bitlevel0:66,bitlevel1:66,bits_per_sampl:[16,59],black:83,blame:[24,25,77],blank:[42,102],blind:10,block:[10,18,42,65,66,114],blockavg_hardware_trigger_acquisit:66,board:[3,16,24,25,59],board_id:[3,16,59],board_kind:[16,59],bodi:102,boilerpl:[3,41],bold:105,bool:[3,31,33,36,43,48,49,61,62,64,65,66,70,71,74,76,77,82,85],bool_to_str:77,born:102,bot:[98,99],both:[1,3,8,11,26,30,38,49,62,74,76,77,102,105,108,109,113,114],bottom:[65,109],bound:[10,113],bracket:102,branch:102,breakif:[10,91,113],breviti:3,brittl:113,broader:108,broken:[2,50],brows:[109,114],buf:59,buffer:[16,58,59,66,76,98,106],buffer_acq_mod:15,buffer_list:3,buffer_npt:15,buffer_paus:15,buffer_reset:15,buffer_sr:15,buffer_start:15,buffer_timeout:[16,59],buffer_trig_mod:15,buffers_per_acquisit:[16,59],bug:103,build:[28,30,68,77,96,97,102,109,113],build_sweep:[30,68],built:[1,8,30],builtin:41,bunch:30,burden:113,burst:106,busi:58,button:[77,102],bwlimit1:16,bwlimit2:16,bwlimit:[16,59],bwmode:30,byref:14,byte_to_bit:76,byte_to_value_dict:[3,59],c_amp_in:[3,71],c_set:8,cabl:[77,113],calc:66,calc_set_point:77,calcul:[17,68,105,113],calibr:[57,59],call:[2,3,8,9,14,17,18,21,26,27,28,30,31,34,36,37,39,40,41,43,48,49,53,54,56,58,59,61,64,65,68,75,76,77,79,82,102,113],call_by_str:14,call_by_str_parsed_out:14,call_cmd:[3,41],callabl:[10,18,32,34,37,39,46,53,55,56,82,98,113],callsig:28,came:59,camp1:20,camp:[7,20],can:[0,1,2,3,8,9,13,15,17,21,22,24,25,26,28,30,31,32,35,36,37,39,41,42,46,48,49,50,51,52,55,58,59,61,62,65,66,68,72,73,74,77,81,82,83,84,85,102,105,106,107,108,110,113,114],cancel:[24,77],cannot:[4,17,26,31,47,48,50,58,76,77,113],canva:1,capabl:[19,105,108,113],capit:102,captur:[10,26,59],card:[3,16,58,59,62,66,97],cardid:66,care:[2,3],cartesian:[17,113],cartesian_measur:17,cast:[13,28,41],caus:[24,25,66,76],caution:[77,106],caveat:113,cdll:3,cell:28,center:[26,75],certain:[10,17,30,59,72],cesr:76,cffi:58,ch01:25,ch01_i:24,ch01_irang:24,ch01_slope:[14,24],ch01_sync:14,ch01_sync_delai:14,ch01_sync_dur:14,ch01_v:[13,14,24],ch01_vrang:24,ch02:[24,25],ch02_slope:24,ch02_sync:24,ch02_v:[14,24],ch0_offset:19,ch0_voltag:19,ch1:[10,77],ch1_amplitud:22,ch1_amplitude_unit:22,ch1_burst_mod:22,ch1_burst_ncycl:22,ch1_burst_phas:22,ch1_burst_polar:22,ch1_burst_stat:22,ch1_curvedata:27,ch1_databuff:15,ch1_displai:15,ch1_frequenc:22,ch1_function_typ:22,ch1_offset:22,ch1_output:22,ch1_posit:27,ch1_ramp_symmetri:22,ch1_ratio:15,ch1_scale:27,ch1_state:27,ch1_trigger_count:22,ch1_trigger_delai:22,ch1_trigger_slop:22,ch1_trigger_sourc:22,ch1_trigger_tim:22,ch1_voltag:19,ch2:[10,27,77],ch2_curvedata:27,ch2_databuff:15,ch2_displai:15,ch2_offset:28,ch2_posit:27,ch2_ratio:15,ch2_scale:27,ch2_state:27,ch3_state:28,ch41_v:11,ch42_v:11,cha0:57,chain:113,chan0:[6,9,57],chan0_set:6,chan1:[6,9,30,32],chan1_set:6,chan2:[6,9,30],chan:64,chan_alia:29,chan_go:14,chan_list:33,chan_reset_1:14,chan_reset_2:14,chan_reset_3:14,chan_typ:33,chanc:59,chandata:30,chang:[1,3,10,16,19,24,25,27,30,31,35,38,48,50,65,68,76,77,101,102,106,108,109,110,113],change_autozero:77,change_displai:77,change_fold:77,channel2:66,channel:[3,6,7,10,11,15,16,18,19,20,21,27,28,33,44,45,54,58,59,61,62,63,64,65,66,68,72,74,76,77,98,99,105,106,107,113],channel_0:66,channel_1:66,channel_a:59,channel_cfg:77,channel_rang:[16,59],channel_range1:16,channel_range2:16,channel_select:[16,59],channel_skew_n:77,channel_state_n:77,channelbuff:76,channelis:[21,64,77],channelist:33,channellist:[64,91],channum:[62,64],charact:[31,42,43,48,49,54,72,102],characterist:113,chassi:62,check:[3,17,55,58,72,74,76,83,84,102,107,111,113,114],check_error:14,check_for_error:75,check_module_error:76,check_schema:2,checklist:102,chime:102,chnum:28,choic:[26,59],choos:[28,65,68,74,77,113],chore:102,chosen:68,chx:10,clariti:3,classic:13,classmethod:[57,59,62,69,75],clean:[73,77,95,102],clean_str:73,cleanup:[40,100],clear:[14,15,26,27,28,54,62,76,77],clear_buff:59,clear_channel:[26,74],clear_error:69,clear_message_queu:[27,28,77],clear_waveform:77,clearli:102,clever:103,cli:108,click:[1,109],clim:1,clip:113,clock:[3,16,59,77],clock_edg:[16,59],clock_edge_ris:16,clock_frequ:62,clock_sourc:[3,16,59,77],clone:102,close:[1,4,11,17,19,21,24,25,26,27,28,29,30,58,66,68,72,100,102],close_ev:1,close_fil:40,closedevic:75,cls:2,cmd:[3,14,61,64,76,77],cmd_str:14,code:[1,3,30,41,50,60,61,66,69,76,85,103,108,113],codebas:108,coil:[17,70],coil_const:[17,70],col:74,cold:72,collect:[8,51,59,105,108,113],colloqui:77,colon:[72,102],color:[1,28,30,83],colorbar:[1,36],column:[1,42,113],com2:54,com:[66,69,78,102,104,106,109],combin:[34,37,42,75,80,82,91,99,105,106,112,113],combined_set:0,combinedparamet:[0,91],come:[42,102,113],comma:[72,77],command:[1,3,12,13,14,16,27,28,30,41,50,58,61,64,65,66,69,72,74,76,77,91,102,105,108,113],comment:[3,42,58,102],commit:[59,107,108],common:[3,72,74,77,105,113],commonli:[69,74,77],commun:[3,17,43,54,59,61,65,72,76,105,107,113],communc:17,compani:3,compar:[11,26,102],compat:[46,53,68,77,108,113],compatibil:77,compens:[66,77],complain:[10,113],complet:[1,14,28,36,37,58,66,77,113,114],complex:[3,26,74,102,113],compliant:102,complic:[41,113],compon:[7,48,59,85,108,113],composit:[14,113],comprehens:[102,106],comput:[1,21,68,72,102,109,113],con:97,concaten:[64,102],concept:114,conclus:13,concurr:113,conda:109,condit:[3,10,32,58,72,77,113],config:[3,16,59,77,91,99,102,106,112],config_file_nam:35,configur:[16,30,35,47,58,59,75,77,94,106,108,112,113],conflict:[58,113],confusingli:114,connect:[3,11,12,13,14,15,16,17,18,21,22,24,25,26,27,28,30,54,59,61,62,68,72,76,77,85,105,113],connect_messag:[3,61,62,64],consequ:113,consid:[10,21,77,102],consist:[10,24,25,26,65,75,77,81,102,113],consol:66,consolid:108,constant:[5,10,17,30,65,68,70,75],construct:[5,26,32,36,43,50,114],constructor:[3,31,36,48,83,84],consult:113,cont_meas_off:26,cont_meas_on:26,conta:68,contact:100,contain:[3,5,6,10,21,26,28,33,36,37,39,42,50,58,59,61,64,68,69,72,74,76,77,85,102,105,110,113,114],content:[36,106],context:113,contian:59,contin:77,contini:26,continu:[28,30,46,77,85,102],contrast:102,contribut:[3,103,107],contributor:102,control:[2,3,9,16,18,19,20,21,23,24,25,26,28,30,59,61,63,65,70,72,74,77,97,108,110,113,114],controlthermometri:72,conveni:[77,85,113],convent:3,convers:[77,102],convert:[3,17,36,38,59,64,66,72,76,77,113],convert_to_voltag:66,coordin:17,copi:[2,18,36,51,65,68,113],core:[0,1,6,7,9,14,15,16,18,20,23,26,27,29,30,102,106,107,108,110],corner:[9,16,18,20,23],correct:[1,3,17,19,28,30,40,76,99],correctli:17,correspond:[1,3,11,15,19,21,28,42,59,61,68,74,76,77],cosmet:[95,96],cost:65,could:[3,9,14,28,102,113],count:[8,14,41,58,64,77,114],counter:[9,10,39,58],coupl:[3,16,30,59,66,77],coupling1:16,coupling2:16,cours:[102,113],cov:102,cover:[102,114],coverag:[102,108],coveragerc:102,cpld:59,cpld_version:[16,59],cpu:26,crash:[59,108],creat:[1,4,7,8,9,10,16,18,20,21,33,36,40,46,48,51,57,59,61,62,68,69,72,77,78,81,82,105,106,109,110,113,114],create_and_goto_dir:77,creation:[10,114],creator:102,critic:[2,110],cryo:97,ctwrapper:14,ctype:3,cumbersom:64,curernt:114,curr:[3,7,12,20,21,71,76],current:[2,3,6,7,12,17,20,21,24,25,26,27,28,30,35,37,38,39,58,62,64,68,70,71,72,76,77,79,80,82,85,102,110,113,114],current_config:[2,35],current_config_path:35,current_field:17,current_r:[17,70],current_ramp_limit:[17,70],current_schema:[2,35],current_target:17,current_to_field:17,current_valu:14,currentparamet:[3,7,20,71],curv:[12,77,106],custom:[8,35,38,106],customawgfil:77,customis:64,cutoff_hi:76,cutoff_lo:76,cwd:35,cwd_file_nam:[2,35],cycl:[7,16,18,20,21,22,62,113],cylindirc:17,cylindr:17,cylindrical_measur:17,d_bdaq_c_interfac:58,dac1:5,dac2:5,dac3:5,dac:[5,10,57,61,65,99],dac_ch1_set:10,dac_ch2_set:10,dac_commands_v_13:64,dac_delai:65,dac_max_delai:65,dac_step:65,dacchannel:61,dacexcept:61,dacnam:65,dacread:61,dacslot:61,dai:102,dancer:102,daq:30,daqnavi:58,daqnaviexcept:58,daqnaviwarn:58,dark:83,dat:42,data1:26,data2:[4,9,27],data:[0,1,2,3,5,6,8,11,12,13,14,15,16,18,20,21,26,27,30,36,37,38,39,40,42,46,48,50,58,59,64,65,66,68,74,77,80,82,83,84,91,99,102,105,106,108,113,114],data_arrai:6,data_buff:14,data_l:4,data_set:[2,4,6,10,14,40,77,94],data_v:50,dataarrai:[0,1,6,8,20,31,37,40,48,82,91,105,113],dataflow:59,dataformat:106,dataformatt:102,datamanag:[105,113],datamin:113,datamod:[0,6,8,9,11,16,20,30,114],datapoint:77,datasav:106,dataserv:[9,37,105,113],dataset:[0,1,2,4,5,6,8,9,10,11,12,13,14,15,16,20,21,26,27,30,36,39,40,42,48,62,77,80,81,82,91,105,112,114],date:[9,10,39,59],datetim:39,daunt:102,dbm:[26,74],dc_channel_numb:77,dc_output_level_n:77,ddl:58,deacadac:61,deadlin:18,dealt:113,debug:[2,4,27,30,110,113,114],debugmod:14,deca:19,decadac:[57,98,100,106],decadec:61,decid:[2,113,114],decim:[16,59],declar:58,decod:3,decoupl:102,decreas:11,deem:68,deeper:18,def:[0,1,2,3,8,10,13,14,17,18,20,72,114],default_current_ramp_limit:70,default_figs:1,default_file_nam:35,default_fmt:110,default_formatt:[37,80,82],default_io:[37,80,82],default_parameter_nam:100,default_server_nam:75,defaulttestload:4,defer:32,deferred_oper:91,defin:[0,2,3,9,26,28,30,31,41,47,48,49,50,62,71,72,76,77,102,105,106,110,113,114],definit:[9,30,41,113],deg:15,deg_to_rad:69,degre:[22,30,49],del:3,delai:[0,1,6,10,14,16,17,25,30,46,50,52,55,65,74,113,114],delay_in_points_n:77,delay_in_time_n:77,deleg:36,delegate_attr_dict:85,delet:[3,77,102],delete_all_waveforms_from_list:[28,77],demand:113,demo:106,demod1:[30,68],demod1_harmon:30,demod1_ord:30,demod1_phaseshift:30,demod1_sampler:30,demod1_signalin:30,demod1_sinc:30,demod1_stream:30,demod1_timeconst:30,demod1_trigg:30,demod:30,demodul:[68,106],demodulation_acquisitioncontrol:[16,59],demodulation_frequ:[16,59],demonstr:[3,8],denot:[31,42,48,82],depend:[1,16,24,25,30,42,74,93,100,102,109,113],deploi:[12,77],deprec:[3,31,36,49,77,96],deprecationwarn:77,deriv:105,descipt:35,describ:[2,3,8,10,31,46,48,68,102,110,113],descript:[2,36,77,102,110,113],descriptor:65,design:[69,77,78,113],desir:[10,17,76],desktop:14,destruct:113,detail:[1,102,113],detect:99,determin:[40,84],dev2235:30,dev:[2,12,13],develop:[62,68,103,107,108],devic:[54,58,62,65,68,72,74,77,97,113],device_clear:54,device_descript:58,device_id:68,dft:[16,59],dg4000:57,dg4062:73,dg4102:73,dg4162:73,dg4202:73,diagon:105,dict:[31,35,36,39,40,43,44,45,48,49,50,54,61,72,76,77,79,82,98,113],dictionari:[3,28,59,76,77,85,110,113],did:[3,9,11,109],didact:10,diff:77,differ:[1,3,8,21,26,31,37,48,68,74,77,102,105,108,113,114],differenti:36,difficult:102,difficulti:102,dig:[30,62,99],digit:[3,10,58,62,64,66,77,97],digital_amplitude_n:77,digital_high_n:77,digital_low_n:77,digital_method_n:77,digital_offset_n:77,dilut:72,dim:30,dimens:[8,31,36,42,48,113],dimension:[1,36,37,72],dio:58,dir:[2,77],direct:[31,48,62,75,102],directli:[1,3,5,8,17,24,25,28,30,37,46,72,77,106,113],directori:[2,3,37,38,77,80,82,102,109,110],disabl:[16,33,37],disadvantag:113,disambigu:9,disappear:113,disc:77,disconnect:113,discov:57,discret:113,discuss:[102,107],disk:[37,38,40,77,82,113],diskio:[6,37,39,80,82,91,105],displai:[0,1,2,6,7,9,11,13,14,15,16,18,20,23,26,27,29,30,74,77],display_clear:[11,13,14,69,77],display_grid:[26,74],display_norm:77,display_settext:21,display_sij_split:26,display_single_window:26,display_text:[7,11,13],display_text_2:7,dissip:113,distribut:108,div:27,dived:57,divid:[57,97,98],divider_r:77,divis:[27,57],division_valu:57,divsion:57,dll:[58,59,75,106,113],dll_path:[3,59,75],dma:58,dmm:[10,11,13,14,69,99,100],dmm_data_buff:14,dmm_volt:13,dmm_voltag:10,do_acquisit:59,do_get_frequ:74,do_get_pow:74,do_get_pulse_delai:74,do_get_statu:74,do_get_status_of_alc:74,do_get_status_of_modul:74,do_set_frequ:74,do_set_pow:74,do_set_pulse_delai:74,do_set_statu:74,do_set_status_of_alc:74,do_set_status_of_modul:74,doc:[2,6,65,102,106,109],docstr:[3,8,31,41,48,49,77,102],document:[1,17,31,41,48,49,59,77,94,95,97,102,108,113],doe:[1,10,17,23,26,30,36,39,42,46,47,54,57,58,62,65,69,72,74,76,77,78,102,113],doesn:[3,8,9,28,36,58,62,66,77,102],dofastsweep:[12,21,77],doing:[16,26,102,113],domain:[30,72],domin:108,don:[1,3,27,40,50,51,52,61,62,64,77,102,113,114],done:[1,6,10,28,30,72,95,109,113,114],dot:[2,102,110],doubl:[39,77],doubt:[30,102],down:[17,21,28,102],download:[30,106,109],dramat:113,drive:6,driver:[5,8,10,15,17,21,24,25,26,27,28,30,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,95,96,97,98,99,100,102,108,112,113],driver_vers:[16,59],drivertestcas:[57,62,69,78],due:[3,6,24,25,30,61,113,114],dummi:[5,10,16,81,106,114],dummy_set:16,dummyinstru:[5,10],dump:[7,59],duplic:[3,77],dur:30,durat:[25,30],dure:[1,14,49,50,51,55,59,62,66,77,93,113,114],dut:26,dynam:[24,25,58,106],e1cb66:28,e8267:69,e8267c:[57,97],e8527d:[57,102],each:[0,1,3,4,6,8,10,11,12,13,14,15,16,18,19,20,21,22,24,25,26,27,28,30,31,36,37,40,41,42,43,46,48,49,50,51,58,59,61,64,65,68,69,76,77,78,83,84,85,102,105,108,113,114],eachot:114,earli:27,easi:[5,16,102,105,108,109],easier:[68,100,102,113],easiest:2,easili:[1,9,10,77,108],echo:61,edg:[16,27],edit:75,editor:102,ee82e:28,effect:[59,77,110],effort:3,eight:[24,25],either:[1,3,21,24,25,30,40,49,50,58,62,70,73,77,84,113],elaps:[14,18,20],electron:[3,108],elem1m1ch1:77,elem1m1ch2:77,elem1m2ch1:77,elem1m2ch2:77,elem2m1ch1:77,elem2m1ch2:77,elem2m2ch1:77,elem2m2ch2:77,element:[1,28,77,84,110,113],element_no:77,elemnum:28,elif:18,elnum:28,elpi:102,els:[2,14,19,26,58,77,102],elsewher:85,emac:102,email:107,embed:[1,109],emit:[50,65],emoji:102,empti:[2,8,10,18,28,61],enabl:[16,30,66],enable_channel:66,enable_record_head:[16,59],encapsul:113,enco:14,encod:[3,14,41,50,58],encount:58,encourag:[3,30,102],end:[3,39,51,54,58,59,74,77,102,108,113],endpoint:[11,77],engin:16,enough:[10,58,72,102,105],ensur:[27,75,76,102,113],ensure_ascii:7,enter:[31,48,113],entir:[15,16,22,76,85,113],entri:[2,40,46,48,77,91],entrypoint:93,enumer:[3,30],env:[2,14,35,109,110],env_file_nam:[2,35],enviro:109,environ:[2,108,109,110],equal:110,equitim:76,equival:[8,77,108],err:75,error:[0,2,3,4,14,17,18,24,36,46,50,58,59,62,65,66,76,77,99,106,110,114],error_cod:65,errorcod:58,errormsg:58,errorreg:66,errorvalu:66,esr:76,essenti:[10,69,76],establish:17,etc:[1,3,8,19,21,26,31,36,41,48,50,102,113],ethernet:[3,43,77],etr_5v:16,eumer:52,evalu:53,even:[8,13,17,24,25,38,40,47,49,50,51,52,54,64,66,77,102,113],event:[28,30,58,61,76,77,106],event_input_imped:77,event_input_polar:77,event_input_threshold:77,everi:[1,3,34,37,46,56,59,68,107,113,114],everybodi:[102,107],everyon:102,everyth:[28,30,39,91,102],exactli:[5,14,102],examin:72,exampl:[0,1,2,6,8,31,32,36,39,48,49,50,52,54,59,62,66,77,97,102,105,108,109,111,114],exce:102,exceed:[28,58],except:[2,3,14,17,58,61,76,77,86],exec_funct:14,exec_str:14,execut:[10,14,30,41,53,57,58,62,66,68,69,74,77,78,105,108,113],executor:114,exemplifi:30,exept:30,exercis:102,exis:26,exist:[3,10,26,28,39,40,52,58,66,77,80,82,102,108,113],exit:77,exit_kei:77,expand:103,expect:[2,3,14,18,30,31,40,46,48,58,64,66,76,77,102,114],experi:[9,10,35,106,108,109,113],experiment:[108,113],expir:14,explain:[102,110],explicit:[28,51],explicitli:[31,36,48,49,102,113],explor:[10,77],expos:[64,110],express:[50,113],ext:[14,22],ext_trigg:15,extend:[28,42,51,74],extens:[42,77],extern:[16,22,66,74,75,77],external_add_n:77,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:77,external_startcaptur:[16,59],external_trigger_coupl:[16,59],external_trigger_rang:[16,59],extra:[8,13,31,48,49,102,113],extra_schema_path:2,extract:72,extrem:113,f008:72,fact:102,factor:[3,7,24,25,30],factori:77,fail:[2,100,102,113],falcon:102,fall:77,fals:[2,6,7,8,14,18,19,20,24,25,26,30,36,37,43,44,49,60,61,62,64,65,66,69,70,73,74,76,77,82,110,113],faq:112,fast:[64,72,77,106,113],faster:[26,28,100,102],fastest:28,fastsweep:21,feasibl:108,feat:102,featur:[1,3,19,75,97,98,99,100,103,108],feed:[3,71,76],feedback:[52,113],feel:102,fetch:[7,13,72],few:[22,26,41,68,102,107],fewer:[24,25],ff4500:28,ff8c00:28,fft:68,field:[17,31,41,42,48,49,50,70,72,108,114],field_limit:[17,70],field_measur:17,field_target:17,field_target_cartesian:17,field_target_cylindr:17,field_target_spher:17,field_valu:72,field_vector:17,fieldvector:17,fifo:16,fifo_only_stream:[16,59],fig:[1,17,26,28,30],figsiz:[1,10,83,84],figur:[1,14,28,30,84,102,109,113],figure_api:1,file:[2,4,9,10,35,37,39,40,42,58,65,72,77,80,82,102,106,112,113],file_path:77,filen:35,filenam:[28,77],filepath:28,filestructur:77,fill:[8,10,15,46,77,113],filter:[30,68],filter_slop:15,filw:77,find:[18,39,59,102,107,110],find_board:[16,59],find_modul:76,findal:72,finder:10,fine:[65,113],finish:[1,6,12,13,26,30,59,95,113],finit:[24,25,64,65],fire:[24,25],firmwar:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,98],first:[1,2,6,8,10,13,14,17,22,26,28,31,36,42,48,50,53,70,77,83,84,102,113,114],first_delai:14,fit:[28,59,102],five:75,fix:[17,30,36,41,51,72,98,99,100,101,102,113,114],fixabl:102,flag:[24,25,65,75],flake8:102,flavor:113,flexibl:[105,108],flow:[24,25],flush:[22,76,77],flush_error_queu:[22,62],fmt:[2,9,10,39],fmt_counter:39,fmt_date:39,fmt_time:39,fname:77,focus:102,folder:[3,38,42,77],follow:[1,3,5,10,11,17,22,28,61,77,102,109,110,113,114],foo:[102,110,114],footer:102,forc:[6,9,16,18,20,23,26,28,77],force_ev:77,force_logicjump:77,force_reload:77,force_trigg:[27,77],force_trigger_ev:77,foreground:[100,113],foreground_color:83,foreign:58,fork:102,form:[3,12,41,59,72,74],format:[3,10,11,12,13,14,17,21,24,25,26,28,30,37,39,41,42,50,58,74,77,80,82,106,108,113],formatloc:[2,9,10,82,91,105],formatt:[4,6,37,80,82,91,97,105,110,113],former:[12,13],formerli:[3,78],forward:[16,38,59],foul:28,found:[3,26,28,30,40,50,53,58,65,77,102,106],four:[19,58,61,73],fourier:59,framework:[102,108,113],free_mem:59,freedom:49,freeli:113,freq:[26,75],frequenc:[10,15,26,30,59,62,74,75,77,114],frequency_set:26,frequencysweep:74,frequencysweepmagphas:74,frequent:102,fridg:[72,108],friendli:68,from:[0,1,2,3,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,31,36,37,39,40,41,42,46,48,49,50,58,59,62,64,65,66,68,69,71,72,74,76,77,80,81,84,85,99,102,104,105,106,108,113,114],fron:7,front:[30,77],frontend:110,full:[0,2,22,24,30,37,42,77,80,82,108],full_nam:[0,36],full_trac:26,fulli:[26,30,102],fullrang:65,fun:64,func:[3,14,53],func_nam:18,fundament:113,further:[73,105,108],furthermor:[1,17,68],futur:[3,77,102,114],gain:[71,76],garbag:59,gate:[6,9,10,22,32,61,105,113,114],gate_frequ:114,gate_frequency_set:114,gated_trigger_acquisit:66,gather:9,gather_paramet:9,gave:28,gcc:58,gee:30,gener:[3,10,17,22,27,28,37,39,51,58,60,62,68,69,73,74,75,76,77,78,97,102,105,106,108,109,113],generate_awg_fil:77,generate_channel_cfg:77,generate_sequence_cfg:77,get:[0,2,3,4,5,6,8,9,10,11,14,16,17,18,19,20,21,23,24,25,27,29,30,31,36,40,48,49,50,57,59,62,64,65,68,71,72,74,76,77,85,102,106,110,113,114],get_al:[65,72,74,77],get_board_info:59,get_card_memori:66,get_card_typ:66,get_chang:72,get_cmd:[3,10,50,59,72,114],get_compon:17,get_current_folder_nam:77,get_data_set:[0,1,10,11,12,13,14],get_error:77,get_error_info32bit:66,get_filenam:77,get_folder_cont:77,get_funct:59,get_idn:[3,16,58,59,61,65,66,71,72,76,77],get_instrument_valu:57,get_jumpmod:77,get_latest:[27,30,31,32,48,49],get_max_sample_r:66,get_mocker_messag:70,get_module_idn:76,get_module_statu:76,get_pars:[3,50],get_pol_dac:65,get_power_at_freq:75,get_processed_data:[16,59],get_sample_r:59,get_spectrum:75,get_sq_mod:77,get_sqel_loopcnt:77,get_sqel_trigger_wait:77,get_sqel_waveform:77,get_stat:77,get_voltag:76,getattr:3,getcwd:28,getdoubl:30,getlogg:[4,27,28,30],gettabl:[3,8,31,48,49,71,76,81,105,113],getter:[14,105],getx:114,giga:67,giga_b:67,gimm:22,git:[6,18,106,108],github:[102,104,105,106,108,109],giulio:102,giulioungaretti:102,give:[1,8,10,17,46,61,77,102,113],given:[0,1,17,24,25,33,43,58,59,61,73,102,113,114],global:[3,9,19,26,106],gmbh:66,gnuplot:[42,108],gnuplot_format:[4,6],gnuplotformat:[4,6,37,80,82,91,105,113],goal:102,going:[3,5,65],good:[2,3,10,27,30,74,102],googl:[6,102],got:[13,102],goto_root:77,goto_st:[28,77],goto_to_index_no:77,gotten:[22,24,25,28,113],gpib0:[7,15,18,20],gpib:[3,77,79],gradual:19,grai:83,graph:[10,31,48,49],graphicswindow:83,great:102,greater:50,greatest:113,green:109,grid:[26,74],group:[1,44,58,74,102,108,113],grow:107,gs200:[57,96],guarante:2,gui:[1,2,14,20,30,102,108,110],guid:[1,59,102,107,109],guidelin:102,h5fmt:4,h5py:109,hack:[102,110],had:[9,28,58],half:30,halfrang:65,halt:55,halt_bg:16,han:28,hand:28,handl:[3,8,31,36,37,41,48,58,59,64,65,66,83,100,105,106],handle_buff:59,handle_clos:1,handler:4,hang:102,happen:[3,24,25,28,36,53,113],happi:102,hard:[77,102],harder:[102,113],hardwar:[3,17,24,25,28,61,65,66,74,77,102,105,113],harmon:15,harvard:[19,57],has:[1,3,4,6,8,10,15,17,19,21,22,24,25,27,28,30,31,36,42,48,58,59,68,70,76,77,102,110,113,114],hasattr:[14,18],hasn:[3,58],have:[1,2,3,5,8,9,10,17,21,24,25,26,27,28,30,31,36,40,42,48,49,52,57,58,59,61,62,65,68,69,71,75,76,77,78,84,102,105,107,108,109,113,114],haz:95,hdf5:[4,97,113],hdf5_format:4,hdf5format:4,head:77,header:[16,22,58,102],heater:72,heater_off:72,heater_on:72,heatmap:[83,84],height:[83,84],helium:[72,100],help:[2,3,28,30,31,37,40,41,43,48,49,54,77,102,108,113],helper:[2,4,28,68,91,110],henc:61,here:[1,3,6,8,9,15,16,21,24,25,26,30,36,64,68,72,76,81,102,109,113],hesit:102,hewlett:[7,60],hierarchi:103,high:[10,66,77,102,113],higher:[17,110,113],highest:[39,113],highlevel:14,hislip0:13,histori:[77,102],hkey_current_usersoftwareoxford:72,hold:[3,13,15,21,23,30,72,77,105,113,114],hold_repetition_r:77,holdoff:30,home:[2,35,102,110],home_file_nam:[2,35],horisont:[27,30],horizont:27,horizontal_scal:27,host:[24,25],hotfix:102,hound:75,how:[2,5,8,10,17,26,28,30,31,40,42,46,48,49,51,52,83,102,104,105,106,107,113,114],howev:[17,26,62,102],hp33210a:57,hp8133a:57,hp_83650a:57,htm:65,html:[1,54],http:[1,54,65,66,102,104,106,109],human:[10,59,96],i3d:17,iPS:97,icon:109,id1:42,id2:42,id3:42,idea:[3,10,74,102,107],ideal:102,ident:[3,8,21,68,77,114],identifi:[31,37,40,42,44,48,49,61,72,76],idl:[29,77],idn:[3,4,6,7,10,15,16,21,29,61,64,65,72],idn_param:61,idr:72,iff:77,igh:72,ignor:[26,31,48,53,59,77],ignore_kwarg:14,igor:108,illustr:1,ilm200:57,ilm:[72,100],imaginari:26,imm:[13,22],immedi:[10,11,22,24,25,33,38,59,68,85,102,113],impact:113,imped:[10,16,30,59],impedance1:16,impedance2:16,imper:102,implememnt:85,implement:[9,16,17,40,43,51,52,58,59,68,72,74,75,77],implicit:102,implicitli:113,importlib:4,impos:113,improv:[101,102],imprrov:98,inc:[7,12,17,21],inch:84,includ:[3,8,11,31,39,48,49,51,54,58,66,69,76,77,81,83,84,102,105,107,108,113,114],inclus:77,inconsist:113,inconsistensi:77,inconsit:27,incorrect:102,incorrectli:59,increas:[8,17,102],increment:[42,50,99,113],ind:30,inde:[17,102],indend:30,indent:[7,102],independ:[40,113],index0:8,index1:8,index:[1,8,64,65,77,84,113],indic:[0,1,17,36,66,77,113,114],individu:[1,17,26,33,37,51,70],inf:[14,22,24,25],infer:36,infin:77,infinit:[28,77],info:[2,3,6,14,20,23,30,39,59,77,107,110],inform:[10,16,31,39,43,48,49,54,59,66,75,77,83,100,102,108,110,113],inherit:[14,59,74,77],inifit:[24,25],init:61,init_measur:[13,14,69],init_s_param:[26,74],initi:[1,3,10,36,37,40,47,57,58,72,77,80,82,108,113],initial_valu:[1,3,8,47],initialis:[14,74,75,77,79,106],initialize_channel:66,initialz:65,inner:[0,1,8,36,42,113],input:[2,3,14,17,18,28,41,50,57,58,65,72,76,77,102,105,106,113],input_config:15,input_coupl:15,input_path:66,input_rang:66,input_shield:15,insert:[3,39,110],insid:[3,8,11,31,33,37,46,48,49,77,80,82,102,108,109,113],inspect:[2,17],inst0:[3,11,12,14,21,22,26,28,74],instal:[30,54,58,62,68,76,93,100,102,104,108],instanc:[1,2,3,10,31,37,41,48,49,57,59,61,62,68,69,71,76,77,78,113],instant:58,instantan:[24,25],instanti:[3,16,21,30,37,64,70,102,106,113],instdict:28,instead:[0,1,3,10,36,114],institut:3,instr:[3,7,11,12,13,14,15,18,20,21,22,23,24,25,26,27,28,61,72,74],instruct:[17,108,109],instrument:[0,6,8,11,12,14,15,16,17,18,20,21,22,24,25,26,28,29,30,31,33,36,41,43,45,47,48,49,50,54,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,91,98,100,102,103,106,108,112],instrument_cod:50,instrument_driv:[3,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,102],instrument_i:70,instrument_mock:[4,5,10],instrument_nam:[10,16,36],instrument_testcas:57,instrument_x:70,instrument_z:70,instrumentchannel:[33,61,62,63,64,74,77,91],instrumentrefparamet:98,instrumentserv:[113,114],instrumentstriton:72,insuffici:113,integ:[3,8,31,36,39,48,58,76,77,84,110,113],integr:[1,7,18,20,21,75,102,113],integration_tim:7,intellig:[72,113],intend:[17,31,48,52,113],inter:65,interact:[1,3,76,102,106,109,113],interdepend:113,interest:[30,102,113],interfac:[3,30,58,68,77,106,113],interleav:[16,66,77],interleave_adj_amplitud:77,interleave_adj_phas:77,interleave_sampl:[16,59],intermedi:102,intern:[15,17,22,30,36,59,62,68,76,77],internal_clock:[3,16],internal_trigger_r:77,interpret:[3,4,9,10,21,113],interrupt:[58,111],interv:[83,84],introduct:112,inv:22,invert:[3,7,20,71,76],invit:102,invok:[3,30],involv:[106,108,113],io_manag:[37,80,82,113],iomanag:105,ion:30,ipinstru:[3,70,72,91,105],ips120:[57,100],ipython:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,108],iq_arrai:8,iqarrai:8,irang:[25,64],irrespect:[24,25,77],irrevers:113,is_awg_readi:77,is_numb:73,is_setpoint:[6,36],is_typ:2,isobu:72,issu:[17,77,95,96,99,102,105],issue_warning_on:14,ital:105,item:[8,29,31,39,48,51,64],iter:[33,51,52,105],iter_error:2,ithaco1:7,ithaco:[3,7,57,106],ithaco_1211:[3,7,20,57],its:[1,3,8,10,11,19,24,25,28,30,36,41,58,59,76,77,81,84,102,105,109,113,114],itself:[33,39,49,59,77,102,113],iv_sweep:[12,21],ivert:7,ivvi:[57,97,99,100],javascript:[0,1,2,6,7,9,14,15,16,18,20,23,26,27,29,30,102],jhn:26,job:[113,114],johnson:102,join:[2,28,102,107],jorgenschaef:102,json:[2,6,7,26,31,43,44,48,49,54,76,77,97,108,110,113],json_config:2,jsonschema:2,jtar_index_no:77,jtar_stat:77,jump:[10,19,28,77],jump_log:77,jump_tim:77,jump_to:[28,77],jumplog:77,junk:9,jupyt:[1,10,108,109,111],just:[0,3,5,6,9,10,11,13,21,27,28,30,41,42,50,55,61,65,102,105,109,112,113,114],k2600:3,k2600a:3,keep:[17,40,59,61,98,102,108,110,113],kei:[1,3,9,28,37,51,59,76,77,82,85,110,113],keightlei:98,keith:[7,12,18,20,21,96],keith_smua_curr:12,keith_smua_iv_sweep:12,keith_smua_volt_set:12,keithlei:[7,12,77,97,106],keithley1:[7,18,20],keithley2:[7,18,20],keithley_2000:57,keithley_2400:57,keithley_2600:[3,7,12,18,20,21,57],keithley_2600_channel:[12,21,57],keithley_2614b:[3,77],keithley_2700:57,keithley_smua:21,keithley_smua_iv_sweep:21,keithley_smub:21,keithleychannel:77,kelvinox:[57,100],kept:110,kernel:[110,111],keysight:[10,57,97,98,99,100,106],keysight_33500b:[10,22,57],keysight_33500b_channel:57,keysight_34465a:[11,13,14,57],keysight_m3201a:62,keysight_volt:11,keysightchannel:62,keyword:[39,41,53],khz:[26,27],kilo:67,kilo_b:67,kind:[0,30,77,114],knob:[3,113],know:[10,51,52,102,107,114],known:[3,36,78],kwarg:[1,2,3,8,14,16,18,41,43,44,45,47,50,52,53,54,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,84,85,114],lab:[30,68,108],label1:42,label2:42,label3:42,label:[0,1,3,6,7,8,10,16,28,30,31,34,36,39,42,48,49,56,57,59,77,102,113,114],lack:61,lakeshor:57,lambda:[5,10,17,59],languag:42,larg:[6,28,77,102],larger:50,last:[1,2,6,14,18,30,59,64,68,77,102,113],last_saved_index:40,latenc:[10,11],later:[3,30,31,37,38,39,48,82,85,102,113,114],latest:[59,109,113],latest_cal_d:[16,59],latter:[12,13,84],launch:[68,109],lazi:106,lcardtyp:66,lead:[72,102],leak:59,learn:[30,108],least:[30,102,105,113],leav:[31,43,48,77],leave_persistent_mod:72,left:[1,109],legacy_mp:[2,110],legend:26,len:[13,14,30,58,77,114],length:[8,11,22,28,30,48,58,68,77,81,113,114],less:[30,102,113],lest:28,let:[1,17,21,26,36,102,110,114],letter:102,leve:3,level0:66,level1:66,level:[2,3,10,14,16,36,42,66,72,76,77,100,102,110,113,114],levelnam:4,levelv:3,lib:[2,14,18,99],librari:[14,28,58,62,102,109,110],life:[62,102],like:[3,9,10,17,26,28,30,31,36,40,41,48,50,51,52,59,62,69,72,74,77,102,105,108,110,113],limit:[1,3,16,17,24,25,27,58,70,102,113,114],limiti:[7,21],limitv:[7,21],lin:[30,75],linalg:17,line2d:[14,30],line:[5,7,10,14,18,20,21,30,42,62,83,84,102,107,108],linear:[0,26,74,114],linearli:[30,105],liner:102,link:[36,52,58,59,105],linkag:103,linspac:[0,13,28,114],linux:109,list:[1,4,8,10,12,13,16,25,33,34,37,39,41,44,51,56,58,59,62,64,65,66,68,72,74,76,77,82,85,91,93,95,97,102,105,106,113,114],list_of_dataset:4,list_of_mixed_typ:4,listcomp:14,liter:102,littl:[102,113],live:[1,80,104,106,109,113,114],load:[2,3,8,28,35,40,58,75,77,80,95,106,108,110,114],load_and_set_sequ:77,load_awg_fil:77,load_data:[10,37,91],load_ext:2,loaded_data:10,loadlibrari:3,loadtestsfromtestcas:4,loc:39,loc_fmt:9,loc_provid:[2,9,10,39],loc_provider_junk:9,loc_record:[9,82],local:[0,8,11,12,13,28,30,31,37,41,43,47,48,49,50,54,61,62,72,77,79,102,108,113,114],locat:[0,1,2,4,6,8,11,12,13,14,15,16,18,20,21,24,25,26,27,30,37,38,39,40,62,77,80,82,106,110,113,114],location_provid:[2,10,39,82,105],lock:[10,30,33,65,72,76],lockin:[3,15,71,76],lockin_ch1_databuff:15,log:[2,4,5,14,27,28,30,68,75,108,110,114],logger:[4,27,28],logic:[44,77,102],logic_jump:77,loglevel:[2,110],logo:95,lograng:51,logview:102,longer:[26,39,42,46],look:[5,10,24,25,27,30,39,54,59,102,110,113,114],loop:[0,1,6,8,9,12,13,14,16,18,20,26,27,31,32,36,37,40,42,48,49,53,55,59,77,81,85,91,95,105,106,112,114],loop_indic:14,loop_result:8,loop_writing_test_2d_skewed_parabola:4,loop_writing_test_2d_x_set:4,loop_writing_test_2d_y_set:4,loop_writing_test_skewed_parabola:4,loop_writing_test_x_set:4,loopcount:77,lose:13,lost:58,lot:[3,17,36,77,102],loudli:10,love:[102,107],low:[3,10,14,26,30,77,113,114],lower:[36,113],lowest:[39,76],lua:[12,21,77],luasweepparamet:77,m1s:[28,77],m2cmd_card_reset:66,m2s:[28,77],m3201a:57,m3300a:[57,97],m3300a_awg:62,m3300a_dig:62,m4i:[57,96,97,99],mac:[6,9,16,18,20,23],machin:[12,77,102],made:[2,30,62,68,110],magic:28,magnet:[17,70,72,97,100,106,108,114],magnitud:[17,26,74,113],magnitur:26,mai:[3,10,19,21,24,25,26,27,28,30,32,37,40,41,47,51,52,77,83,84,93,102,105,110,113],mail:107,main:[1,77,113],mainfram:76,mainli:10,maintain:[3,71,76,102,103,107,113],majorana:110,make:[3,5,8,9,10,11,12,15,16,17,18,20,21,23,24,25,30,36,41,42,46,59,64,65,72,76,77,102,105,106,108,109,113],make_and_save_awg_fil:[28,77],make_directori:77,make_send_and_load_awg_fil:[28,77],manag:[3,18,37,39,40,72,76,82,113],mandatori:[15,77,102],mani:[1,8,30,36,37,42,50,51,52,59,62,99,102,113],manner:28,manual:[17,21,26,30,47,65,69,71,72,74,76,77,106,108,113,114],manualparamet:[0,1,3,8,10,16,91,114],map:[3,13,41,50,59,76,84,113],mark:[76,113],marker1:77,marker1_amplitude_n:77,marker1_high_n:77,marker1_low_n:77,marker1_method_n:77,marker1_offset_n:77,marker1_skew_n:77,marker2:77,marker2_amplitude_n:77,marker2_high_n:77,marker2_low_n:77,marker2_method_n:77,marker2_offset_n:77,marker2_skew_n:77,marker:[28,77],mashup:95,mass:77,master:[102,106,109],match:[28,30,39,41,42,48,50,58,72,74,76,77,113],math:17,matlab:1,matplot:[0,2,10,15,16,21,26,27,91,98,106],matplotlib:[0,2,4,5,9,11,12,14,15,16,17,18,19,20,23,26,27,28,29,30,84,106,109,110],matter:[28,102],maunual:2,max:[22,42,50,65,66,75],max_delai:50,max_sampl:[16,59],max_status_ag:64,max_subplot_column:1,max_val:61,max_val_ag:50,max_work:114,maxim:[24,25,77],maximum:[17,50,61,65,70,75,110,113],mayb:[36,46,102],mea:15,mean:[2,3,8,12,13,17,26,30,46,50,77,102,110,113,114],meaning:3,meaningless:102,meant:[41,68],meassur:26,measur:[0,1,3,4,6,8,9,11,12,13,14,15,16,17,18,20,21,26,27,31,36,37,42,46,48,49,50,52,53,57,62,68,71,74,76,85,91,99,106,112],measured_param:[3,71,76],measured_v:1,measured_val_2:1,measured_valu:52,measurerange_i:[12,21],measurerange_v:21,mechan:65,media:77,mega:67,mega_b:67,member:108,memori:[37,58,59,66,77,82,110,113],memory_s:[16,59],memrori:28,memsiz:66,mention:102,mercuri:[97,106],mercuryip:[23,57],mercuryipsarrai:72,merg:102,merger:3,merlin:6,messag:[4,14,22,27,28,61,62,64,65,66,76,77],message_len:65,messagebas:14,messur:26,met:93,meta:[5,30,108,112,113],meta_fil:7,meta_serv:114,meta_server_nam:114,metadat:[44,52],metadata:[3,10,20,31,36,40,43,44,48,49,54,57,76,91,97,106,108,113],metadata_fil:42,meter:[3,6,9,10,21,72,77,100],method:[1,2,3,8,9,10,12,13,17,24,25,28,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,57,59,62,64,68,69,72,77,78,81,83,84,85,102,113,114],methodnam:[57,62,69,78],mhz:[26,30],might:[19,21,59,102,113],millisecond:76,mimic:105,mimick:113,min:[22,65],min_val:61,min_valu:8,mind:59,mini:42,minim:30,minimum:61,minu:110,mirror:113,misc:91,misinterpret:28,mismatch:58,miss:[102,114],mistak:102,mix:[3,4,102],mock:[5,17,102],mockami430:70,mocker_class:70,mockgat:[6,9],mockinstru:105,mockmet:[6,9],mockparabola:4,mockparabola_run:4,mockparabola_skewed_parabola:4,mockparabola_x_set:4,mockparabola_y_set:4,mocksourc:[6,9],mode:[0,3,6,7,8,11,12,13,16,17,19,21,30,37,58,59,64,66,68,72,74,75,77,79,106,113,114],model:[3,6,7,9,10,12,16,20,21,59,62,63,70,72,73,74,76,77,102,105,110,113],model_336:57,modif:110,modifi:[1,25,51,68,102],modified_rang:40,modul:[2,3,10,14,18,30,93,102,110],modular:[108,113],mohm:12,moment:[62,77],monitor:[9,46,55,85,105,108,113],more:[1,6,10,24,25,26,28,30,37,41,42,59,62,66,68,77,94,99,102,105,106,108,109,113],most:[1,2,3,8,14,18,19,26,30,48,49,59,62,69,74,77,102,105,109,113],mostli:[30,105],motiv:102,move:[3,9,17,72,77],mpl_connect:1,msec:[3,7],msg:72,mua:24,much:[26,40,74,102,113],multi:[10,64,94,113],multichan_paramclass:33,multichannelinstrumentparamet:[33,64],multilin:102,multimet:[77,97],multiparamet:[3,26,68,71,72,74,76,91,97,106],multipl:[0,1,8,25,30,33,41,48,50,65,66,69,74,77,106,113,114],multiple_trigger_acquisit:66,multipli:113,multiprocess:[3,18,94,97,108,114],multityp:105,must:[3,8,10,27,28,30,31,36,39,42,43,48,49,51,52,59,61,62,66,68,76,77,82,102,105,110,113,114],mv_rang:66,mvpp:27,my47004267:7,my48002016:11,my54505281:13,my54505388:[11,14],my57800256:22,my_experi:109,mycount:8,myget:10,myinstrument:114,myset:10,myvector:114,myvector_set:114,n48280:15,naiv:12,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,39,41,42,43,44,45,47,48,49,50,54,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,85,102,105,109,110,113,114],name_to_delet:3,namespac:[9,91,110],nan:10,nataliejpg:79,nativ:[10,76],navg:75,navig:109,nbagg:[4,5,9,16,18,19,20,23,26,27,28,29],nbi:[102,107],ndarrai:[31,36,48,77,113],nearli:3,necessari:[16,30,36,52,58,59,68,108,113],necessarili:[31,48,49,102,105],need:[1,2,3,8,10,17,28,36,59,66,72,77,102,105,106,113,114],neg:[55,65],neither:102,nep:[30,68],nepbw:68,nepbw_to_timeconst:68,nest:[8,10,11,36,46,113],nested_dataset:4,network:[74,113],never:[50,102],new_cmd:3,new_data:[37,91],new_indic:14,new_nam:3,new_valu:14,newlin:42,newlinestripp:77,next:[1,28,31,39,42,48,77,109,113,114],nice:[1,3,9,30,102,109],nick:102,nielsen:107,nix:109,no_instru:114,nobodi:102,nocommanderror:50,node:30,nois:21,noisi:17,non:[17,28,81,102,114],none:[2,3,4,6,7,10,14,15,16,17,18,20,21,23,30,31,33,34,36,37,39,41,42,43,46,47,48,49,50,51,54,56,57,59,60,61,62,64,65,66,70,72,74,75,76,77,80,82,84,85,95,102],nonetyp:[33,57],noofpoint:28,noofseqelem:28,nor:102,norm:[17,22],normal:[12,31,37,38,41,48,49,51,62,77,105,113],notabl:30,notat:[2,51],notch_filt:15,note:[1,2,3,8,10,17,21,24,25,28,30,31,33,37,48,49,50,51,52,54,61,64,68,71,72,75,76,77,80,82,93,108,110,113,114],notebook:[1,2,11,12,14,15,16,17,21,27,28,30,97,99,106,108,109,110,111],noth:[21,59,61],notic:[1,21,26],now:[0,6,8,9,10,15,17,24,25,26,28,30,31,48,85,97,102,109,110,114],nplc:[7,11,13,14,18,20,21,77,106],nplc_list:62,npt:[16,26,74],nr_averag:66,nr_bytes_written:14,nrep:[28,77],num:[6,12,13,14,51,84],num_chan:64,num_channel:77,num_port:26,number:[0,1,3,7,8,9,10,11,13,14,18,20,24,25,26,28,30,39,42,43,46,48,49,51,54,57,58,59,61,62,64,65,66,68,72,73,74,76,77,102,105,110,113,114],number_format:42,number_of_channel:59,number_of_paramet:114,numdac:65,numer:[42,113],numpi:[0,3,4,8,9,11,12,13,14,17,18,20,23,24,25,27,28,29,30,31,36,48,68,76,77,99,113,114],numpoint:77,numval:[13,14],object:[0,1,2,6,7,9,10,14,15,16,18,20,23,26,27,29,30,31,33,36,38,40,41,46,48,49,50,51,52,59,61,64,75,80,82,85,102,103,110,113,114],obsolet:28,obtain:[1,59],obviou:46,occasion:40,occupi:[39,77],occur:[1,17,58,61,65,66,76,110,113],oct:15,oem:77,off:[3,7,11,13,14,19,21,22,24,25,26,27,30,41,64,69,72,74,77],off_modul:74,offer:[0,1,114],offload:113,offset:[16,17,19,27,30,77],often:[1,5,37,102,105],ohm:[16,30],old:[15,21,26,27,98],oldest:22,oldn:30,omit:[31,48,50,72],on_modul:74,onboard:21,onc:[0,5,8,9,10,36,40,77,102,105,109,113,114],one:[1,2,3,8,9,10,12,15,17,19,21,24,25,26,27,28,30,31,34,36,37,40,41,42,46,47,48,50,51,56,57,58,59,61,64,65,74,76,77,82,102,105,106,110,113,114],ones:[69,74,77,102],onli:[3,4,8,10,16,17,18,24,25,26,27,28,30,31,36,37,39,41,42,47,48,49,50,51,52,58,59,62,64,68,69,71,72,74,76,77,82,102,106,113],onlin:1,onto:[77,113],opc:77,open:[4,7,40,43,54,58,72,84,98,102,108,109,113],opendevic:75,oper:[1,3,14,16,31,32,38,48,51,58,61,77,106,110,113,114],oppos:[3,28],opposit:83,optim:108,option:[2,3,22,28,31,33,34,36,37,39,40,41,43,44,47,48,49,50,51,52,54,56,57,62,66,72,76,77,80,82,95,99,102],order:[2,3,10,17,28,30,34,37,41,56,68,70,102,110,113],ordereddict:[0,37],org:[1,54],organ:[102,106],orient:113,origin:[11,57,113],osc:30,oscil:30,oscillator2_freq:30,oscilloscop:[77,106],osx:109,other:[1,2,3,8,24,25,26,28,30,39,40,46,53,55,59,61,71,76,81,83,84,102,108,113],otherclass:3,otherwis:[3,28,36,58,59,61,102,113],our:[26,42,102],out:[0,3,5,8,10,14,17,18,22,24,25,26,27,30,31,32,48,58,59,64,66,72,102,107,108,111,113,114],outer:[1,8,10,36,42,113],output:[3,7,9,12,16,18,19,20,21,23,24,25,26,28,41,46,50,58,61,64,65,66,68,71,73,74,76,77,81,102,106,113],output_interfac:15,output_waveform_name_n:77,outsid:[55,59,65,66,68,77],over:[0,3,10,26,30,33,40,46,51,52,59,75,102,105,113,114],overhead:[13,113],overid:72,overload:[61,76],overrid:[3,37,39,40,64,68,72,77,82],overridden:1,overview:[10,21,66,77,106,110,112],overwrit:[2,18,20,65,77,82,110],overwritten:39,ovsr:76,own:[2,3,10,26,41,58,59,84,102,113],oxford:[23,29,57,97,100],oxfordinstruments_ilm200:72,oxfordinstruments_ips120:72,oxfordinstruments_kelvinox_igh:72,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:77,pack_waveform:77,packag:[1,2,14,30,93,102,108,110],packard:[7,60],packed_waveform:77,pad:3,page:[91,93,102,113],pai:102,pair:11,panel:[30,61,77,108],panic:113,par:28,paraemt:57,parallel:72,param:[8,28,29,30,49,59,64,65],param_id:14,param_nam:[36,64],param_out:14,paramet:[1,5,6,7,9,10,12,16,17,19,20,21,24,25,26,28,29,30,31,32,33,34,36,37,38,39,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,61,62,64,65,66,68,69,70,71,72,74,75,76,77,79,80,81,82,83,84,85,91,94,96,99,102,103,106,108,112],parameter_class:3,parameter_nam:95,params_to_skip_upd:[64,74],paramt:[0,56,114],parent:[31,33,41,45,47,48,49,50,52,61,62,63,64,74,76,77],parenthes:102,parmet:66,pars:[28,41,73,77],parse_awg_fil:[28,77],parse_multiple_output:73,parse_on_off:[69,74],parse_output_bool:77,parse_output_str:77,parse_single_output:73,parse_string_output:73,parsebool:77,parseint:77,parser:[3,41,76,77],parsestr:[60,77],part:[2,3,9,26,31,39,48,49,50,66,75,76,97,102,105,106,110,113],partial:[73,114],particular:[3,8,17,28,30,105,113],particularli:[3,41,44,76,113],pass:[1,3,39,41,47,50,52,53,57,59,62,66,70,74,79,82,83,84,102,110,113,114],pat:77,patch:102,path:[2,10,28,35,37,38,40,59,72,77,80,82,109,113],pattern:77,paus:17,pci:[3,58],pcie:[58,59,97],pcie_1751:57,pcie_link_spe:[16,59],pcie_link_width:[16,59],pdf:64,pend:77,pep8:102,per:[3,12,13,14,16,21,31,36,48,59,61,64,65,70,77,108,114],percent:[30,68],percentag:72,perf:102,perfom:11,perform:[1,10,11,15,16,17,21,24,25,30,40,54,59,65,68,75,77,81,98,100,102,113],perform_safety_check:70,perhap:[14,113,114],period:[37,83,84],persist:[43,70,72],persistent_switch:70,person:102,phase:[8,15,22,26,30,59,68,74,113],phase_delay_input_method_n:77,phase_n:77,phi:17,phi_measur:17,physic:[3,24,25,37,57,61,80,82,85,113],pick:102,pictur:113,piec:[105,113],pillar:113,pin:58,ping:102,pinki:102,pip:[102,108,109],pixel:83,place:[1,2,24,25,62,102,113],plai:10,platform:66,pleas:[21,28,30,64,77,102,107],plese:107,plot:[0,2,14,15,16,17,20,21,22,24,26,27,28,30,36,91,95,98,99,106,109,110,113],plot_1d:10,plotlib:[2,110],plotq:20,plotter:30,plt:[1,9,11,12,14,17,18,20,23,26,27,28,29,30,84],plu:110,plubic:93,plug:[12,62,108],plugin:102,plural:8,point:[10,11,12,13,14,15,17,26,30,34,38,42,46,50,56,68,72,74,75,77,91,108,113],poitn:77,polar:65,polish:108,poll:[12,15],polyfit:17,poor:19,popul:[36,44,45],port:[17,19,26,29,43,58,61,70,72,75,108],port_count:58,posit:[41,113],possibl:[8,19,26,28,71,72,76,77,110,113],post:102,post_acquir:59,post_trigg:66,posttrigger_s:66,potenti:[21,37,46,108,113],power:[17,21,26,62,70,72,74,75,97,102,113],power_limit:32,ppi:58,pprint:[6,7],practic:102,pre:[80,106],pre_acquir:59,pre_start_captur:59,preamp:[3,71,76],preamplifi:[3,71,76],prece:68,preced:42,precis:[19,65,68,96],preconfigur:2,predefin:[28,53,76,77,106],prefer:[108,113],prefix:102,preliminari:11,prepar:[12,13,14,30,59,62,68,77,113],prepare_buffer_readout:[15,76],prepare_curvedata:[27,77],prepare_for_measur:75,prepare_scop:[30,68],preparesweep:77,prepend:[36,77],preprocessor:58,prerequisit:106,present:[3,15,71,76,102,113],preservechannelset:77,preset:75,preset_data:36,press:[1,77,111],pretrigger_s:66,pretti:[24,25,64,68],prevent:[3,31,48,49,59,65,77],previou:[1,6,61,102],previous:[68,77,113],primari:108,princip:41,print:[0,1,2,3,8,9,10,11,13,14,16,17,18,20,21,23,24,25,28,29,30,61,62,64,66,68,77,114],print_al:60,print_cont:77,print_modstatu:60,print_overview:[24,25,64],print_readable_snapshot:[10,15,21,26],print_sweeper_set:[30,68],printslop:[24,25,64],prior:[57,61],prioriti:[39,113],privat:[59,91],privileg:58,probabl:[41,59,74,102,113],problem:[28,66,102],procedur:[64,113],process:[9,16,59,102,113],produc:[26,113],profit:109,program:[1,59],programm:[59,70,77],programmat:[2,77,108],progress:46,progress_interv:[14,46],project:[3,102],proper:[30,65],properli:[17,77],properti:[2,58,110,113],protect:65,protocol:[16,65,113],provid:[1,2,8,16,24,25,36,39,41,43,50,52,59,62,66,69,78,82,83,84,102,105,106,109,113],proxi:113,psu:72,pts:[15,30],pull:[14,30],pull_from_serv:[6,9,16,20,113],puls:[24,25,28,60,97],purchas:30,purpos:[3,8,113],push:113,push_to_serv:[6,20,113],put:[17,28,42,64,72,77,113,114],pxie:62,py_head:[57,66],pyenv:2,pyplot:[1,9,11,12,14,17,18,20,23,26,27,28,29,30],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,20,22,24,91,98,100,109],pyqtmaxplot:110,pyqtplot:110,pyspcm:66,pytest:102,python3:2,python:[3,10,37,58,59,65,66,72,77,80,82,95,102,108,109,113],pyvisa:[14,54,113],pywin32:100,qcmatplotlib:[0,2,16,91],qcode:[0,1,4,5,6,7,12,13,14,91,93,102,103,104,107,112,113,114],qcodes_colorbar:1,qcodes_config:110,qcodesrc:2,qcodesrc_schema:26,qdac:[11,13,57,97,98,99,100,106],qdac_ch01_v_set:13,qdac_ch02_v_set:14,qdac_ch41_v_set:11,qdac_ch42_v_set:11,qdac_channel:[57,106],qdac_setpoint:13,qdacchannel:64,qdacmultichannelparamet:64,qdev:[11,13,14,18,24,25,57,108,110],qtlab:75,qtplot:[0,2,10,14,20,22,24,91,106],qtwork:65,quadratur:8,quantiti:42,quantum:109,queri:[18,24,25,30,64,75,76,77,113],querysweep:75,question:[62,64,102],queue:[18,22,28,61,62,77],quickli:28,quiet:14,quirk:94,quit:[1,32,102,113],quot:42,qutech:57,qutech_controlbox:69,r_offset:15,rack:65,rad_to_deg:69,rainbow:[9,39],rais:[2,3,14,17,18,32,33,50,52,55,57,58,59,62,65,68,69,76,77,78],raiseexc:76,ramiro:75,ramp:[3,10,14,17,19,22,24,25,61,70,72,77],ramp_al:61,ramp_rat:[17,61],ramptim:24,ran:4,randint:[5,10],random:[2,5,10,17,28,62],rang:[3,7,8,11,13,14,16,22,24,25,26,28,30,58,59,62,65,66,68,75,77,113,114],range_auto:7,rangei:7,rangev:7,rate:[15,16,17,30,59,61,65,66,70,76],rather:[19,30,62,102,114],ravel:113,raw:[13,65,105,106,108],raw_val:13,reach:[17,76,102],read:[3,4,8,10,17,18,20,24,25,27,37,40,41,42,43,54,58,61,64,65,66,71,72,74,76,77,80,82,102,105,106,109,110,113],read_metadata:40,read_one_fil:40,read_pin:58,read_port:58,read_stat:64,readabl:[10,50,59,96,102],reader:10,readi:[8,10,30,77,82,102,109],readili:1,readm:102,readout:[64,66,98],readthedoc:54,real:[3,10,26,62,71,76,102,105,108,113,114],realli:[24,25,36,62,109,113],realtim:[102,108],reappear:102,rear:77,reason:[10,17,102,114],recal:10,receiv:[1,22,61,76],recent:[2,14,18,30,49],recommend:102,reconnect:113,reconsid:21,reconstruct:40,record:[10,16,39,68,77,82,108,113],records_per_buff:[16,59],recycl:59,redirect:[31,36,49,96],reduc:41,ref:[27,113],refactor:102,refer:[10,30,36,59,91,102,104,113,114],referenc:[31,48,49,113],reference_clock_frequency_select:77,reference_multiplier_r:77,reference_sourc:[15,77],refernc:75,reflect:[47,74],refriger:72,reg:[29,57,66],regard:[59,113],regardless:102,regist:[66,76,102],registri:72,regular:[3,5,113],reimport:110,reinvent:102,reject:75,rel:[10,26,37,38,80,82,113],relat:[1,113],relationship:113,releas:[40,108],relev:[14,49,59,76,77],reli:[1,3,59],reliabl:[59,113],reload:[4,40,57,113],remain:59,rememb:[13,17,26,27,68],remot:[7,18,23,72,83,113],remoteinstru:[7,113,114],remoteparamet:113,remov:[22,26,30,36,37,65,68,72,74,77,97,99,102,106],remove_signal_from_sweep:68,rep:77,repeat:[33,102,113],repet:77,repetit:[28,77],repetition_r:77,replac:[1,61,99],repo:[2,102],report:[103,108],repositori:[102,106,108],repr:[14,61],reprec:26,repres:[8,42,49,59,62,76,113],represent:[10,58,85,105],reproduc:[102,113],request:[13,17,103,113],requir:[8,10,30,31,41,48,51,52,54,58,68,74,82,100,102,110,113,114],res:18,research:[76,98],resend:77,resend_waveform:77,reserv:15,reset:[3,8,10,12,14,15,26,28,41,42,60,65,66,69,70,73,74,76,77],reset_modul:76,resistor:12,resit:57,resolut:[7,10,65,99],resolv:62,resourc:[14,40,54,58,62,64,76,113],respect:[1,31,48,58,77],respons:[3,18,41,43,50,54,61,64,76],ressourc:77,restart:[66,110],restrict:[76,105],restructur:102,result:[1,4,8,39,59,65,75,77,106,113],ret:14,ret_cod:14,ret_valu:14,retriev:[22,77,110],retur:77,return_count:14,return_pars:41,return_self:77,reus:113,revers:[50,51],review:[102,108],revion:61,revok:[24,25],rewrit:113,rewritten:102,rf_off:26,rf_on:26,rho:17,richer:113,rid:36,right:[1,17,28,57,59,76,85],rigol:57,rigol_dg4000:73,rise:[3,7,30],risetim:[3,7,20],robust:3,rohd:[74,106],rohde_schwarz:[26,57],rohdeschwarz_sgs100a:74,rohdeschwarz_smr40:74,rol:75,ron:77,root:[4,37,38,77,80,82],rotate_nvalv:72,rough:103,round:[65,99,113],round_dac:65,routin:[62,64],row:[1,42,74],rrm:30,rs232linkformat:65,rs_sgs100a:74,rs_smb100a:74,rst:[3,41,102],rto:72,rtoz:23,rtype:14,rule:17,run:[0,1,5,6,9,10,11,12,13,14,15,16,17,18,20,22,26,27,30,46,57,58,68,77,95,106,108,110,113,114],run_mod:77,run_stat:77,run_temp:8,run_to_field:72,run_to_field_wait:72,runtest:[57,62,69,78],runtim:[2,110],runtimeerror:30,s11:26,s12:26,s21:26,s22:26,s44:26,sa124_max_freq:75,sa124_min_freq:75,sa44_max_freq:75,sa44_min_freq:75,sa_api:75,sa_audio:75,sa_audio_am:75,sa_audio_cw:75,sa_audio_fm:75,sa_audio_lsb:75,sa_audio_usb:75,sa_auto_atten:75,sa_auto_gain:75,sa_averag:75,sa_bypass:75,sa_idl:75,sa_iq:75,sa_iq_sample_r:75,sa_lin_full_scal:75,sa_lin_scal:75,sa_log_full_scal:75,sa_log_scal:75,sa_log_unit:75,sa_max_atten:75,sa_max_devic:75,sa_max_gain:75,sa_max_iq_decim:75,sa_max_rbw:75,sa_max_ref:75,sa_max_rt_rbw:75,sa_min_iq_bandwidth:75,sa_min_max:75,sa_min_rbw:75,sa_min_rt_rbw:75,sa_min_span:75,sa_power_unit:75,sa_real_tim:75,sa_sweep:75,sa_tg_sweep:75,sa_volt_unit:75,sabandwidthclamp:75,sabandwidtherr:75,sacompressionwarn:75,sadevicenotconfigurederr:75,sadevicenotfounderr:75,sadevicenotidleerr:75,sadevicenotopenerr:75,sadevicetypenon:75,sadevicetypesa124a:75,sadevicetypesa124b:75,sadevicetypesa44:75,sadevicetypesa44b:75,saexternalreferencenotfound:75,safe:[17,65,72,102,113],safe_reload:75,safe_vers:65,safeti:[17,26,62,72],safrequencyrangeerr:75,safti:26,sai:[37,80,82,102,114],said:[36,77],sainterneterr:75,sainvaliddetectorerr:75,sainvaliddeviceerr:75,sainvalidmodeerr:75,sainvalidparametererr:75,sainvalidscaleerr:75,same:[1,3,5,8,11,16,17,34,36,42,48,50,51,56,58,68,76,77,84,102,113,114],sampl:[13,15,16,30,51,52,57,59,66,113],sample_count:[13,14],sample_r:[16,59],sample_timer_minimum:[13,14],samples_per_buff:59,samples_per_record:[16,59],sampling_r:77,sane:35,sanocorrect:75,sanoerror:75,sanotconfigurederr:75,sanullptrerr:75,saovencolderr:75,saparameterclamp:75,sastatu:75,sastatus_invert:75,satisfi:17,satoomanydeviceserr:75,satrackinggeneratornotfound:75,saunknownerr:75,sausbcommerr:75,save:[0,10,14,28,31,36,37,40,42,48,49,50,59,77,81,82,95,102,105,106,108,113,114],save_to_cwd:2,save_to_env:2,save_to_hom:[2,110],savvi:108,sawtooth:22,sbench6:66,sca:1,scalar:[5,8,10,31,48,81,113],scale:[8,26,27,30,57,75],scale_param:8,scale_set:8,scale_v:8,scan:26,scenario:[62,102],scene:30,scf:1,schema:[2,26,35,110],schema_cwd_file_nam:35,schema_default_file_nam:35,schema_env_file_nam:35,schema_file_nam:35,schema_home_file_nam:35,schouten:65,schwarz:[74,106],scientist:109,scope:[27,68,77,106],scope_average_weight:30,scope_channel1_input:30,scope_channel2_input:30,scope_channel:30,scope_correctly_built:30,scope_dur:30,scope_length:30,scope_measur:27,scope_mod:30,scope_samplingr:30,scope_seg:30,scope_segments_count:30,scope_trig_delai:30,scope_trig_en:30,scope_trig_gating_en:30,scope_trig_gating_sourc:30,scope_trig_holdoffmod:30,scope_trig_holdoffsecond:30,scope_trig_hystabsolut:30,scope_trig_hystmod:30,scope_trig_level:30,scope_trig_refer:30,scope_trig_sign:30,scope_trig_slop:30,scopearrai:77,scopedata:30,scpi:61,screen:[77,109],script:[21,77,106,108,114],sd_awg:62,sd_common:62,sd_dig:62,sd_modul:62,sdk:59,sdk_version:[16,59],seamless:62,search:[39,102,113],sec:77,second:[1,6,8,10,15,22,30,31,36,37,43,46,48,50,54,55,59,61,65,70,72,76,77,82,83,84,107,113,114],section:[107,109],see:[0,1,2,5,9,17,22,24,27,28,39,40,43,50,52,54,59,65,66,74,77,83,102,113,114],seem:[42,66,102],seen:26,seg_siz:66,segm1_ch1:77,segm1_ch2:77,segm2_ch1:77,segm2_ch2:77,segment:[1,30,68,77],select:[16,17,59,68,77,102,109],self:[2,3,8,14,18,20,31,37,40,48,49,61,62,64,72,75,77,82,85,102,114],semant:108,semi:102,semicolon:72,sen:[3,7,20,71],send:[3,12,13,14,17,43,65,71,76,77,106,107],send_awg_fil:77,send_dc_puls:77,send_pattern:77,send_sequ:77,send_sequence2:77,send_waveform:77,send_waveform_to_list:[28,77],sens:102,sens_factor:[3,7,71],sens_x:20,sensit:[3,7,15,71],sensor:[63,106],sensorchannel:63,sent:[3,12,41,50,72,77,105,113],separ:[8,21,40,42,48,72,85,108,113,114],seper:[61,77],septemb:21,seq:77,seq_elem:28,sequanti:56,sequecn:77,sequenc:[8,28,31,36,46,48,51,61,77,81,84,113],sequence_cfg:77,sequence_length:28,sequence_po:28,sequenti:[30,34,114],seri:[3,69,73,77],serial:[3,6,7,10,11,12,13,14,15,16,17,21,22,26,27,59,61,72,76,105],serial_numb:20,serialis:77,serv:3,server:[16,18,23,30,59,68,113,114],server_err:18,server_nam:[4,7,16,23,60,66,114],session:[9,10,14,37,80,82,102],set:[0,1,2,3,4,5,7,8,9,11,14,15,16,17,18,19,20,21,22,23,26,28,34,36,37,40,42,46,47,49,50,51,52,56,57,58,59,61,62,64,65,66,68,70,71,72,74,75,76,77,79,80,81,82,105,106,108,110,113,114],set_al:61,set_arrai:36,set_channel_or_trigger_set:66,set_channel_set:66,set_cmd:[1,3,10,50,72,114],set_current_folder_nam:77,set_dacs_zero:65,set_default:77,set_delai:10,set_ext0_or_trigger_set:66,set_ext_trig:74,set_field:70,set_funct:59,set_jumpmod:77,set_level:77,set_measur:[6,7,9,18,20],set_mix_chamber_heater_mod:72,set_mix_chamber_heater_power_rang:72,set_mod:77,set_mode_volt_dc:77,set_mp_method:[6,9,16,18,20,23],set_pars:50,set_persist:72,set_point:27,set_pol_dacrack:65,set_pulsemod_sourc:74,set_pulsemod_st:74,set_ramp:19,set_remote_statu:72,set_sequ:77,set_set_point:27,set_setup_filenam:77,set_smooth:76,set_sqel_event_jump_target_index:77,set_sqel_event_jump_typ:77,set_sqel_event_target_index:[28,77],set_sqel_goto_st:77,set_sqel_goto_target_index:[28,77],set_sqel_loopcnt:[28,77],set_sqel_loopcnt_to_inf:[28,77],set_sqel_trigger_wait:[28,77],set_sqel_waveform:[28,77],set_statu:74,set_step:10,set_sweep:74,set_titl:[1,28],set_to_fast:72,set_to_slow:72,set_valu:52,set_voltag:76,set_ylim:28,setboth:114,setbothasync:114,setformatt:4,setlevel:[4,27,28,30],setpoint:[0,1,4,5,6,8,10,11,12,13,14,16,17,26,27,31,36,42,48,62,68,72,74,76,77,81,97,113,114],setpoint_arrai:[31,48],setpoint_label:[8,31,48],setpoint_nam:[8,31,48,68],setpoint_unit:[31,48],settabl:[49,52,105,113],setter:105,settl:[30,102],setup:[26,66,74,85,106,108],setupclass:[57,62,69],setx:114,sever:[62,68,72,102,105,113],sg384:[57,96],sgs100a:57,shadow:2,shape:[0,1,3,4,6,8,10,11,12,13,14,15,16,21,26,27,28,30,31,36,48,62,68,74,84,113,114],share:[19,107],shared_kwarg:114,shell:108,shift:30,ship:[2,30],shortcut:83,shorthand:1,shot:[21,94,102,106],should:[3,10,13,16,17,22,26,27,28,30,31,33,36,37,39,40,41,43,45,46,48,49,51,52,53,57,58,59,61,62,71,72,76,77,85,102,109,113],shouldn:36,show:[1,5,9,10,16,17,18,20,23,24,25,102],show_subprocess_widget:[6,9,16,18,20,23],show_window:83,shown:[1,17],side:[17,28,50,105,109,114],sig:30,sig_gen:102,signadyn:62,signal:[10,27,28,59,66,68,69,74,75,76,77,97,106,113],signal_hound:57,signal_input1:30,signal_input1_ac:30,signal_input1_diff:30,signal_input1_imped:30,signal_input1_rang:30,signal_input1_sc:30,signal_output1:30,signal_output1_ampdef:30,signal_output1_amplitud:30,signal_output1_autorang:30,signal_output1_en:30,signal_output1_imp50:30,signal_output1_offset:30,signal_output1_on:30,signal_output1_rang:30,signal_to_volt:59,signalhound_usb_sa124b:75,signatur:[28,40,58,77],significantli:26,silent:62,sim900:76,sim928:[57,97],sim:76,similar:[1,10,74,77,113],similarli:[25,30,113],simpl:[5,8,10,12,15,16,26,27,32,38,41,55,66,84,102,106,108,113],simpler:102,simplest:113,simpli:[2,30,41,49,77],simplifi:[3,9,61,102],simul:[105,108,112,113],simultan:[15,25,61],simultani:70,sin:[28,73],sinc:[1,3,10,17,30,61,68,72,77,113,114],sine:27,sing:26,singl:[1,8,10,18,20,21,26,31,42,49,50,51,58,59,61,63,64,66,70,77,81,84,94,102,105,106,113],single_iq:8,single_set:8,single_software_trigger_acquisit:66,single_trigger_acquisit:66,singleiqpair:8,sit:21,site:[1,2,14],situat:[10,42,113],six:[24,25,58],size:[1,6,10,31,37,48,50,59,65,66,76],skewed_parabola:4,skill:102,skip:102,slack:[98,99,100,102,107,108],slash:38,sleep:[3,13,14,15,18,20,23,24,25,27,28,52,55,65],slice:[9,26,51,105],slider:1,slider_demo:1,slightli:[21,96],slope:[14,16,17,22,24,25,64],slot:[19,61,62,76],slot_nam:76,slow:[24,25,72,113],slow_external_clock:3,slower:28,small:[21,24,25,26,30,58,94,102],smaller:[26,76],smart:[72,102],smooth_timestep:76,smoothli:76,smr40:57,smu:3,smua:[12,21,77],smub:[21,77],snap:7,snapshot:[0,3,6,7,10,16,20,31,33,36,43,44,48,49,54,76,77,85,96,99,100,113],snapshot_bas:[64,74,77],snapshot_get:[31,48,49],snapshot_valu:[31,48,49],socket:[43,63],soft:77,softwar:[3,22,30,64,68,77,100,102,106,113],software_revis:20,software_triggered_read:13,solv:102,some:[0,3,10,25,30,31,41,43,48,49,51,61,62,66,76,77,102,106,110,113],somebodi:102,somehow:113,someon:[58,102],someth:[2,9,17,28,30,59,62,64,102,110,113],sometim:[3,8,10,30,42,113],soon:[61,102],sophist:59,sort:[28,42],sort_kei:7,sourc:[3,6,9,10,16,17,21,26,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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,102,103,108,109,113],sourcemet:[12,77,97],sourcerange_i:21,sourcerange_v:[12,21],space:[24,25,31,48,49,51,102,105],span:[26,75],spawn:[6,9,16,18,20,23],spc_tm_high:66,spcerr:[57,66],spcm0:66,special:[3,10,31,48,49,102,113],specif:[16,28,37,61,64,65,72,77,102,105,113],specifi:[1,17,22,28,31,40,46,48,57,58,62,65,68,69,75,76,77,78,84,85,102,110,113],specifiedta:77,spectrum:[57,96,97,113],speed:[11,13,26,50,59,113],speedup:99,spheric:17,spherical_measur:17,splat:1,split:[3,13,26,29],spread:107,sqel:77,sql:113,squar:27,squencer:77,sr560:[3,57],sr830:[57,95,98,106],sr865:57,src:[2,4,26],srs_sg384:76,stabl:54,stackoverflow:1,stage:113,stai:[102,114],staircas:10,stale:113,stand:17,standalon:108,standard:[1,3,13,26,61,64,76,108],standardparamet:[1,3,6,8,10,16,20,57,65,91,105],stanford:[76,98],stanford_research:[3,15,57],stanford_research_system:15,stanford_sr865:76,start:[0,1,3,6,9,10,11,12,13,14,15,16,20,22,26,30,35,36,37,42,47,50,51,53,58,59,61,72,74,76,77,80,82,102,106,113],startcaptur:16,startup:[24,25,64],stat:[69,74],state:[3,24,25,28,30,58,61,77,102,105,108,113],statement:[65,102],station1:[18,20],station2:[18,20],station:[4,5,6,7,9,10,11,14,18,20,21,26,30,31,44,46,48,49,76,91,103,113],stationq:108,statu:[3,29,30,59,62,64,65,69,72,74,75,76,77],status:76,statuscod:77,std:[12,13],stderr:4,stdlib:58,stdout:[14,66],step:[1,3,10,11,21,26,46,50,51,65,76,77,78,109,114],step_attenu:69,stepper:72,still:[24,25,28,36,102,113],stop:[1,15,22,26,28,30,51,74,77],storag:[77,108,113],store:[0,2,4,33,36,37,40,57,59,77,82,85,99,113],str:[3,14,31,33,34,35,36,37,38,39,41,43,44,45,47,48,49,50,54,56,57,61,62,64,65,68,71,72,74,76,77,79,80,82],straightforward:[28,113],strang:30,strategi:61,stream:[14,16,30],streamhandl:4,strftime:39,strictli:68,string:[2,3,4,14,18,20,31,33,39,40,41,42,48,49,50,59,62,65,66,68,70,72,73,74,76,77,82,85,102,105,110,113],strip:[3,42],strive:102,strongli:[1,3,30,102],struct:12,structur:[37,40,59,80,82,105,110,113],struggl:102,stuf:110,stuff:[3,17,72,77,106],stupid:17,subclass:[3,8,31,33,40,41,43,48,49,52,54,59,105],subject:[102,113],sublim:102,sublimelint:102,submit:114,submodul:44,subplot:[17,26,27,30,84,106],subprocess:[9,16,18,20,23],subscrib:68,subsequ:53,subset:26,substitut:3,subtract:30,succes:77,successfulli:[17,58],succinct:102,suit:[4,62,69,74,78,108],sum:[0,114],summari:106,superclass:3,superconduct:72,suppli:[3,38,40,70,72,97,113],support:[0,1,2,3,4,10,21,22,24,25,26,27,28,30,44,45,52,58,62,68,72,76,77,98,99,102,110,113],suppos:72,suppress:[3,7,20,77],supress:62,sure:[11,15,17,30,72,77,102,105,109],sv2:51,sv3:51,sv4:51,swap:108,sweep:[0,5,6,10,12,13,14,21,26,30,33,34,50,51,52,56,68,72,74,75,77,94,105,106,108,112,113],sweep_val:[0,1,114],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[6,10,46],sweepabl:56,sweepdata:30,sweeper:[68,97,106],sweeper_bw:30,sweeper_bwmod:30,sweeper_ord:30,sweeper_param:30,sweeper_samplecount:30,sweeper_start:30,sweeper_stop:30,sweeper_xmap:30,sweeper_xxx:30,sweepfixedvalu:[91,105],sweepvalu:[46,91,103],swept:[12,114],symmetri:17,sync:[18,20,24,25,27,30,106,113],sync_delai:25,sync_dur:25,sync_filt:15,sync_output:22,sync_sourc:22,synchron:[61,113],syntax:108,synthes:97,sys:[4,14,26],system32:[3,59,75],system:[3,16,31,35,41,48,49,59,72,76,77,85,94,96,110,113],system_id:[3,16,59],sztypetonam:66,t_actual:17,t_set:17,t_start:[11,14],t_stop:[11,14],tab:[30,42,102],tabl:[77,106,110,113],tag:102,tailor:1,take:[0,10,14,25,31,32,33,46,48,49,61,64,66,74,77,98,102,105,108,114],taken:[50,66,74,77],talent:102,talk:[3,71,76,113,114],target:[17,51,52,59,77],target_curr:17,target_field:17,task:[5,10,14,22,46,55,91,95,102,105,113],tcpip0:[3,11,12,13,14,21,22,26,28,74],tcpip:113,tear:21,tech:108,techniqu:102,technolog:[7,11,13,14,22],tektp:27,tektron:100,tektronix:[3,7,12,18,20,21,57,97,98,106],tektronix_awg5014:[28,77],tektronix_awg5200:77,tektronix_awg520:77,tell:[40,42,55,102,113],temp0_0:[24,25],temp2_1:[24,25],temp5_2:[24,25],temperatur:[63,72,97,106],templat:102,temporari:[37,82],tempx_i:[24,25],tend:3,tens:102,term:[14,102],termin:[3,7,9,12,14,16,18,20,23,42,43,54,64,66,70,72,108,109,113],tesla:[17,70,72],test:[3,5,10,11,13,17,39,43,44,58,61,62,64,65,69,70,73,74,77,78,96,105,106,108,113],test_ami430:17,test_attenu:78,test_awg_fil:28,test_channel_amplitud:62,test_channel_frequ:62,test_channel_offset:62,test_channel_phas:62,test_channel_wave_shap:62,test_chassis_and_slot:62,test_chassis_numb:62,test_clock_frequ:62,test_closed_fil:4,test_dataset_clos:4,test_dataset_finalize_closes_fil:4,test_dataset_flush_after_writ:4,test_dataset_with_missing_attr:4,test_double_closing_gives_warn:4,test_field_vector:17,test_firmware_vers:[69,78],test_frequ:69,test_full_write_read_1d:4,test_full_write_read_2d:4,test_hdf5formatt:4,test_incremental_writ:4,test_instru:[57,102],test_loop_writ:4,test_loop_writing_2d:4,test_metadata:102,test_metadata_write_read:4,test_on_off:69,test_open_clos:62,test_phas:69,test_plotting_1d:1,test_plotting_1d_2:1,test_plotting_1d_3:1,test_plotting_2d:1,test_plotting_2d_2:1,test_pow:69,test_pxi_trigg:62,test_read_writing_dicts_withlists_to_hdf5:4,test_reading_into_existing_data_arrai:4,test_send:77,test_serial_numb:62,test_slot_numb:62,test_snapshot:102,test_str_to_bool:4,test_suit:57,test_writing_metadata:4,test_writing_unsupported_types_to_hdf5:4,testagilent_e8527d:69,testcas:57,testhdf5_format:4,testkeysight_m3201a:62,testkeysight_m3300a:62,testmetadat:102,testsd_modul:62,testsweep:[0,10,11,14,18,20],testweinschel_8320:78,text:[3,14,73,102,105,113],texttestrunn:4,textual:113,tg_thru_0db:75,tg_thru_20db:75,than:[1,3,24,25,26,30,46,50,102,108,113],thank:102,thebrain:102,thei:[2,5,9,10,16,18,20,23,36,37,46,53,59,71,76,77,102,105,110,113],them:[1,2,3,8,9,21,24,25,36,57,70,72,76,77,102,106,110,113,114],theme:83,theoret:113,therebi:22,thermometri:29,theta:17,theta_measur:17,thi:[0,1,2,3,5,6,8,9,10,11,13,14,16,17,18,20,21,23,24,25,26,27,28,30,31,33,36,37,39,40,41,42,43,44,45,46,47,48,49,50,52,54,55,57,58,59,60,61,62,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,82,84,85,91,93,102,103,105,108,109,110,112,113,114],thing:[3,9,10,16,23,41,46,50,51,52,53,55,62,69,78,102,105,107,109,113,114],think:[102,110,113],third:113,those:[5,8,36,39,41,105,113],though:[1,3,50,51,52,113],thread:[65,113],thread_map:14,threadpoolexecutor:114,three:[1,8,24,25,30,42,51,70,77,113],through:[10,24,25,28,30,36,37,102,109,113,114],thu:[102,113],tick:[1,16],tight_layout:[1,26,28],tim:22,time:[1,3,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,39,40,46,50,51,52,58,61,62,66,68,75,76,77,102,106,108,113,114],time_const:15,timeit:[12,13],timeout:[7,14,15,16,18,21,28,30,43,54,72,76,77],timeout_tick:[16,59],timer:[18,20],timestamp:[108,113],titl:1,tmpfile:[29,72],to_setpoint:72,to_zero:72,toc:10,todo:[3,36,64,65,68,69,76,79,102],togeth:[1,5,28,50,74,113],toggl:19,tolist:3,too:[3,26,31,48,49,50,58,74,102],tool:[1,102],top:1,toplevel:99,tortur:102,total:[3,8,26],touch:102,toymodel:[6,9],tps1:27,tps1_scope_measurement_0:27,tps1_scope_measurement_1:27,tps2012:[57,106],tps2012channel:77,tps:27,trace:[1,10,26,27,30,59,66,68,74,83,84],traceback:[2,14,18,20,30,108],tracenotreadi:77,track:[59,61,75,113],trail:102,transer:16,transfer:[28,77],transfer_offset:[16,59],transform:[3,17,41,50,55,59],translat:[3,40,68],transmiss:74,trcl:76,treat:[61,85,113],tree:[106,109],trg:[13,14],trig:[30,77],trig_engine_j:16,trig_engine_k:16,trig_engine_op_j:16,trig_mod:66,trig_slope_posit:16,trig_wait:[28,77],trigger:[3,14,16,22,27,28,30,66,74,77,100,106],trigger_count:13,trigger_delai:[16,59],trigger_engine1:[16,59],trigger_engine2:[16,59],trigger_input_imped:77,trigger_input_polar:77,trigger_input_slop:77,trigger_input_threshold:77,trigger_level1:[16,59],trigger_level2:[16,59],trigger_level:27,trigger_oper:[16,59],trigger_slop:14,trigger_slope1:[16,59],trigger_slope2:[16,59],trigger_sourc:[13,14,27,77],trigger_source1:[16,59],trigger_source2:[16,59],trigger_typ:27,triton1_thermometri:29,triton:[57,97,106],trival:114,trivial:[1,102],trivialdictionari:59,troubleshoot:113,truncat:102,trust:50,truthi:[10,32],ts_start:6,tst:4,tstart:[18,20],tudelft:65,tune:[65,102],tupl:[1,8,28,30,31,33,36,41,48,64,68,77,83,84],turn:[3,13,21,26,30,72,77],turoti:10,tutori:[5,8,106,112],two:[1,3,8,10,12,13,15,21,26,27,28,36,64,68,70,75,76,77,102,106,114],txt:65,type:[0,1,2,3,4,6,8,10,11,12,13,14,15,16,18,20,21,26,27,28,30,33,40,41,57,58,59,65,66,68,76,77,99,102,109,110,113,114],typeerror:[14,32,52,77],typic:[36,102,106,113],typo:102,ufh:97,uhf:[68,106],unambigu:3,unassign:[24,25],unavail:58,uncommit:59,uncondit:77,undefin:[22,58],under:77,underli:[105,113],underscor:102,understand:[102,113],undesir:10,undo:77,unfortun:62,unga:[2,4,102,110],ungaretti:102,unicorn:9,unimport:77,union:[33,36,41,50,51,57],uniqu:[36,62],unit:[0,3,6,7,8,10,16,20,24,25,30,31,34,36,48,49,56,59,68,72,76,96,97,102,113,114],unitless:[31,48,49],unittest:[4,57,102],unittest_data:4,unless:[24,25,36,50,102],unlik:57,unload:77,unlock:[72,74],unnecessari:8,unrecogn:58,unrel:113,unsav:113,unsign:77,until:[3,28,72,109,113],unus:82,updat:[1,2,7,10,14,24,25,26,27,30,31,35,48,49,59,64,68,72,74,77,83,84,85,100,105,109,113],update_acquisitionkwarg:[16,59],update_curr:[14,24,25,64],update_display_off:26,update_display_on:26,update_snapshot:85,upfront:[31,48],upgrad:30,upload:[12,28,77],upon:[1,22,24,25,57,76],uppercas:72,ups:17,upsteam:2,upto:77,usag:[8,39,52,62,66,72,77,103,106,112],usb:3,usb_sa124b:57,use:[0,1,2,3,5,8,10,12,26,27,28,30,36,39,41,42,50,51,52,54,55,57,59,62,64,66,69,70,71,72,76,77,78,84,102,105,107,109,110,112,113,114],use_lock:65,use_thread:14,used:[3,8,10,17,19,21,31,33,36,39,41,42,48,49,51,52,57,59,62,64,65,66,68,69,71,72,74,75,76,77,81,85,105,108,113],useful:[1,8,62,102,113],user:[1,2,4,6,14,18,26,28,50,54,58,59,68,76,77,108,109,110,113],usernam:102,userwarn:26,uses:[1,3,8,50,57,58,75,76,105,110,113],using:[1,3,10,17,21,24,25,28,30,35,40,42,54,62,65,66,70,75,77,102,105,108,113],usual:[10,44,45,64,77,113],util:[0,4,14,18,20,62,91,102,114],utility_freq:62,utopia:102,v11:27,v_amp_in:76,v_in:76,v_out:76,v_rang:[24,25],vaild:35,val:[0,3,6,8,10,30,49,50,51,52,59,77,114],val_map:[3,50],valid:[0,2,3,8,14,18,20,26,31,35,41,47,48,49,50,51,52,65,66,77,81,83,91,97,98,99,102,103,110,113,114],validate_al:41,validationerror:2,validator_for:2,valu:[0,1,2,3,5,6,7,8,10,11,12,14,15,16,17,18,20,21,24,25,26,28,30,31,34,35,36,39,41,42,46,47,48,49,50,51,52,56,57,58,59,61,62,64,65,68,70,72,74,76,77,105,113,114],valuabl:102,value_round:65,value_typ:2,valueerror:[33,55,57,62,68,69,77,78],valv:72,vari:[10,31,48,113],variabl:[3,42,62,77,102,105,106,110,113],variou:[102,105],vbw:75,vector:[17,70,113],vendor:[3,6,7,10,15,16,20,21,59,72,76],ver1:15,verbos:[4,10,57,60,62,64,66,74,77,102],verbose_channel:10,veri:[24,25,59,64,113],verifi:[3,17],vernier:76,versa:[17,21,30],version:[2,3,8,10,27,58,59,61,64,65,69,72,74,75,76,77,95,108,109,114],versu:[77,106],vertic:[27,30],vi_error_rsrc_nfound:113,vi_error_tmo:14,via:[1,3,9,25,30,44,45,63,71,76,77,85,106,113],vibuf:14,vice:[21,30],videobandwidth:75,view:[26,102],vipuint32:14,virtual:[3,70,71,74,76,109,114],virtualivvi:114,vis:17,visa:[3,14,28,54,60,61,62,63,64,65,69,72,73,74,76,77,78,79,113],visa_handl:[14,54,61,72],visainstru:[60,61,62,63,64,65,69,72,73,74,76,77,78,79,91,105,106,113],visaioerror:14,visalib:14,visess:14,visibl:[24,25],vision:102,visit:102,visual:108,visualis:28,viuint32:14,viwrit:14,vna:[26,75],vna_:26,vna_paramet:[26,74],vna_s11:26,vna_s11_magnitud:26,vna_s11_phas:26,vna_s11_power_set:26,vna_s11_trac:26,vna_s12_trac:26,vna_s13_trac:26,vna_s14_trac:26,vna_s21_trac:26,vna_s22_trac:26,vna_s23_trac:26,vna_s24_trac:26,vna_s31_trac:26,vna_s32_trac:26,vna_s33_trac:26,vna_s34_trac:26,vna_s41_trac:26,vna_s42_trac:26,vna_s43_trac:26,vna_s44_trac:26,volt:[3,7,10,11,12,13,18,20,21,30,59,61,76,77],volt_0:20,volt_1:20,volt_:76,volt_set:20,voltag:[3,7,8,10,11,12,13,19,21,24,25,57,61,62,64,66,71,76,77,79,97,98,105,113],voltage_range_statu:64,voltage_raw:[3,71,76],voltagedict:76,voltagedivid:57,voltageparamet:76,voltmet:[62,113],volunt:102,vpp:22,vrang:[14,24,25,64],vsd:[5,6,9],w8320_1:3,wai:[1,2,3,5,9,10,15,16,28,30,33,50,77,102,113,114],wait:[6,10,13,28,41,46,50,72,77,91,105,109,113,114],wait_trigg:77,wait_valu:77,walk:114,wall:26,want:[0,1,2,3,5,17,19,26,27,30,31,37,48,49,57,58,59,64,102,103,105,107,110,112,113,114],warn:[2,3,4,17,26,28,46,50,58,59,65,68,96,110],wav:64,wave:[27,66],waveform:[8,22,62,69,73,77,97,106,113],waveform_nam:77,web:[30,68],week:[102,107],weight:2,weinschel:[3,57],weinschel_8320:[3,57],welcom:[102,107],well:[1,5,30,33,40,61,62,69,72,76,78,102,113],went:17,were:[36,37,49,59,93],wfm001ch1:77,wfm002ch1:77,wfm1ch1:77,wfm1ch2:77,wfm2ch1:77,wfm2ch2:77,wfm:[28,77],wfmname:[28,77],wfname_l:77,wfs1:77,wfs2:77,wfs:77,what:[2,3,9,10,17,24,25,28,30,43,46,48,51,52,54,61,72,77,79,91,102,110,113,114],whatev:[13,59],wheel:102,when:[1,3,6,8,17,21,22,24,25,26,27,28,31,32,33,36,39,48,49,52,53,57,58,59,61,62,64,66,68,69,71,76,77,78,82,102,108,113,114],whenev:[66,76,77,113],where:[3,8,10,24,25,31,37,40,48,51,52,59,61,62,68,71,72,76,77,80,82,83,102,113,114],wherea:13,whether:[19,40,42,43,50,64,70,73,77,102,113],which:[1,2,3,5,8,10,17,26,28,30,31,33,35,36,37,39,40,42,45,46,48,50,51,53,57,58,59,62,64,72,74,76,77,80,82,85,102,105,110,113,114],whish:0,white:[83,102],whitespac:42,who:[102,107],whole:[3,5,8,42,48,71,76,102,105,113],whose:[36,76,85,113,114],why:[30,102],widget:[1,9,16,18,20,23,95],width:[83,84],william:[14,30],williamhpnielsen:[64,76],win32:58,win:2,window:[3,6,9,16,18,20,23,26,59,72,75,77,84,100,109],window_titl:83,windowtitl:20,wish:77,with_bg_task:[1,10,14],within:[1,3,16,33,36,53,55,59,68,102,108,113],without:[17,19,74,99,106,110,113],won:26,wonder:30,word:[106,107],work:[2,3,5,16,23,37,38,66,69,73,74,77,78,80,82,102,108,109,110,113,114],workflow:[106,108],world:[59,102,108],wors:102,would:[1,2,8,9,16,18,20,23,39,50,62,74,102,107,113],wrap:[8,38,77,113],wrapper:[65,72,74],write:[2,3,13,14,18,22,37,40,41,42,43,50,54,58,61,64,65,72,76,77,82,102,112,113],write_confirm:43,write_copi:113,write_metadata:40,write_modul:76,write_period:[37,82],write_pin:58,write_port:58,write_raw:14,written:[1,42,59,62,72,77],wrong:[17,61,66,102],x_actn:23,x_fld:23,x_fldc:23,x_length:1,x_offset:15,x_rate:23,x_setpoint:23,x_val:[0,114],xlabel:17,xml:102,xrm:30,xxx:61,y_length:1,y_offset:15,y_val:[0,114],yai:95,yeah:20,year:102,yes:113,yet:[30,40,62,102,113],yield:[46,76],ylabel:17,yokogawa:[57,96],yolo:2,you:[0,1,2,3,5,8,9,10,17,21,26,27,28,30,31,35,36,37,38,40,41,46,48,49,50,51,52,57,59,64,71,76,77,80,82,84,103,105,106,107,109,110,112,113,114],your:[3,10,35,41,57,71,76,102,106,107,109,110,113,114],yourself:[59,76],yrm:30,yscale:30,z_val:[0,114],zero:[3,17,24,25,28,31,48,72,77],ziapinotfoundexcept:30,zip:[14,17],ziuhfli:[30,57],ziuhfli_rrm:30,ziuhfli_sig:30,ziuhfli_xrm:30,ziuhfli_yrm:30,zn20:106,znb20:57,znb4:74,znb8:[26,74,99],znb:[26,57],znbchannel:74,zone:17,zoom:68,zurich:30},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Datasaving Examples","Measure without a Loop","Metadata","Metadata with instruments","Parameters in QCoDeS","Qcodes location-format example","QCoDeS tutorial","Agilent 34411A versus Keysight 34465A","Benchmark","Benchmark of Keysight 34465A","QDac and Keysight 34465 sync and buffer","QCoDeS example with SR830","Qcodes example ATS_ONWORK","QCoDeS example with AMI430","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","QCoDeS Example with ZI UHF-LI","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.QDev package","qcodes.instrument_drivers.QuTech package","qcodes.instrument_drivers.Spectrum package","qcodes.instrument_drivers.Spectrum.py_header package","qcodes.instrument_drivers.ZI package","qcodes.instrument_drivers.agilent package","qcodes.instrument_drivers.american_magnetics package","qcodes.instrument_drivers.ithaco package","qcodes.instrument_drivers.oxford package","qcodes.instrument_drivers.rigol package","qcodes.instrument_drivers.rohde_schwarz package","qcodes.instrument_drivers.signal_hound package","qcodes.instrument_drivers.stanford_research package","qcodes.instrument_drivers.tektronix package","qcodes.instrument_drivers.weinschel package","qcodes.instrument_drivers.yokogawa package","qcodes.load_data","qcodes.measure.Measure","qcodes.new_data","qcodes.plots.pyqtgraph.QtPlot","qcodes.plots.qcmatplotlib.MatPlot","qcodes.station.Station","qcodes.utils.command","qcodes.utils.deferred_operations","qcodes.utils.helpers","qcodes.utils.metadata","qcodes.utils.validators","Classes and Functions","Private","Public","Changelog for QCoDeS 0.1.1","Changelog for QCoDeS 0.1.2","Changelog for QCoDeS 0.1.3","Changelog for QCoDeS 0.1.4","Changelog for QCoDeS 0.1.5","Changelog for QCoDeS 0.1.6","Changelog for QCoDeS 0.1.7","Changelogs","Contributing","Community Guide","Source Code","Object Hierarchy","Examples of using QCoDeS","Get Help","Qcodes project plan","Getting Started","Configuring QCoDeS","QCodes FAQ","User Guide","Introduction","Tutorial"],titleterms:{"1ms":12,"33500b":22,"34400a":18,"34411a":11,"34465a":[11,13],"break":[94,95,96,97],"class":[3,91,92,93],"default":110,"function":[3,41,91,92,93],"import":[10,11,12,28],"new":[94,95,96,97,98,99,100,102],"public":93,ATS:59,IPS:23,THE:27,THERE:28,The:10,Using:[2,22,30,110],abort:111,acquir:27,acquisit:[15,27],action:[10,93],adding:3,advantech:58,aggreg:0,agil:[11,18,69],agilent_34400a:69,alazartech:59,all:5,american_magnet:70,ami430:[17,70],arrai:5,arrayparamet:[8,31],async:114,ats9870:59,ats_acquisition_control:59,ats_onwork:16,attent:[24,25],avanc:114,awg5014:[28,77],awg5200:77,awg520:77,awg:28,awgfilepars:77,base:3,basic:[10,21,22,24,25,30,106],benchmark:[12,13,14,26,106],breakif:32,buffer:[14,15],bug:102,burst:22,can:10,caution:30,chang:[2,94,95,96,97],changelog:[94,95,96,97,98,99,100,101],channel:[24,25,26],channellist:33,chat:107,clever:102,code:[102,104],combin:[0,56,114],combinedparamet:34,command:86,commit:102,commun:103,comprehens:1,config:[2,35,93,110],configur:[2,110],content:[10,28,30,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,102],contribut:102,core:2,creat:3,curv:[21,27],custom:[2,3],data:[4,10,93],dataarrai:36,dataformat:4,datasav:4,dataset:[37,113],decadac:[19,61],deferred_oper:87,defin:10,demo:5,demodul:30,develop:102,devic:57,dg4000:73,diskio:38,dll:3,driver:[3,106,114],dummi:4,dynam:3,e8267c:69,e8527d:69,enter:109,error:22,event:1,exampl:[3,4,9,10,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,106,113],experi:2,familiar:102,faq:111,fast:21,featur:102,file:[28,110],fix:[94,95,96,97],format:[9,102],formatloc:39,formatt:40,from:[4,27],gener:4,get:[12,13,28,107,109],git:102,global:10,gnuplotformat:42,gs200:79,guid:[103,112],handl:[1,22],harvard:61,help:107,helper:88,hierarchi:105,hour:107,how:[1,111],hp33210a:69,hp8133a:60,hp_83650a:60,ilm200:72,improv:[94,95,96,97,98,99,100],initialis:[12,28],input:30,instal:109,instanti:[5,10],instrument:[3,4,5,7,10,44,93,105,113,114],instrument_driv:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],instrumentchannel:45,interact:10,interfac:1,introduct:113,involv:3,ipinstru:43,ips120:72,ithaco:[20,71],ithaco_1211:71,ivvi:65,keithlei:21,keithley_2000:77,keithley_2400:77,keithley_2600:77,keithley_2600_channel:77,keithley_2700:77,kelvinox:72,keysight:[11,13,14,22,62],keysight_33500b:62,keysight_33500b_channel:62,keysight_34465a:62,lakeshor:63,lazi:28,linkag:105,list:[15,28],live:10,load:10,load_data:80,locat:[9,10],loop:[4,5,10,11,46,93,113],m3201a:62,m3300a:62,m4i:66,magnet:23,make:28,manual:3,manualparamet:47,matplot:[1,84],matplotlib:1,measur:[5,10,30,81,93,111,113,114],mercuri:23,mercuryip:72,messag:102,meta:114,metadata:[6,7,89],misc:93,mode:[22,28],model_336:63,modul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],more:[3,107,110],multiparamet:[8,48],multipl:10,need:5,new_data:82,note:102,nplc:12,object:105,offic:107,one:11,onli:5,oper:21,organ:3,oscilloscop:27,output:[5,10,30],overview:[24,25,113],oxford:72,packag:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],paramet:[0,3,8,15,49,105,113,114],part:11,pcie_1751:58,phase:108,plan:108,plot:[1,10,83,84,93],pre:13,predefin:26,prerequisit:30,privat:92,project:108,provid:10,pull:102,push:102,py_head:67,pyqtgraph:83,qcmatplotlib:84,qcode:[2,3,8,9,10,11,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,95,96,97,98,99,100,106,108,109,110,111],qdac:[14,24,25,64],qdac_channel:[25,64],qdev:64,qtplot:[1,83],qutech:65,raw:11,read:11,realli:102,reg:67,remov:3,report:102,request:102,requir:109,respons:113,result:[12,13],rigol:73,rohd:26,rohde_schwarz:74,rough:105,run:[4,28,102,111],save:[2,110],schwarz:26,scope:30,script:12,send:28,sensor:[24,25],set:[10,12,13,24,25,27,30],setup:[11,102],sg384:76,sgs100a:74,shot:14,signal:30,signal_hound:75,sim928:76,simpl:[0,1,3],simul:114,singl:14,smr40:74,softwar:13,some:28,sourc:104,spcerr:67,spectrum:[66,67],sr560:76,sr830:[15,76],sr865:76,standardparamet:50,stanford_research:76,start:[4,109],station:[85,93,105],stuff:14,style:102,submodul:[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],subpackag:[57,66],subplot:1,summari:13,sweep:[1,11,114],sweeper:30,sweepfixedvalu:51,sweepvalu:[52,105],sync:14,tabl:[10,28,30],task:53,tektronix:[27,28,77],temperatur:[24,25],test:[4,57,102],test_suit:[62,69,78],them:28,time:12,todo:[46,52,66,72,74,75,77,105,110,114],tps2012:[27,77],trigger:13,triton:[29,72],tutori:[10,114],two:11,typic:10,uhf:30,updat:110,usag:[22,24,25,30,102,109,111],usb_sa124b:75,user:112,using:106,util:[86,87,88,89,90,93],valid:[90,105],valu:110,variabl:2,versu:11,via:28,visainstru:[3,54],wait:55,waveform:28,weinschel:78,weinschel_8320:78,without:[5,26],word:30,workflow:10,write:114,yokogawa:79,you:102,your:2,ziuhfli:68,zn20:26,znb20:74,znb:74}}) \ No newline at end of file