diff --git a/_images/Qcodes_example_with_AMI430_6_0.png b/_images/Qcodes_example_with_AMI430_6_0.png new file mode 100644 index 00000000000..e0fa942ea93 Binary files /dev/null and b/_images/Qcodes_example_with_AMI430_6_0.png differ diff --git a/_images/Qcodes_example_with_HP8753D_9_0.png b/_images/Qcodes_example_with_HP8753D_9_0.png new file mode 100644 index 00000000000..b221e68d2fd Binary files /dev/null and b/_images/Qcodes_example_with_HP8753D_9_0.png differ diff --git a/_images/Qcodes_example_with_Keysight_Infiniium_Oscilloscope_17_0.png b/_images/Qcodes_example_with_Keysight_Infiniium_Oscilloscope_17_0.png new file mode 100644 index 00000000000..925dbac4e0b Binary files /dev/null and b/_images/Qcodes_example_with_Keysight_Infiniium_Oscilloscope_17_0.png differ diff --git a/_modules/qcodes/actions.html b/_modules/qcodes/actions.html index 71861134e6c..1e2a4ef3ed8 100644 --- a/_modules/qcodes/actions.html +++ b/_modules/qcodes/actions.html @@ -210,8 +210,8 @@

Source code for qcodes.actions

     """
 
[docs] def __init__(self, func, *args, **kwargs): self.func = func - self.args = args - self.kwargs = kwargs
+ self.args = args
+ self.kwargs = kwargs def __call__(self, **ignore_kwargs): # If any of the arguments are callable, evaluate them first @@ -228,8 +228,8 @@

Source code for qcodes.actions

 
         Returns:
             dict: snapshot
-        """
-        return {'type': 'Task', 'func': repr(self.func)}
+ """ + return {'type': 'Task', 'func': repr(self.func)}
[docs]class Wait: @@ -249,8 +249,8 @@

Source code for qcodes.actions

     """
 
[docs] def __init__(self, delay): if not delay >= 0: - raise ValueError('delay must be > 0, not {}'.format(repr(delay))) - self.delay = delay
+ raise ValueError('delay must be > 0, not {}'.format(repr(delay)))
+ self.delay = delay def __call__(self): if self.delay: @@ -264,8 +264,8 @@

Source code for qcodes.actions

 
         Returns:
             dict: snapshot
-        """
-        return {'type': 'Wait', 'delay': self.delay}
+ """
+ return {'type': 'Wait', 'delay': self.delay} class _Measure: @@ -368,8 +368,8 @@

Source code for qcodes.actions

 
[docs] def __init__(self, condition): if not is_function(condition, 0): raise TypeError('BreakIf condition must be a callable with ' - 'no arguments') - self.condition = condition
+ 'no arguments')
+ self.condition = condition def __call__(self, **ignore_kwargs): if self.condition(): @@ -385,8 +385,8 @@

Source code for qcodes.actions

         Returns:
             dict: snapshot
 
-        """
-        return {'type': 'BreakIf', 'condition': repr(self.condition)}
+ """ + return {'type': 'BreakIf', 'condition': repr(self.condition)} class _QcodesBreak(Exception): diff --git a/_modules/qcodes/config/config.html b/_modules/qcodes/config/config.html index b6b4b0d367f..75460dddd57 100644 --- a/_modules/qcodes/config/config.html +++ b/_modules/qcodes/config/config.html @@ -256,8 +256,8 @@

Source code for qcodes.config.config

     _diff_schema = {}
 
 
[docs] def __init__(self): - self.defaults, self.defaults_schema = self.load_default() - self.current_config = self.update_config()
+ self.defaults, self.defaults_schema = self.load_default()
+ self.current_config = self.update_config() def load_default(self): defaults = self.load_config(self.default_file_name) @@ -517,8 +517,8 @@

Source code for qcodes.config.config

 
     def __repr__(self):
         old = super().__repr__()
-        base = """Current values: \n {} \n Current path: \n {} \n {}"""
-        return base.format(self.current_config, self.current_config_path, old)
+ base = """Current values: \n {} \n Current path: \n {} \n {}""" + return base.format(self.current_config, self.current_config_path, old) class DotDict(dict): diff --git a/_modules/qcodes/data/data_array.html b/_modules/qcodes/data/data_array.html index 9d3bd602c86..d0c50d3f1a9 100644 --- a/_modules/qcodes/data/data_array.html +++ b/_modules/qcodes/data/data_array.html @@ -332,8 +332,8 @@

Source code for qcodes.data.data_array

 
         if preset_data is not None:
             self.init_data(preset_data)
-        elif shape is None:
-            self.shape = ()
+ elif shape is None: + self.shape = () @property def data_set(self): @@ -692,8 +692,8 @@

Source code for qcodes.data.data_array

 
     @property
     def units(self):
-        warn_units('DataArray', self)
-        return self.unit
+ warn_units('DataArray', self) + return self.unit diff --git a/_modules/qcodes/data/data_set.html b/_modules/qcodes/data/data_set.html index 7f0cc3e84d6..78471b112c8 100644 --- a/_modules/qcodes/data/data_set.html +++ b/_modules/qcodes/data/data_set.html @@ -240,8 +240,8 @@

Source code for qcodes.data.data_set

 
     if location and (not overwrite) and io.list(location):
         raise FileExistsError('"' + location + '" already has data')
-
-    return DataSet(location=location, io=io, **kwargs)
+ + return DataSet(location=location, io=io, **kwargs)
[docs]def load_data(location=None, formatter=None, io=None): @@ -273,8 +273,8 @@

Source code for qcodes.data.data_set

 
     data = DataSet(location=location, formatter=formatter, io=io)
     data.read_metadata()
-    data.read()
-    return data
+ data.read()
+ return data
[docs]class DataSet(DelegateAttributes): @@ -360,8 +360,8 @@

Source code for qcodes.data.data_set

                 self.add_array(array)
 
         if self.arrays:
-            for array in self.arrays.values():
-                array.init_data()
+ for array in self.arrays.values():
+ array.init_data() def sync(self): """ @@ -823,8 +823,8 @@

Source code for qcodes.data.data_set

 
         for arr_info_i in arr_info:
             out += out_template.format(info=arr_info_i, lens=column_lengths)
-
-        return out
+ + return out class _PrettyPrintDict(dict): diff --git a/_modules/qcodes/data/format.html b/_modules/qcodes/data/format.html index a39157dd6c6..2902079c885 100644 --- a/_modules/qcodes/data/format.html +++ b/_modules/qcodes/data/format.html @@ -492,8 +492,8 @@

Source code for qcodes.data.format

             out.append(self.ArrayGroup(shape=set_arrays[-1].shape,
                                        set_arrays=set_arrays,
                                        data=tuple(sorted(data, key=id_getter)),
-                                       name=group_name))
-        return out
+ name=group_name)) + return out diff --git a/_modules/qcodes/data/gnuplot_format.html b/_modules/qcodes/data/gnuplot_format.html index 294acf33333..53fa0645999 100644 --- a/_modules/qcodes/data/gnuplot_format.html +++ b/_modules/qcodes/data/gnuplot_format.html @@ -260,8 +260,8 @@

Source code for qcodes.data.gnuplot_format

             raise ValueError('comment must have some non-whitespace')
         self.comment_len = len(self.comment_chars)
 
-        # number format (only used for writing; will read any number)
-        self.number_format = '{:' + number_format + '}'
+ # number format (only used for writing; will read any number) + self.number_format = '{:' + number_format + '}' def read_one_file(self, data_set, f, ids_read): """ @@ -561,8 +561,8 @@

Source code for qcodes.data.gnuplot_format

         for array in group.set_arrays:
             yield self.number_format.format(array[indices[:array.ndim]])
 
-        for array in group.data:
-            yield self.number_format.format(array[indices])
+ for array in group.data: + yield self.number_format.format(array[indices]) diff --git a/_modules/qcodes/data/io.html b/_modules/qcodes/data/io.html index c360f11bd2d..cce7c22f6ff 100644 --- a/_modules/qcodes/data/io.html +++ b/_modules/qcodes/data/io.html @@ -234,8 +234,8 @@

Source code for qcodes.data.io

         if base_location is None:
             self.base_location = None
         else:
-            base_location = self._normalize_slashes(base_location)
-            self.base_location = os.path.abspath(base_location)
+ base_location = self._normalize_slashes(base_location) + self.base_location = os.path.abspath(base_location) @contextmanager def open(self, filename, mode, encoding=None): @@ -402,8 +402,8 @@

Source code for qcodes.data.io

 
         Afterward prunes the directory tree.
         """
-        for fn in self.list(location):
-            self.remove(fn)
+ for fn in self.list(location): + self.remove(fn) diff --git a/_modules/qcodes/data/location.html b/_modules/qcodes/data/location.html index 95fffdbd049..7ee9f2ff201 100644 --- a/_modules/qcodes/data/location.html +++ b/_modules/qcodes/data/location.html @@ -265,8 +265,8 @@

Source code for qcodes.data.location

         for testval in (1, 23, 456, 7890):
             if self._findint(self.fmt_counter.format(testval)) != testval:
                 raise ValueError('fmt_counter must produce a correct integer '
-                                 'representation of its argument (eg "{:03}")',
-                                 fmt_counter)
+ 'representation of its argument (eg "{:03}")', + fmt_counter) def _findint(self, s): try: @@ -332,8 +332,8 @@

Source code for qcodes.data.location

         self.counter = existing_count + 1
         format_record['counter'] = self.fmt_counter.format(self.counter)
         location = self.formatter.format(loc_fmt, **format_record)
-
-        return location
+ + return location diff --git a/_modules/qcodes/instrument/base.html b/_modules/qcodes/instrument/base.html index 4a6e60daf9a..60797f8fbb0 100644 --- a/_modules/qcodes/instrument/base.html +++ b/_modules/qcodes/instrument/base.html @@ -531,8 +531,8 @@

Source code for qcodes.instrument.base

                            vals=Anything())
 
         self._meta_attrs = ['name']
-
-        self.record_instance(self)
+ + self.record_instance(self) def get_idn(self) -> Dict: """ @@ -824,8 +824,8 @@

Source code for qcodes.instrument.base

             cmd: the string to send to the instrument
         """
         raise NotImplementedError(
-            'Instrument {} has not defined an ask method'.format(
-                type(self).__name__))
+ 'Instrument {} has not defined an ask method'.format( + type(self).__name__)) diff --git a/_modules/qcodes/instrument/channel.html b/_modules/qcodes/instrument/channel.html index c0cb131bce6..3dde5aa5962 100644 --- a/_modules/qcodes/instrument/channel.html +++ b/_modules/qcodes/instrument/channel.html @@ -201,8 +201,8 @@

Source code for qcodes.instrument.channel

         self.name = "{}_{}".format(parent.name, str(name))
         self.short_name = str(name)
         self._meta_attrs = ['name']
-
-        self._parent = parent
+ + self._parent = parent def __repr__(self): """Custom repr to give parent information""" @@ -221,8 +221,8 @@

Source code for qcodes.instrument.channel

     def ask(self, cmd):
         return self._parent.ask(cmd)
 
-    def ask_raw(self, cmd):
-        return self._parent.ask_raw(cmd)
+ def ask_raw(self, cmd): + return self._parent.ask_raw(cmd) class MultiChannelInstrumentParameter(MultiParameter): @@ -345,8 +345,8 @@

Source code for qcodes.instrument.channel

             self._channel_mapping = {channel.short_name: channel
                                      for channel in self._channels}
             if not all(isinstance(chan, chan_type) for chan in self._channels):
-                raise TypeError("All items in this channel list must be of "
-                                "type {}.".format(chan_type.__name__))
+ raise TypeError("All items in this channel list must be of " + "type {}.".format(chan_type.__name__)) def __getitem__(self, i: Union[int, slice]): """ @@ -593,8 +593,8 @@

Source code for qcodes.instrument.channel

         if self._channels:
             names += list(self._channels[0].parameters.keys())
             names += list(self._channels[0].functions.keys())
-            names += [channel.short_name for channel in self._channels]
-        return sorted(set(names))
+ names += [channel.short_name for channel in self._channels] + return sorted(set(names)) class ChannelListValidator(Validator): diff --git a/_modules/qcodes/instrument/function.html b/_modules/qcodes/instrument/function.html index b6974868256..80a73cf1341 100644 --- a/_modules/qcodes/instrument/function.html +++ b/_modules/qcodes/instrument/function.html @@ -235,8 +235,8 @@

Source code for qcodes.instrument.function

             self.__doc__ = docstring
         if args is None:
             args = []
-        self._set_args(args)
-        self._set_call(call_cmd, arg_parser, return_parser)
+ self._set_args(args) + self._set_call(call_cmd, arg_parser, return_parser) def _set_args(self, args): for arg in args: @@ -295,8 +295,8 @@

Source code for qcodes.instrument.function

         Attributes recreated as properties in the RemoteFunction proxy.
 
         Returns (list): __doc__, _args, and _arg_count get proxied
-        """
-        return ['__doc__', '_args', '_arg_count']
+ """ + return ['__doc__', '_args', '_arg_count'] diff --git a/_modules/qcodes/instrument/ip.html b/_modules/qcodes/instrument/ip.html index 97cf18cbbe2..01033310483 100644 --- a/_modules/qcodes/instrument/ip.html +++ b/_modules/qcodes/instrument/ip.html @@ -218,8 +218,8 @@

Source code for qcodes.instrument.ip

         self._buffer_size = 1400
 
         self._socket = None
-
-        self.set_persistent(persistent)
+ + self.set_persistent(persistent) def set_address(self, address=None, port=None): """ @@ -367,8 +367,8 @@

Source code for qcodes.instrument.ip

         snap['terminator'] = self._terminator
         snap['timeout'] = self._timeout
         snap['persistent'] = self._persistent
-
-        return snap
+ + return snap class EnsureConnection: diff --git a/_modules/qcodes/instrument/parameter.html b/_modules/qcodes/instrument/parameter.html index e12ecbcecae..d6b1e9444aa 100644 --- a/_modules/qcodes/instrument/parameter.html +++ b/_modules/qcodes/instrument/parameter.html @@ -180,11 +180,13 @@

Source code for qcodes.instrument.parameter

 
 - ``Parameter`` is the base class for scalar-valued parameters.
     Two primary ways in which it can be used:
+
     1. As an ``Instrument`` parameter that sends/receives commands. Provides a
        standardized interface to construct strings to pass to the
        instrument's ``write`` and ``ask`` methods
     2. As a variable that stores and returns a value. For instance, for storing
        of values you want to keep track of but cannot set or get electronically.
+
     Provides ``sweep`` and ``__getitem__`` (slice notation) methods to use a
     settable parameter as the swept variable in a ``Loop``.
     The get/set functionality can be modified.
@@ -792,12 +794,15 @@ 

Source code for qcodes.instrument.parameter

 
     By default only gettable, returning its last value.
     This behaviour can be modified in two ways:
+
     1. Providing a ``get_cmd``/``set_cmd``, which can of the following:
+
        a. callable, with zero args for get_cmd, one arg for set_cmd
        b. VISA command string
        c. None, in which case it retrieves its last value for ``get_cmd``,
           and stores a value for ``set_cmd``
        d. False, in which case trying to get/set will raise an error.
+
     2. Creating a subclass with an explicit ``get``/``set`` method. This
        enables more advanced functionality.
 
@@ -939,8 +944,8 @@ 

Source code for qcodes.instrument.parameter

         if docstring is not None:
             self.__doc__ = os.linesep.join((
                 docstring,
-                '',
-                self.__doc__))
+ '',
+ self.__doc__)) def __getitem__(self, keys): """ @@ -981,8 +986,8 @@

Source code for qcodes.instrument.parameter

             >>> sweep(15, 10.5, step=1.5)
             >[15.0, 13.5, 12.0, 10.5]
         """
-        return SweepFixedValues(self, start=start, stop=stop,
-                                step=step, num=num)
+ return SweepFixedValues(self, start=start, stop=stop,
+ step=step, num=num)
[docs]class ArrayParameter(_BaseParameter): @@ -1133,8 +1138,8 @@

Source code for qcodes.instrument.parameter

                 '',
                 self.__doc__))
 
-        if not hasattr(self, 'get') and not hasattr(self, 'set'):
-            raise AttributeError('ArrayParameter must have a get, set or both')
+ if not hasattr(self, 'get') and not hasattr(self, 'set'): + raise AttributeError('ArrayParameter must have a get, set or both') def _is_nested_sequence_or_none(obj, types, shapes): @@ -1311,8 +1316,8 @@

Source code for qcodes.instrument.parameter

                 '',
                 self.__doc__))
 
-        if not hasattr(self, 'get') and not hasattr(self, 'set'):
-            raise AttributeError('MultiParameter must have a get, set or both')
+ if not hasattr(self, 'get') and not hasattr(self, 'set'): + raise AttributeError('MultiParameter must have a get, set or both') @property def full_names(self): @@ -1323,8 +1328,8 @@

Source code for qcodes.instrument.parameter

                 return [inst_name + '_' + name for name in self.names]
         except AttributeError:
             pass
-
-        return self.names
+ + return self.names class GetLatest(DelegateAttributes, DeferredOperations): @@ -1394,8 +1399,8 @@

Source code for qcodes.instrument.parameter

     """
     parameters = list(parameters)
     multi_par = CombinedParameter(parameters, name, label, unit, units,
-                                  aggregator)
-    return multi_par
+ aggregator) + return multi_par
[docs]class CombinedParameter(Metadatable): @@ -1438,8 +1443,8 @@

Source code for qcodes.instrument.parameter

         self.dimensionality = len(self.sets)
 
         if aggregator:
-            self.f = aggregator
-            setattr(self, 'aggregate', self._aggregate)
+ self.f = aggregator
+ setattr(self, 'aggregate', self._aggregate) def set(self, index: int): """ @@ -1530,8 +1535,8 @@

Source code for qcodes.instrument.parameter

         meta_data['aggregator'] = repr(getattr(self, 'f', None))
         for param in self.parameters:
             meta_data[str(param)] = param.snapshot()
-
-        return meta_data
+ + return meta_data class InstrumentRefParameter(Parameter): @@ -1584,8 +1589,8 @@

Source code for qcodes.instrument.parameter

                  set_cmd=set_cmd, set_parser=set_parser,
                  post_delay=delay, step=step, max_val_age=max_val_age,
                  vals=vals, val_mapping=val_mapping, **kwargs)
-        warnings.warn('`StandardParameter` is deprecated, '
-                        'use `Parameter` instead. {}'.format(self))
+ warnings.warn('`StandardParameter` is deprecated, ' + 'use `Parameter` instead. {}'.format(self))
[docs]class ManualParameter(Parameter): @@ -1596,8 +1601,8 @@

Source code for qcodes.instrument.parameter

         instrument mapping.
         """
         super().__init__(name=name, instrument=instrument,
-                         get_cmd=None, set_cmd=None,
-                         initial_value=initial_value, **kwargs)
+ get_cmd=None, set_cmd=None, + initial_value=initial_value, **kwargs) diff --git a/_modules/qcodes/instrument/sweep_values.html b/_modules/qcodes/instrument/sweep_values.html index 1cc835df348..668c9a6fc9e 100644 --- a/_modules/qcodes/instrument/sweep_values.html +++ b/_modules/qcodes/instrument/sweep_values.html @@ -225,8 +225,8 @@

Source code for qcodes.instrument.sweep_values

if not (getattr(parameter, 'set', None) and getattr(parameter, 'has_set', True)): raise TypeError('parameter {} is not settable'.format(parameter)) - - self.set = parameter.set

+ + self.set = parameter.set def validate(self, values): """ @@ -246,8 +246,8 @@

Source code for qcodes.instrument.sweep_values

""" raise NotImplementedError - def __repr__(self): - return named_repr(self)

+ def __repr__(self): + return named_repr(self)
[docs]class SweepFixedValues(SweepValues): @@ -328,8 +328,8 @@

Source code for qcodes.instrument.sweep_values

# assume a single value self._values.append(keys) self._value_snapshot.append({'item': keys}) - - self.validate(self._values)

+
+ self.validate(self._values) def _add_linear_snapshot(self, vals): self._value_snapshot.append({'first': vals[0], @@ -447,8 +447,8 @@

Source code for qcodes.instrument.sweep_values

def __reversed__(self): new_sv = self.copy() - new_sv.reverse() - return new_sv

+ new_sv.reverse() + return new_sv diff --git a/_modules/qcodes/instrument/visa.html b/_modules/qcodes/instrument/visa.html index 4d2e439d0ee..522539d3caa 100644 --- a/_modules/qcodes/instrument/visa.html +++ b/_modules/qcodes/instrument/visa.html @@ -245,8 +245,8 @@

Source code for qcodes.instrument.visa

         if device_clear:
             self.device_clear()
 
-        self.set_terminator(terminator)
-        self.timeout.set(timeout)
+ self.set_terminator(terminator) + self.timeout.set(timeout) def set_address(self, address): """ @@ -403,8 +403,8 @@

Source code for qcodes.instrument.visa

         snap['address'] = self._address
         snap['terminator'] = self._terminator
         snap['timeout'] = self.timeout.get()
-
-        return snap
+ + return snap diff --git a/_modules/qcodes/instrument_drivers/Advantech/PCIE_1751.html b/_modules/qcodes/instrument_drivers/Advantech/PCIE_1751.html index 1217202b421..38bc685a497 100644 --- a/_modules/qcodes/instrument_drivers/Advantech/PCIE_1751.html +++ b/_modules/qcodes/instrument_drivers/Advantech/PCIE_1751.html @@ -178,15 +178,15 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

[docs]class DAQNaviException(Exception): """ Exception raised if one of the Advantech's DAQNavi library's functions - encounters an error. - """
+ encounters an error. + """
[docs]class DAQNaviWarning(Warning): """ Warning raised if one of the Advantech's DAQNavi library's functions - encounters a warning condition. - """
+ encounters a warning condition. + """
[docs]class Advantech_PCIE_1751(Instrument): @@ -271,8 +271,8 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

self.check(self.dll.InstantDiCtrl_ReadAny(self.di, i, n, values)) if n == 1: return values[0] - else: - return list(values)
+ else:
+ return list(values)
[docs] def write_port(self, i, value): """ @@ -288,29 +288,29 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

data = self.ffi.new('uint8[]', vallist) log.debug('PCIE-1751: Write({}, {}, {})'.format(i, len(vallist), vallist)) - self.check(self.dll.InstantDoCtrl_WriteAny(self.do, i, len(vallist), - data))
+ self.check(self.dll.InstantDoCtrl_WriteAny(self.do, i, len(vallist),
+ data))
[docs] def read_pin(self, port, pin): """ Reads and returns the value pin pin of port port. """ data = self.ffi.new('uint8 *') - self.check(self.dll.InstantDiCtrl_ReadBit(self.di, port, pin, data)) - return data[0]
+ self.check(self.dll.InstantDiCtrl_ReadBit(self.di, port, pin, data)) + return data[0]
[docs] def write_pin(self, port, pin, value): """ Sets pin pin of port port to 1 if value != 0, and to 0 otherwise. - """ - self.check(self.dll.InstantDoCtrl_WriteBit(self.do, port, pin, value))
+ """ + self.check(self.dll.InstantDoCtrl_WriteBit(self.do, port, pin, value))
[docs] def port_count(self): """ Returns the number of ports on the device. Each port contains 8 input or output pins. - """ - return self.dll.InstantDoCtrl_getPortCount(self.do)
+ """ + return self.dll.InstantDoCtrl_getPortCount(self.do)
[docs] def check(self, errorcode): """ @@ -324,13 +324,13 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

errorcode, message)) else: message = self.ERRORMSG.get(errorcode, "Undefined error code.") - raise DAQNaviException("DAQNavi error {:#010X}: {}".format( - errorcode, message))
+ raise DAQNaviException("DAQNavi error {:#010X}: {}".format(
+ errorcode, message))
[docs] def close(self): self.dll.InstantDoCtrl_Dispose(self.do) - self.dll.InstantDiCtrl_Dispose(self.di) - super().close()
+ self.dll.InstantDiCtrl_Dispose(self.di) + super().close() def _get_port_direction(self, i): """ @@ -372,8 +372,8 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

[docs] def get_idn(self): return {'vendor': 'Advantech', 'model': self.device_description.split(',')[0], - 'serial': '', - 'firmware': ''}
+ 'serial': '', + 'firmware': ''} ERRORMSG = { 0x00000000: "The operation is completed successfully.", @@ -423,8 +423,8 @@

Source code for qcodes.instrument_drivers.Advantech.PCIE_1751

0xE000001E: "The function cannot be executed while the buffered AI is " "running.", 0xE000001F: "The value range is not available in single-ended mode.", - 0xE000FFFF: "Undefined error.", - }
+ 0xE000FFFF: "Undefined error.", + } diff --git a/_modules/qcodes/instrument_drivers/AlazarTech/ATS.html b/_modules/qcodes/instrument_drivers/AlazarTech/ATS.html index 64d6d9000af..65fde6102bd 100644 --- a/_modules/qcodes/instrument_drivers/AlazarTech/ATS.html +++ b/_modules/qcodes/instrument_drivers/AlazarTech/ATS.html @@ -355,8 +355,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

for system_id in range(1, system_count + 1): board_count = dll.AlazarBoardsInSystemBySystemID(system_id) for board_id in range(1, board_count + 1): - boards.append(cls.get_board_info(dll, system_id, board_id)) - return boards
+ boards.append(cls.get_board_info(dll, system_id, board_id)) + return boards
[docs] @classmethod def get_board_info(cls, dll, system_id, board_id): @@ -392,8 +392,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

'board_id': board_id, 'board_kind': board_kind, 'max_samples': max_s, - 'bits_per_sample': bps - }
+ 'bits_per_sample': bps
+ } def __init__(self, name, system_id=1, board_id=1, dll_path=None, **kwargs): super().__init__(name, **kwargs) @@ -489,8 +489,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

'latest_cal_date': latest_cal_date, 'memory_size': memory_size, 'asopc_type': asopc_type, - 'pcie_link_speed': pcie_link_speed, - 'pcie_link_width': pcie_link_width}
+ 'pcie_link_speed': pcie_link_speed, + 'pcie_link_width': pcie_link_width}
[docs] def config(self, clock_source=None, sample_rate=None, clock_edge=None, decimation=None, coupling=None, channel_range=None, @@ -591,8 +591,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

self._call_dll('AlazarSetTriggerDelay', self._handle, self.trigger_delay) - self._call_dll('AlazarSetTriggerTimeOut', - self._handle, self.timeout_ticks)
+ self._call_dll('AlazarSetTriggerTimeOut',
+ self._handle, self.timeout_ticks) # TODO(damazter) (W) config AUXIO @@ -816,8 +816,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

for p in self.parameters.values(): p.get() - # return result - return acquisition_controller.post_acquire()
+ # return result + return acquisition_controller.post_acquire() def _set_if_present(self, param_name, value): if value is not None: @@ -882,8 +882,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

:return: None """ for b in self.buffer_list: - b.free_mem() - self.buffer_list = []
+ b.free_mem() + self.buffer_list = []
[docs] def signal_to_volt(self, channel, signal): """ @@ -899,8 +899,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

""" # TODO(damazter) (S) check this # TODO(damazter) (M) use byte value if range{channel} - return (((signal - 127.5) / 127.5) * - (self.parameters['channel_range' + str(channel)].get()))
+ return (((signal - 127.5) / 127.5) *
+ (self.parameters['channel_range' + str(channel)].get()))
[docs] def get_sample_rate(self): """ @@ -921,8 +921,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

decimation = self.decimation.get() if decimation > 0: return rate / decimation - else: - return rate
+ else: + return rate
[docs]class AlazarParameter(Parameter): @@ -988,8 +988,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

'Most probable cause is illegal usage of ._set() ' 'method of this parameter.\n' 'Don\'t use private methods if you do not know ' - 'what you are doing!') - return self._byte_to_value_dict[self._byte]
+ 'what you are doing!')
+ return self._byte_to_value_dict[self._byte] def _get_byte(self): """ @@ -1022,8 +1022,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

Do not use this function if you do not know what you are doing :return: None - """ - self._uptodate_flag = True
+ """ + self._uptodate_flag = True
[docs]class Buffer: @@ -1080,8 +1080,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

ctypes.c_void_p, ctypes.c_long, ctypes.c_long] ctypes.windll.kernel32.VirtualFree.restype = ctypes.c_int ctypes.windll.kernel32.VirtualFree(ctypes.c_void_p(self.addr), 0, - mem_release) - self._allocated = False
+ mem_release)
+ self._allocated = False
[docs] def __del__(self): """ @@ -1094,8 +1094,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

if self._allocated: self.free_mem() logging.warning( - 'Buffer prevented memory leak; Memory released to Windows.\n' - 'Memory should have been released before buffer was deleted.')
+ 'Buffer prevented memory leak; Memory released to Windows.\n' + 'Memory should have been released before buffer was deleted.')
[docs]class AcquisitionController(Instrument): @@ -1143,15 +1143,15 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

The Alazar instrument will call this method right before 'AlazarStartCapture' is called """ - raise NotImplementedError( - 'This method should be implemented in a subclass')
+ raise NotImplementedError(
+ 'This method should be implemented in a subclass')
[docs] def pre_acquire(self): """ This method is called immediately after 'AlazarStartCapture' is called """ - raise NotImplementedError( - 'This method should be implemented in a subclass')
+ raise NotImplementedError( + 'This method should be implemented in a subclass')
[docs] def handle_buffer(self, buffer): """ @@ -1164,8 +1164,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

Returns: something, it is ignored in any case """ - raise NotImplementedError( - 'This method should be implemented in a subclass')
+ raise NotImplementedError(
+ 'This method should be implemented in a subclass')
[docs] def post_acquire(self): """ @@ -1177,8 +1177,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

this function should return all relevant data that you want to get form the acquisition """ - raise NotImplementedError( - 'This method should be implemented in a subclass')
+ raise NotImplementedError( + 'This method should be implemented in a subclass')
[docs]class TrivialDictionary: @@ -1193,8 +1193,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS

return item def __contains__(self, item): - # this makes sure that this dictionary contains everything - return True
+ # this makes sure that this dictionary contains everything
+ return True diff --git a/_modules/qcodes/instrument_drivers/AlazarTech/ATS9870.html b/_modules/qcodes/instrument_drivers/AlazarTech/ATS9870.html index 16c9213f54f..f62e33623ee 100644 --- a/_modules/qcodes/instrument_drivers/AlazarTech/ATS9870.html +++ b/_modules/qcodes/instrument_drivers/AlazarTech/ATS9870.html @@ -427,8 +427,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS9870

model = self.get_idn()['model'] if model != 'ATS9870': - raise Exception("The Alazar board kind is not 'ATS9870'," - " found '" + str(model) + "' instead.")
+ raise Exception("The Alazar board kind is not 'ATS9870'," + " found '" + str(model) + "' instead.") diff --git a/_modules/qcodes/instrument_drivers/AlazarTech/ATS_acquisition_controllers.html b/_modules/qcodes/instrument_drivers/AlazarTech/ATS_acquisition_controllers.html index cab10b93cfd..b57e385347c 100644 --- a/_modules/qcodes/instrument_drivers/AlazarTech/ATS_acquisition_controllers.html +++ b/_modules/qcodes/instrument_drivers/AlazarTech/ATS_acquisition_controllers.html @@ -210,8 +210,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control with the alazar_driver.acquire :param kwargs: :return: - """ - self.acquisitionkwargs.update(**kwargs) + """ + self.acquisitionkwargs.update(**kwargs)
[docs] def do_acquisition(self): """ @@ -220,8 +220,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control :return: """ value = self._get_alazar().acquire(acquisition_controller=self, - **self.acquisitionkwargs) - return value

+ **self.acquisitionkwargs) + return value
[docs] def pre_start_capture(self): """ @@ -240,8 +240,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control self.cos_list = np.cos(angle_list) self.sin_list = np.sin(angle_list) self.buffer = np.zeros(self.samples_per_record * - self.records_per_buffer * - self.number_of_channels)

+ self.records_per_buffer * + self.number_of_channels)
[docs] def pre_acquire(self): """ @@ -250,15 +250,15 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control """ # this could be used to start an Arbitrary Waveform Generator, etc... # using this method ensures that the contents are executed AFTER the - # Alazar card starts listening for a trigger pulse - pass

+ # Alazar card starts listening for a trigger pulse + pass
[docs] def handle_buffer(self, data): """ See AcquisitionController :return: - """ - self.buffer += data
+ """ + self.buffer += data
[docs] def post_acquire(self): """ @@ -291,8 +291,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control # (res1[1] - res2[1]) % 360] return alazar.signal_to_volt(1, res1[0] + 127.5) else: - raise Exception("Could not find CHANNEL_B during data extraction") - return None

+ raise Exception("Could not find CHANNEL_B during data extraction") + return None
[docs] def fit(self, buf): """ @@ -308,8 +308,8 @@

Source code for qcodes.instrument_drivers.AlazarTech.ATS_acquisition_control # a negative frequency as well ampl = 2 * np.sqrt(RePart ** 2 + ImPart ** 2) - # see manual page 52!!! (using unsigned data) - return [ampl, math.atan2(ImPart, RePart) * 360 / (2 * math.pi)]

+ # see manual page 52!!! (using unsigned data) + return [ampl, math.atan2(ImPart, RePart) * 360 / (2 * math.pi)] diff --git a/_modules/qcodes/instrument_drivers/HP/HP8133A.html b/_modules/qcodes/instrument_drivers/HP/HP8133A.html index e8bb7bb24dd..b66eb9b697c 100644 --- a/_modules/qcodes/instrument_drivers/HP/HP8133A.html +++ b/_modules/qcodes/instrument_drivers/HP/HP8133A.html @@ -251,8 +251,8 @@

Source code for qcodes.instrument_drivers.HP.HP8133A

self.amplitude_offset(0) - self.add_function('reset', call_cmd='*RST') - self.connect_message()
+ self.add_function('reset', call_cmd='*RST') + self.connect_message() diff --git a/_modules/qcodes/instrument_drivers/HP/HP8753D.html b/_modules/qcodes/instrument_drivers/HP/HP8753D.html index d1f7eaacd75..b3dfd12be1e 100644 --- a/_modules/qcodes/instrument_drivers/HP/HP8753D.html +++ b/_modules/qcodes/instrument_drivers/HP/HP8753D.html @@ -192,12 +192,12 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

Args: value: the VISA return string using exponential notation - """ - return int(float(value))
+ """ + return int(float(value)) -
[docs]class TraceNotReady(Exception): - pass
+
[docs]class TraceNotReady(Exception):
+ pass
[docs]class HP8753DTrace(ArrayParameter): @@ -239,8 +239,8 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

self.label = self._instrument.s_parameter() self.unit = _unit_map[self._instrument.display_format()] - - self._instrument._traceready = True
+
+ self._instrument._traceready = True
[docs] def get_raw(self): """ @@ -266,8 +266,8 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

dt = np.dtype('>f') trace1 = np.fromstring(first_points, dtype=dt) - - return trace1
+ + return trace1
[docs]class HP8753D(VisaInstrument): @@ -383,14 +383,14 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

""" Resets the instrument to factory default state """ - # use OPC to make sure we wait for operation to finish - self.ask('OPC?;PRES')
+ # use OPC to make sure we wait for operation to finish
+ self.ask('OPC?;PRES')
[docs] def run_continously(self) -> None: """ Set the instrument in run continously mode - """ - self.write('CONT')
+ """ + self.write('CONT')
[docs] def run_N_times(self, N: int) -> None: """ @@ -412,20 +412,20 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

' Setting VISA timeout to {} s.'.format(new_timeout/1000)) self.ask('OPC?;NUMG{}'.format(N)) - - self.visa_handle.timeout = old_timeout
+
+ self.visa_handle.timeout = old_timeout
[docs] def invalidate_trace(self, cmd: str, value: Union[float, int, str]) -> None: """ Wrapper for set_cmds that make the trace not ready """ - self._traceready = False - self.write(cmd.format(value))
+ self._traceready = False + self.write(cmd.format(value))
[docs] def startup(self) -> None: - self._traceready = False - self.display_format(self.display_format())
+ self._traceready = False + self.display_format(self.display_format()) def _s_parameter_setter(self, param: str) -> None: """ @@ -492,8 +492,8 @@

Source code for qcodes.instrument_drivers.HP.HP8753D

resp = self.ask('{}?'.format(cmd)) if resp in ['1', '1\n']: break - - return val_mapping[cmd]
+ + return val_mapping[cmd] diff --git a/_modules/qcodes/instrument_drivers/HP/HP_83650A.html b/_modules/qcodes/instrument_drivers/HP/HP_83650A.html index 7a4cfe8475c..13d632dcc6c 100644 --- a/_modules/qcodes/instrument_drivers/HP/HP_83650A.html +++ b/_modules/qcodes/instrument_drivers/HP/HP_83650A.html @@ -175,8 +175,8 @@

Source code for qcodes.instrument_drivers.HP.HP_83650A

log = logging.getLogger(__name__) -
[docs]def parsestr(v): - return v.strip().strip('"')
+
[docs]def parsestr(v):
+ return v.strip().strip('"')
[docs]class HP_83650A(VisaInstrument): @@ -269,8 +269,8 @@

Source code for qcodes.instrument_drivers.HP.HP_83650A

[docs] def reset(self): log.debug('Resetting instrument') - self.write('*RST') - self.print_all()
+ self.write('*RST')
+ self.print_all()
[docs] def print_all(self): log.debug('Reading all settings from instrument') @@ -278,15 +278,15 @@

Source code for qcodes.instrument_drivers.HP.HP_83650A

print(self.power.label + ':', self.power.get(), self.power.unit) print(self.frequency.label + ': %e' % self.frequency.get(), self.frequency.unit) - print(self.freqmode.label + ':', self.freqmode.get()) - self.print_modstatus()
+ print(self.freqmode.label + ':', self.freqmode.get())
+ self.print_modstatus()
[docs] def print_modstatus(self): print(self.fmstatus.label + ':', self.fmstatus.get()) print(self.fmcoup.label + ':', self.fmcoup.get()) print(self.amstatus.label + ':', self.amstatus.get()) - print(self.pulsestatus.label + ':', self.pulsestatus.get()) - print(self.pulsesource.label + ':', self.pulsesource.get())
+ print(self.pulsestatus.label + ':', self.pulsestatus.get()) + print(self.pulsesource.label + ':', self.pulsesource.get()) diff --git a/_modules/qcodes/instrument_drivers/Harvard/Decadac.html b/_modules/qcodes/instrument_drivers/Harvard/Decadac.html index 5be511bb4d8..98d3fb0cde9 100644 --- a/_modules/qcodes/instrument_drivers/Harvard/Decadac.html +++ b/_modules/qcodes/instrument_drivers/Harvard/Decadac.html @@ -169,8 +169,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

from qcodes.utils import validators as vals -
[docs]class DACException(Exception): - pass
+
[docs]class DACException(Exception):
+ pass
[docs]class DacReader(object): @@ -314,8 +314,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

raise DACException("Failed to set EEPROM address {}.".format(addr)) self.ask_raw("{}{};".format(write_command, val)) # Check the write was successful - if int(self._dac_parse(self.ask_raw(query_command))) != val: - raise DACException("Failed to write value ({}) to address {}.".format(val, addr))
+ if int(self._dac_parse(self.ask_raw(query_command))) != val:
+ raise DACException("Failed to write value ({}) to address {}.".format(val, addr))
[docs]class DacChannel(InstrumentChannel, DacReader): @@ -449,15 +449,15 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

Since all commands are echoed back, we must keep track of responses as well, otherwise commands receive the wrong response. """ - self._set_channel() - return self.ask_raw(cmd)
+ self._set_channel()
+ return self.ask_raw(cmd)
[docs] def ask(self, cmd): """ Overload ask to set channel prior to operations """ - self._set_channel() - return self.ask_raw(cmd)
+ self._set_channel() + return self.ask_raw(cmd)
[docs]class DacSlot(InstrumentChannel, DacReader): @@ -509,15 +509,15 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

Since all commands are echoed back, we must keep track of responses as well, otherwise commands receive the wrong response. """ - self._set_slot() - return self.ask_raw(cmd)
+ self._set_slot()
+ return self.ask_raw(cmd)
[docs] def ask(self, cmd): """ Overload ask to set channel prior to operations """ - self._set_slot() - return self.ask_raw(cmd)
+ self._set_slot() + return self.ask_raw(cmd)
[docs]class Decadac(VisaInstrument, DacReader): @@ -590,8 +590,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

Args: volt(float): The voltage to set all gates to. """ - for chan in self.channels: - chan.volt.set(volt)
+ for chan in self.channels:
+ chan.volt.set(volt)
[docs] def ramp_all(self, volt, ramp_rate): """ @@ -611,8 +611,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

# Wait for all channels to complete ramping. # The slope is reset to 0 once ramping is complete. for chan in self.channels: - while chan.slope.get(): - pass
+ while chan.slope.get():
+ pass
[docs] def get_idn(self): """ @@ -623,8 +623,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

A dict containing a serial and hardware version """ self._feature_detect() - - return {"serial": self.serial_no, "hardware_version": self.version}
+
+ return {"serial": self.serial_no, "hardware_version": self.version}
[docs] def connect_message(self, idn_param='IDN', begin_time=None): """ @@ -641,12 +641,12 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

con_msg = ("Connected to Harvard DecaDAC " "(hw ver: {}, serial: {}) in {:.2f}s".format( - self.version, self.serial_no, t)) - print(con_msg)
+ self.version, self.serial_no, t))
+ print(con_msg)
[docs] def __repr__(self): - """Simplified repr giving just the class and name.""" - return '<{}: {}>'.format(type(self).__name__, self.name)
+ """Simplified repr giving just the class and name.""" + return '<{}: {}>'.format(type(self).__name__, self.name) def _feature_detect(self): """ @@ -693,8 +693,8 @@

Source code for qcodes.instrument_drivers.Harvard.Decadac

Since all commands are echoed back, we must keep track of responses as well, otherwise commands receive the wrong response. Hence all writes must also read a response. - """ - return self.ask(cmd)
+ """ + return self.ask(cmd) diff --git a/_modules/qcodes/instrument_drivers/Keysight/Infiniium.html b/_modules/qcodes/instrument_drivers/Keysight/Infiniium.html index be9fbf92404..f6e620e63cd 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/Infiniium.html +++ b/_modules/qcodes/instrument_drivers/Keysight/Infiniium.html @@ -178,12 +178,12 @@

Source code for qcodes.instrument_drivers.Keysight.Infiniium

log = logging.getLogger(__name__) -
[docs]class TraceNotReady(Exception): - pass
+
[docs]class TraceNotReady(Exception):
+ pass -
[docs]class TraceSetPointsChanged(Exception): - pass
+
[docs]class TraceSetPointsChanged(Exception):
+ pass
[docs]class RawTrace(ArrayParameter): @@ -229,8 +229,8 @@

Source code for qcodes.instrument_drivers.Keysight.Infiniium

self.setpoints = (tuple(xdata), ) self.shape = (self.npts, ) - # make this on a per channel basis? - self._instrument._parent.trace_ready = True
+ # make this on a per channel basis?
+ self._instrument._parent.trace_ready = True
[docs] def get(self): # when get is called the setpoints have to be known already @@ -310,8 +310,8 @@

Source code for qcodes.instrument_drivers.Keysight.Infiniium

# continue refresh if state == 'RUN': instr.write(':RUN') - - return channel_data
+
+ return channel_data
[docs]class InfiniiumChannel(InstrumentChannel): @@ -369,8 +369,8 @@

Source code for qcodes.instrument_drivers.Keysight.Infiniium

# Acquisition self.add_parameter(name='trace', channel=channel, - parameter_class=RawTrace - )
+ parameter_class=RawTrace
+ )
[docs]class Infiniium(VisaInstrument): """ @@ -565,8 +565,8 @@

Source code for qcodes.instrument_drivers.Keysight.Infiniium

executes command and sets trace_ready status to false any command that effects the number of setpoints should invalidate the trace """ - self.trace_ready = False - self.write(cmd.format(val))
+ self.trace_ready = False
+ self.write(cmd.format(val)) diff --git a/_modules/qcodes/instrument_drivers/Keysight/KeysightAgilent_33XXX.html b/_modules/qcodes/instrument_drivers/Keysight/KeysightAgilent_33XXX.html index 4471ef428e2..af80736e3c0 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/KeysightAgilent_33XXX.html +++ b/_modules/qcodes/instrument_drivers/Keysight/KeysightAgilent_33XXX.html @@ -398,8 +398,8 @@

Source code for qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX

get_parser=float, docstring=('The burst period is the time ' 'between the starts of consecutive ' - 'bursts when trigger is immediate.') - ) + 'bursts when trigger is immediate.') + )
[docs]class SyncChannel(InstrumentChannel): @@ -426,8 +426,8 @@

Source code for qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX

label='Source of sync function', set_cmd='OUTPut:SYNC:SOURce {}', get_cmd='OUTPut:SYNC:SOURce?', - val_mapping={1: 'CH1', 2: 'CH2'}, - vals=vals.Enum(1, 2))
+ val_mapping={1: 'CH1', 2: 'CH2'}, + vals=vals.Enum(1, 2))
[docs]class WaveformGenerator_33XXX(VisaInstrument): @@ -521,8 +521,8 @@

Source code for qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX

log.debug(' {}, {}'.format(err_code, err_message)) if verbose: print(err_code, err_message) - - log.debug('...flushing complete')
+ + log.debug('...flushing complete') diff --git a/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B.html b/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B.html index d655c1148d7..0e6075d60ad 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B.html +++ b/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B.html @@ -466,8 +466,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_33500B

log.debug(' {}, {}'.format(err_code, err_message)) if verbose: print(err_code, err_message) - - log.debug('...flushing complete')
+ + log.debug('...flushing complete') diff --git a/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B_channels.html b/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B_channels.html index d023fd441c2..8dc11e34914 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B_channels.html +++ b/_modules/qcodes/instrument_drivers/Keysight/Keysight_33500B_channels.html @@ -391,8 +391,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_33500B_channels< get_parser=float, docstring=('The burst period is the time ' 'between the starts of consecutive ' - 'bursts when trigger is immediate.') - ) + 'bursts when trigger is immediate.') + )
[docs]class Keysight_33500B_Channels(VisaInstrument): @@ -491,8 +491,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_33500B_channels< log.debug(' {}, {}'.format(err_code, err_message)) if verbose: print(err_code, err_message) - - log.debug('...flushing complete')

+ + log.debug('...flushing complete') diff --git a/_modules/qcodes/instrument_drivers/Keysight/Keysight_34465A.html b/_modules/qcodes/instrument_drivers/Keysight/Keysight_34465A.html index d22dc13734e..7e4d149c54a 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/Keysight_34465A.html +++ b/_modules/qcodes/instrument_drivers/Keysight/Keysight_34465A.html @@ -219,8 +219,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_34465A

self.setpoints = (tuple(np.linspace(0, N*self.time_per_point, N)),) self.shape = (N,) - - self.properly_prepared = True
+ + self.properly_prepared = True
[docs] def get(self): @@ -256,8 +256,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_34465A

numvals = None self._instrument.display_clear() - - return numvals
+ + return numvals
[docs]class Keysight_34465A(VisaInstrument): @@ -614,8 +614,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_34465A

log.debug(' {}, {}'.format(err_code, err_message)) if verbose: print(err_code, err_message) - - log.debug('...flushing complete')
+ + log.debug('...flushing complete') diff --git a/_modules/qcodes/instrument_drivers/Keysight/Keysight_E8267D.html b/_modules/qcodes/instrument_drivers/Keysight/Keysight_E8267D.html index d200385b76d..69a9f38b12c 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/Keysight_E8267D.html +++ b/_modules/qcodes/instrument_drivers/Keysight/Keysight_E8267D.html @@ -171,8 +171,8 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_E8267D

if stat.startswith('0'): stat = 'Off' elif stat.startswith('1'): - stat = 'On' - return stat
+ stat = 'On' + return stat
[docs]class Keysight_E8267D(VisaInstrument): @@ -227,11 +227,11 @@

Source code for qcodes.instrument_drivers.Keysight.Keysight_E8267D

self.connect_message() -
[docs] def on(self): - self.set('status', 'on')
+
[docs] def on(self):
+ self.set('status', 'on') -
[docs] def off(self): - self.set('status', 'off')
+
[docs] def off(self):
+ self.set('status', 'off') diff --git a/_modules/qcodes/instrument_drivers/Keysight/M3201A.html b/_modules/qcodes/instrument_drivers/Keysight/M3201A.html index 02fa3552e40..1ab70545311 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/M3201A.html +++ b/_modules/qcodes/instrument_drivers/Keysight/M3201A.html @@ -180,8 +180,8 @@

Source code for qcodes.instrument_drivers.Keysight.M3201A

slot (int): slot number where the device is plugged in """ - def __init__(self, name, chassis=1, slot=7, **kwargs): - super().__init__(name, chassis, slot, channels=4, triggers=8, **kwargs)
+ def __init__(self, name, chassis=1, slot=7, **kwargs): + super().__init__(name, chassis, slot, channels=4, triggers=8, **kwargs) diff --git a/_modules/qcodes/instrument_drivers/Keysight/M3300A.html b/_modules/qcodes/instrument_drivers/Keysight/M3300A.html index dbe08433a95..63628ff42aa 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/M3300A.html +++ b/_modules/qcodes/instrument_drivers/Keysight/M3300A.html @@ -190,8 +190,8 @@

Source code for qcodes.instrument_drivers.Keysight.M3300A

Example: AWG = AWG('M3300A') """ - def __init__(self, name, chassis=1, slot=8, **kwargs): - super().__init__(name, chassis=1, slot=8, channels=4, triggers=8, **kwargs)
+ def __init__(self, name, chassis=1, slot=8, **kwargs): + super().__init__(name, chassis=1, slot=8, channels=4, triggers=8, **kwargs)
[docs]class M3300A_DIG(SD_DIG): """ Driver for the digitizer of the keysight M3300A card. @@ -204,8 +204,8 @@

Source code for qcodes.instrument_drivers.Keysight.M3300A

Example: DIG = DIG('M3300A') """ - def __init__(self, name, chassis=1, slot=8, **kwargs): - super().__init__(name, chassis, slot, channels=8, triggers=8, **kwargs)
+ def __init__(self, name, chassis=1, slot=8, **kwargs):
+ super().__init__(name, chassis, slot, channels=8, triggers=8, **kwargs) diff --git a/_modules/qcodes/instrument_drivers/Keysight/N51x1.html b/_modules/qcodes/instrument_drivers/Keysight/N51x1.html index f3acb0f197f..9b389ce6c8e 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/N51x1.html +++ b/_modules/qcodes/instrument_drivers/Keysight/N51x1.html @@ -216,8 +216,8 @@

Source code for qcodes.instrument_drivers.Keysight.N51x1

IDN = self.ask_raw('*IDN?') vendor, model, serial, firmware = map(str.strip, IDN.split(',')) IDN = {'vendor': vendor, 'model': model, - 'serial': serial, 'firmware': firmware} - return IDN
+ 'serial': serial, 'firmware': firmware} + return IDN diff --git a/_modules/qcodes/instrument_drivers/Keysight/test_suite.html b/_modules/qcodes/instrument_drivers/Keysight/test_suite.html index dbe9bd2cedf..6519bc24043 100644 --- a/_modules/qcodes/instrument_drivers/Keysight/test_suite.html +++ b/_modules/qcodes/instrument_drivers/Keysight/test_suite.html @@ -187,8 +187,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

driver = SD_Module
[docs] @classmethod - def setUpClass(cls): - super().setUpClass()
+ def setUpClass(cls):
+ super().setUpClass()
[docs] def test_chassis_and_slot(self): chassis_number = self.instrument.chassis_number() @@ -201,8 +201,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

serial_number_test = self.instrument.get_serial_number_by_slot(chassis_number, slot_number) # hack to make this test pass even with the current faulty Keysight lib (v.2.01.00) - serial_number = serial_number[:-1] - self.assertEqual(serial_number_test, serial_number)
+ serial_number = serial_number[:-1] + self.assertEqual(serial_number_test, serial_number)
[docs]@unittest.skipIf(not Keysight_M3201A, "Keysight_M3201A tests requires the keysightSD1 module") @@ -230,20 +230,20 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

[docs] @classmethod def setUpClass(cls): super().setUpClass() - print('Did set up Class. Should have printed `found ..., testing`.') - cls.instrument.off() # Not a test but a safety measure
+ print('Did set up Class. Should have printed `found ..., testing`.')
+ cls.instrument.off() # Not a test but a safety measure
[docs] def test_chassis_number(self): - chassis_number = self.instrument.chassis_number() - self.assertEqual(chassis_number, 1)
+ chassis_number = self.instrument.chassis_number() + self.assertEqual(chassis_number, 1)
[docs] def test_slot_number(self): - slot_number = self.instrument.slot_number() - self.assertEqual(slot_number, 7)
+ slot_number = self.instrument.slot_number() + self.assertEqual(slot_number, 7)
[docs] def test_serial_number(self): - serial_number = self.instrument.serial_number() - self.assertEqual(serial_number, 'ES56600108')
+ serial_number = self.instrument.serial_number() + self.assertEqual(serial_number, 'ES56600108')
[docs] def test_chassis_and_slot(self): chassis_number = self.instrument.chassis_number() @@ -256,8 +256,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

serial_number_test = self.instrument.get_serial_number_by_slot(chassis_number, slot_number) # hack to make this test pass even with the current faulty Keysight lib (v.2.01.00) - serial_number = serial_number[:-1] - self.assertEqual(serial_number_test, serial_number)
+ serial_number = serial_number[:-1]
+ self.assertEqual(serial_number_test, serial_number)
[docs] def test_open_close(self): chassis_number = self.instrument.chassis_number() @@ -275,8 +275,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.close_soft() self.instrument.open_with_slot(product_name, chassis_number, slot_number) - open_status = self.instrument.open() - self.assertEqual(open_status, True)
+ open_status = self.instrument.open()
+ self.assertEqual(open_status, True)
[docs] def test_clock_frequency(self): with self.assertRaises(ValueError): @@ -293,8 +293,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.clock_frequency(test_f) self.assertAlmostEqual(self.instrument.clock_frequency(), test_f, delta=1) - # leave the setup in the initial state - self.instrument.clock_frequency(cur_f)
+ # leave the setup in the initial state
+ self.instrument.clock_frequency(cur_f)
[docs] def test_channel_frequency(self): cur_f = self.instrument.frequency_channel_0.get_latest() @@ -313,8 +313,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

# leave the setup in the initial state or default values if no initial state was found if cur_f: self.instrument.frequency_channel_0.set(cur_f) - else: - self.instrument.frequency_channel_0.set(0)
+ else:
+ self.instrument.frequency_channel_0.set(0)
[docs] def test_channel_phase(self): cur_p = self.instrument.phase_channel_0.get_latest() @@ -333,8 +333,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

# leave the setup in the initial state or default values if no initial state was found if cur_p: self.instrument.phase_channel_0.set(cur_p) - else: - self.instrument.phase_channel_0.set(0)
+ else:
+ self.instrument.phase_channel_0.set(0)
[docs] def test_channel_amplitude(self): cur_a = self.instrument.amplitude_channel_0.get_latest() @@ -360,8 +360,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.amplitude_channel_0.set(0) if cur_o: self.instrument.offset_channel_0.set(cur_o) - else: - self.instrument.offset_channel_0.set(0)
+ else:
+ self.instrument.offset_channel_0.set(0)
[docs] def test_channel_offset(self): cur_o = self.instrument.offset_channel_0.get_latest() @@ -387,8 +387,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.offset_channel_0.set(0) if cur_a: self.instrument.amplitude_channel_0.set(cur_a) - else: - self.instrument.amplitude_channel_0.set(0)
+ else:
+ self.instrument.amplitude_channel_0.set(0)
[docs] def test_channel_wave_shape(self): cur_w = self.instrument.wave_shape_channel_0.get_latest() @@ -421,8 +421,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.offset_channel_0.set(0) if cur_a: self.instrument.amplitude_channel_0.set(cur_a) - else: - self.instrument.amplitude_channel_0.set(0)
+ else:
+ self.instrument.amplitude_channel_0.set(0)
[docs] def test_PXI_trigger(self): with self.assertRaises(ValueError): @@ -440,8 +440,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.pxi_trigger_number_0.set(test_pxi) self.assertEqual(self.instrument.pxi_trigger_number_0.get(), test_pxi) - # leave the setup in the initial state - self.instrument.pxi_trigger_number_0.set(cur_pxi)
+ # leave the setup in the initial state + self.instrument.pxi_trigger_number_0.set(cur_pxi)
[docs]@unittest.skipIf(not M3300A_AWG, "M3300A_AWG tests requires the keysightSD1 module") @@ -469,20 +469,20 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

[docs] @classmethod def setUpClass(cls): super().setUpClass() - print('Did set up Class. Should have printed `found ..., testing`.') - cls.instrument.off() # Not a test but a safety measure
+ print('Did set up Class. Should have printed `found ..., testing`.')
+ cls.instrument.off() # Not a test but a safety measure
[docs] def test_chassis_number(self): - chassis_number = self.instrument.chassis_number() - self.assertEqual(chassis_number, 1)
+ chassis_number = self.instrument.chassis_number() + self.assertEqual(chassis_number, 1)
[docs] def test_slot_number(self): - slot_number = self.instrument.slot_number() - self.assertEqual(slot_number, 8)
+ slot_number = self.instrument.slot_number() + self.assertEqual(slot_number, 8)
[docs] def test_serial_number(self): - serial_number = self.instrument.serial_number() - self.assertEqual(serial_number, 'ES56600101')
+ serial_number = self.instrument.serial_number() + self.assertEqual(serial_number, 'ES56600101')
[docs] def test_chassis_and_slot(self): chassis_number = self.instrument.chassis_number() @@ -495,8 +495,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

serial_number_test = self.instrument.get_serial_number_by_slot(chassis_number, slot_number) # hack to make this test pass even with the current faulty Keysight lib (v.2.01.00) - serial_number = serial_number[:-1] - self.assertEqual(serial_number_test, serial_number)
+ serial_number = serial_number[:-1]
+ self.assertEqual(serial_number_test, serial_number)
[docs] def test_open_close(self): chassis_number = self.instrument.chassis_number() @@ -514,8 +514,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.close_soft() self.instrument.open_with_slot(product_name, chassis_number, slot_number) - open_status = self.instrument.open() - self.assertEqual(open_status, True)
+ open_status = self.instrument.open()
+ self.assertEqual(open_status, True)
[docs] def test_clock_frequency(self): # TODO: This does not work, figure out why @@ -531,8 +531,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

# # test_f = 453.152e6 # self.instrument.clock_frequency(test_f) - # self.assertAlmostEqual(self.instrument.clock_frequency(), test_f, delta=1) - print(cur_f)
+ # self.assertAlmostEqual(self.instrument.clock_frequency(), test_f, delta=1)
+ print(cur_f) # leave the setup in the initial state # self.instrument.clock_frequency(cur_f) @@ -553,8 +553,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

# leave the setup in the initial state or default values if no initial state was found if cur_f: self.instrument.frequency_channel_0.set(cur_f) - else: - self.instrument.frequency_channel_0.set(0)
+ else: + self.instrument.frequency_channel_0.set(0)
[docs] def test_channel_phase(self): cur_p = self.instrument.phase_channel_0.get_latest() @@ -573,8 +573,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

# leave the setup in the initial state or default values if no initial state was found if cur_p: self.instrument.phase_channel_0.set(cur_p) - else: - self.instrument.phase_channel_0.set(0)
+ else:
+ self.instrument.phase_channel_0.set(0)
[docs] def test_channel_amplitude(self): cur_a = self.instrument.amplitude_channel_0.get_latest() @@ -600,8 +600,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.amplitude_channel_0.set(0) if cur_o: self.instrument.offset_channel_0.set(cur_o) - else: - self.instrument.offset_channel_0.set(0)
+ else:
+ self.instrument.offset_channel_0.set(0)
[docs] def test_channel_offset(self): cur_o = self.instrument.offset_channel_0.get_latest() @@ -627,8 +627,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.offset_channel_0.set(0) if cur_a: self.instrument.amplitude_channel_0.set(cur_a) - else: - self.instrument.amplitude_channel_0.set(0)
+ else:
+ self.instrument.amplitude_channel_0.set(0)
[docs] def test_channel_wave_shape(self): cur_w = self.instrument.wave_shape_channel_0.get_latest() @@ -661,8 +661,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.offset_channel_0.set(0) if cur_a: self.instrument.amplitude_channel_0.set(cur_a) - else: - self.instrument.amplitude_channel_0.set(0)
+ else:
+ self.instrument.amplitude_channel_0.set(0)
[docs] def test_PXI_trigger(self): with self.assertRaises(ValueError): @@ -680,8 +680,8 @@

Source code for qcodes.instrument_drivers.Keysight.test_suite

self.instrument.pxi_trigger_number_0.set(test_pxi) self.assertEqual(self.instrument.pxi_trigger_number_0.get(), test_pxi) - # leave the setup in the initial state - self.instrument.pxi_trigger_number_0.set(cur_pxi)
+ # leave the setup in the initial state + self.instrument.pxi_trigger_number_0.set(cur_pxi) diff --git a/_modules/qcodes/instrument_drivers/Lakeshore/Model_336.html b/_modules/qcodes/instrument_drivers/Lakeshore/Model_336.html index c4db364a983..7606111f600 100644 --- a/_modules/qcodes/instrument_drivers/Lakeshore/Model_336.html +++ b/_modules/qcodes/instrument_drivers/Lakeshore/Model_336.html @@ -194,8 +194,8 @@

Source code for qcodes.instrument_drivers.Lakeshore.Model_336

'Sensor Units Zero': 64, 'Sensor Units Overrange': 128}, label='Sensor_Status') self.add_parameter('sensor_name', get_cmd='INNAME? {}'.format(self._channel), - get_parser=str, set_cmd='INNAME {},\"{{}}\"'.format(self._channel), vals=Strings(15), - label='Sensor_Name')
+ get_parser=str, set_cmd='INNAME {},\"{{}}\"'.format(self._channel), vals=Strings(15), + label='Sensor_Name')
[docs]class Model_336(VisaInstrument): @@ -218,8 +218,8 @@

Source code for qcodes.instrument_drivers.Lakeshore.Model_336

self.add_submodule(chan_name, channel) channels.lock() self.add_submodule("channels", channels) - - self.connect_message()
+
+ self.connect_message() diff --git a/_modules/qcodes/instrument_drivers/QDev/QDac.html b/_modules/qcodes/instrument_drivers/QDev/QDac.html index faf564d3a37..5f8486f3824 100644 --- a/_modules/qcodes/instrument_drivers/QDev/QDac.html +++ b/_modules/qcodes/instrument_drivers/QDev/QDac.html @@ -349,8 +349,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac

params_to_skip_update = self._params_to_skip_update supfun = super().snapshot_base snap = supfun(update=update, - params_to_skip_update=params_to_skip_update) - return snap
+ params_to_skip_update=params_to_skip_update) + return snap ######################### # Channel gets/sets @@ -458,8 +458,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac

if 'range' in param: value = returnmap[param][value] - - return value
+ + return value def _get_status(self, readcurrents=False): r''' @@ -650,8 +650,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac

""" Print the finite slopes assigned to channels """ - for sl in self._slopes: - print('Channel {}, slope: {} (V/s)'.format(sl[0], sl[1]))
+ for sl in self._slopes: + print('Channel {}, slope: {} (V/s)'.format(sl[0], sl[1])) def _rampvoltage(self, chan, fg, v_start, setvoltage, ramptime): """ @@ -725,11 +725,11 @@

Source code for qcodes.instrument_drivers.QDev.QDac

log.info('Sending command string: {}'.format(cmd)) nr_bytes_written, ret_code = self.visa_handle.write(cmd) - self.check_error(ret_code) - self._write_response = self.visa_handle.read()
+ self.check_error(ret_code) + self._write_response = self.visa_handle.read() -
[docs] def read(self): - return self.visa_handle.read()
+
[docs] def read(self):
+ return self.visa_handle.read() def _wait_and_clear(self, delay=0.5): time.sleep(delay) @@ -747,8 +747,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac

self.visa_handle.read())) # take care of the rest of the output - for ii in range(50): - self.visa_handle.read()
+ for ii in range(50): + self.visa_handle.read() def _get_firmware_version(self): self.write('status') @@ -790,8 +790,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac

line += printdict[pp] value = param.get_latest() line += ': {}'.format(returnmap[pp][value]) - line += '. ' - print(line)
+ line += '. ' + print(line) diff --git a/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html b/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html index b4eb8d0acc9..99ee431d8fe 100644 --- a/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html +++ b/_modules/qcodes/instrument_drivers/QDev/QDac_channels.html @@ -279,8 +279,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

if params_to_skip_update is None: params_to_skip_update = ('v', 'i', 'irange', 'vrange') snap = super().snapshot_base(update=update, - params_to_skip_update=params_to_skip_update) - return snap
+ params_to_skip_update=params_to_skip_update) + return snap
[docs]class QDacMultiChannelParameter(MultiChannelInstrumentParameter): @@ -307,8 +307,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

else: output = tuple(chan.parameters[self._param_name].get() for chan in self._channels) - - return output
+ + return output
[docs]class QDac(VisaInstrument): @@ -438,8 +438,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

# channel snap = super().snapshot_base(update=update, params_to_skip_update=params_to_skip_update) - self._get_status_performed = False - return snap
+ self._get_status_performed = False
+ return snap ######################### # Channel gets/sets @@ -554,8 +554,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

if 'range' in param: value = returnmap[param][value] - - return value
+ + return value def _get_status(self, readcurrents=False): r""" @@ -743,8 +743,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

""" Print the finite slopes assigned to channels """ - for sl in self._slopes: - print('Channel {}, slope: {} (V/s)'.format(sl[0], sl[1]))
+ for sl in self._slopes: + print('Channel {}, slope: {} (V/s)'.format(sl[0], sl[1])) def _rampvoltage(self, chan, fg, v_start, setvoltage, ramptime): """ @@ -815,11 +815,11 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

nr_bytes_written, ret_code = self.visa_handle.write(cmd) self.check_error(ret_code) - for _ in range(cmd.count(';')+1): - self._write_response = self.visa_handle.read()
+ for _ in range(cmd.count(';')+1): + self._write_response = self.visa_handle.read() -
[docs] def read(self): - return self.visa_handle.read()
+
[docs] def read(self):
+ return self.visa_handle.read() def _wait_and_clear(self, delay=0.5): time.sleep(delay) @@ -837,8 +837,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

self.visa_handle.read())) # take care of the rest of the output - for _ in range(self._output_n_lines): - self.visa_handle.read()
+ for _ in range(self._output_n_lines): + self.visa_handle.read() def _get_firmware_version(self): self.write('status') @@ -878,8 +878,8 @@

Source code for qcodes.instrument_drivers.QDev.QDac_channels

line += printdict[pp] value = param.get_latest() line += ': {}'.format(returnmap[pp][value]) - line += '. ' - print(line)
+ line += '. ' + print(line) diff --git a/_modules/qcodes/instrument_drivers/QuTech/D4.html b/_modules/qcodes/instrument_drivers/QuTech/D4.html index aef21be5f0e..5b3ce062f98 100644 --- a/_modules/qcodes/instrument_drivers/QuTech/D4.html +++ b/_modules/qcodes/instrument_drivers/QuTech/D4.html @@ -212,14 +212,14 @@

Source code for qcodes.instrument_drivers.QuTech.D4

get_cmd=partial(self.d4.singleConversion, i), units='V') -
[docs] def get_mode(self): - return self.d4.mode
+
[docs] def get_mode(self):
+ return self.d4.mode -
[docs] def get_filter_value(self): - return self.d4.filter_val
+
[docs] def get_filter_value(self):
+ return self.d4.filter_val -
[docs] def get_buffers_enabled(self): - return self.d4.buf_en
+
[docs] def get_buffers_enabled(self):
+ return self.d4.buf_en diff --git a/_modules/qcodes/instrument_drivers/QuTech/D5a.html b/_modules/qcodes/instrument_drivers/QuTech/D5a.html index 8cb143fb88b..1cc84ea6a70 100644 --- a/_modules/qcodes/instrument_drivers/QuTech/D5a.html +++ b/_modules/qcodes/instrument_drivers/QuTech/D5a.html @@ -290,8 +290,8 @@

Source code for qcodes.instrument_drivers.QuTech.D5a

else: msg = 'The found DAC span of {} does not correspond to a known one' raise Exception(msg.format(span)) - - return validator
+ + return validator diff --git a/_modules/qcodes/instrument_drivers/QuTech/F1d.html b/_modules/qcodes/instrument_drivers/QuTech/F1d.html index 4a001a7d1e6..a9b4ca57c20 100644 --- a/_modules/qcodes/instrument_drivers/QuTech/F1d.html +++ b/_modules/qcodes/instrument_drivers/QuTech/F1d.html @@ -226,8 +226,8 @@

Source code for qcodes.instrument_drivers.QuTech.F1d

self.add_function('clear_rf_clip', call_cmd=self.f1d.clear_rf_clip) self.add_function('is_rf_clipped', call_cmd=self.f1d.rf_clipped) -
[docs] def get_remote_settings(self): - return self.f1d.remote_settings
+
[docs] def get_remote_settings(self):
+ return self.f1d.remote_settings diff --git a/_modules/qcodes/instrument_drivers/QuTech/IVVI.html b/_modules/qcodes/instrument_drivers/QuTech/IVVI.html index 04fdb500b40..7cb9ae9c12e 100644 --- a/_modules/qcodes/instrument_drivers/QuTech/IVVI.html +++ b/_modules/qcodes/instrument_drivers/QuTech/IVVI.html @@ -335,8 +335,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

return -1 idparts = ['QuTech', 'IVVI', 'None', self.version()] - - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+ + return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts)) def _get_version(self): if self.safe_version: @@ -348,12 +348,12 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

ver = mes[2] return ver -
[docs] def get_all(self): - return self.snapshot(update=True)
+
[docs] def get_all(self):
+ return self.snapshot(update=True)
[docs] def set_dacs_zero(self): - for i in range(self._numdacs): - self.set('dac{}'.format(i + 1), 0)
+ for i in range(self._numdacs):
+ self.set('dac{}'.format(i + 1), 0) # Conversion of data def _mvoltage_to_bytes(self, mvoltage): @@ -487,8 +487,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

error_code = bytes([0]) message = bytes([message_len]) + error_code + message self.visa_handle.write_raw(message) - - return expected_answer_length
+ + return expected_answer_length
[docs] def ask(self, message, raw=False): ''' @@ -510,8 +510,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

reply = self.read(message_len=message_len) if self.lock: self.lock.release() - - return reply
+
+ return reply def _read_raw_bytes_direct(self, size): """ Read raw data using the visa lib """ @@ -576,8 +576,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

# if mes[1] != 0: # see protocol descriptor for error codes - # raise Exception('IVVI rack exception "%s"' % mes[1]) - return mes
+ # raise Exception('IVVI rack exception "%s"' % mes[1]) + return mes
[docs] def set_pol_dacrack(self, flag, channels, get_all=True): ''' @@ -601,8 +601,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

# self.set_parameter_bounds('dac%d' % (i+1), val, val + # self.Fullrange.0) - if get_all: - self.get_all()
+ if get_all:
+ self.get_all()
[docs] def get_pol_dac(self, channel): ''' @@ -622,8 +622,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

return 'BIP' elif (val == 0): return 'POS' - else: - return 'Invalid polarity in memory'
+ else:
+ return 'Invalid polarity in memory' def _gen_ch_set_func(self, fun, ch): def set_func(val): @@ -660,8 +660,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

value_pol_corr = value - self.pol_num[dacidx] value_bytes = self._mvoltage_to_bytes(value_pol_corr) value_round = (value_bytes[0] * 256 + value_bytes[1]) / \ - 65535.0 * self.Fullrange + self.pol_num[dacidx] - return value_round
+ 65535.0 * self.Fullrange + self.pol_num[dacidx] + return value_round
[docs] def adjust_parameter_validator(self, param): """Adjust the parameter validator range based on the dac resolution. @@ -682,8 +682,8 @@

Source code for qcodes.instrument_drivers.QuTech.IVVI

min_val_upd = self.round_dac(min_val, param.name) max_val_upd = self.round_dac(max_val, param.name) - - param.vals = Numbers(min_val_upd, max_val_upd)
+ + param.vals = Numbers(min_val_upd, max_val_upd) ''' diff --git a/_modules/qcodes/instrument_drivers/QuTech/S5i.html b/_modules/qcodes/instrument_drivers/QuTech/S5i.html index 2ced4c128d6..9813417baca 100644 --- a/_modules/qcodes/instrument_drivers/QuTech/S5i.html +++ b/_modules/qcodes/instrument_drivers/QuTech/S5i.html @@ -223,8 +223,8 @@

Source code for qcodes.instrument_drivers.QuTech.S5i

def _get_rf_frequency(self): return self.s5i.rf_frequency - def _optimize(self): - self.s5i.set_frequency_optimally(self.s5i.rf_frequency)
+ def _optimize(self): + self.s5i.set_frequency_optimally(self.s5i.rf_frequency) diff --git a/_modules/qcodes/instrument_drivers/Spectrum/py_header/regs.html b/_modules/qcodes/instrument_drivers/Spectrum/py_header/regs.html index 930b137b062..65e9180b846 100644 --- a/_modules/qcodes/instrument_drivers/Spectrum/py_header/regs.html +++ b/_modules/qcodes/instrument_drivers/Spectrum/py_header/regs.html @@ -162,18 +162,18 @@
-

Source code for qcodes.instrument_drivers.Spectrum.py_header.regs

-
[docs]def KILO(k): return ( 1000 * (k))
- -
[docs]def MEGA(m): return ( 1000 * 1000 * (m))
- -
[docs]def GIGA(g): return ( 1000 * 1000 * 1000 * (g))
- -
[docs]def KILO_B(k): return ( 1024 * (k))
- -
[docs]def MEGA_B(m): return ( 1024 * 1024 * (m))
- -
[docs]def GIGA_B(g): return ( 1024 * 1024 * 1024 * (g))
+

Source code for qcodes.instrument_drivers.Spectrum.py_header.regs

+
[docs]def KILO(k): return ( 1000 * (k)) +
+
[docs]def MEGA(m): return ( 1000 * 1000 * (m)) +
+
[docs]def GIGA(g): return ( 1000 * 1000 * 1000 * (g)) +
+
[docs]def KILO_B(k): return ( 1024 * (k)) +
+
[docs]def MEGA_B(m): return ( 1024 * 1024 * (m)) +
+
[docs]def GIGA_B(g): return ( 1024 * 1024 * 1024 * (g)) TYP_PCIDEVICEID = 0x00000000 TYP_EVAL = 0x00000010 diff --git a/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html b/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html index 75944ed7abd..9f578226933 100644 --- a/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html +++ b/_modules/qcodes/instrument_drivers/ZI/ZIUHFLI.html @@ -267,8 +267,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

channum - 1, 0, 'outputselect'), set_cmd=partial(self._parent._setter, 'auxouts', channum - 1, 0, 'outputselect'), - val_mapping=outputvalmapping - )
+ val_mapping=outputvalmapping
+ )
[docs]class Sweep(MultiParameter): """ @@ -376,8 +376,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

for (setting, value) in sweepdict.items(): setting = 'sweep/' + setting self._instrument.sweeper.set(setting, value) - - self._instrument.sweep_correctly_built = True
+
+ self._instrument.sweep_correctly_built = True
[docs] def get(self): """ @@ -449,8 +449,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

for (state, sigstr) in zip(streamsettings, signals): path = '/'.join(sigstr.split('/')[:-1]) daq.setInt(path.replace('sample', 'enable'), int(state)) - - return self._parsesweepdata(data)
+
+ return self._parsesweepdata(data) def _parsesweepdata(self, sweepresult): """ @@ -473,8 +473,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

attr = signal.split('/')[-1] data = sweepresult[path][0][0][trans[attr]] returndata.append(data) - - return tuple(returndata)
+
+ return tuple(returndata)
[docs]class Scope(MultiParameter): @@ -510,8 +510,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

has been armed. The action must be a callable taking zero arguments """ - if action not in self._scopeactions: - self._scopeactions.append(action)
+ if action not in self._scopeactions:
+ self._scopeactions.append(action) @property def post_trigger_actions(self) -> List[Callable]: @@ -663,8 +663,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

self.labels = ('Scope channel 1', 'Scope channel 2') self.shapes = ((segs, npts), (segs, npts)) - self._instrument.daq.sync() - self._instrument.scope_correctly_built = True
+ self._instrument.daq.sync()
+ self._instrument.scope_correctly_built = True
[docs] def get(self): """ @@ -787,8 +787,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

t_stop = time.monotonic() log.info('scope get method returning after {} s'.format(t_stop - - t_start)) - return data
+ t_start))
+ return data @staticmethod def _scopedataparser(rawdata, deviceID, scopelength, segments, channels): @@ -817,8 +817,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

ch2data = data['wave'][1].reshape(segments, scopelength) else: ch2data = None - - return (ch1data, ch2data)
+
+ return (ch1data, ch2data)
[docs]class ZIUHFLI(Instrument): """ @@ -1977,8 +1977,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

const = {1: 0.249, 2: 0.124, 3: 0.093, 4: 0.078, 5: 0.068, 6: 0.061, 7: 0.056, 8: 0.052} tau_c = const[order]/NEPBW - - return tau_c
+
+ return tau_c def _get_sweep_time(self): """ @@ -2124,8 +2124,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

signalstring = ('/' + self.device + '/demods/{}/sample/{}'.format(demodulator-1, attribute)) - if signalstring not in self._sweeper_signals: - self._sweeper_signals.append(signalstring)
+ if signalstring not in self._sweeper_signals: + self._sweeper_signals.append(signalstring)
[docs] def remove_signal_from_sweeper(self, demodulator, attribute): """ @@ -2146,8 +2146,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

log.warning('Can not remove signal with {} of'.format(attribute) + ' demodulator {}, since it was'.format(demodulator) + ' not previously added.') - else: - self._sweeper_signals.remove(signalstring)
+ else:
+ self._sweeper_signals.remove(signalstring)
[docs] def print_sweeper_settings(self): """ @@ -2201,8 +2201,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

print(' Expected sweep time: N/A in auto mode') print(' Sweep timeout: {} ({})'.format(self.sweeper_timeout.get(), 's')) - ready = self.sweep_correctly_built - print(' Sweep built and ready to execute: {}'.format(ready))
+ ready = self.sweep_correctly_built
+ print(' Sweep built and ready to execute: {}'.format(ready)) def _scope_setter(self, scopemodule, mode, setting, value): """ @@ -2339,8 +2339,8 @@

Source code for qcodes.instrument_drivers.ZI.ZIUHFLI

self.scope.unsubscribe('/{}/scopes/0/wave'.format(self.device)) self.scope.clear() self.sweeper.clear() - self.daq.disconnect() - super().close()
+ self.daq.disconnect() + super().close() diff --git a/_modules/qcodes/instrument_drivers/agilent/Agilent_34400A.html b/_modules/qcodes/instrument_drivers/agilent/Agilent_34400A.html index c1ec71ffd7f..0405c3ff593 100644 --- a/_modules/qcodes/instrument_drivers/agilent/Agilent_34400A.html +++ b/_modules/qcodes/instrument_drivers/agilent/Agilent_34400A.html @@ -298,11 +298,11 @@

Source code for qcodes.instrument_drivers.agilent.Agilent_34400A

while True: err = self.ask('SYST:ERR?') if 'No error' in err: - return - print(err)
+ return + print(err) -
[docs] def init_measurement(self): - self.write('INIT')
+
[docs] def init_measurement(self):
+ self.write('INIT')
[docs] def display_clear(self): if self.model in ['34401A']: @@ -313,11 +313,11 @@

Source code for qcodes.instrument_drivers.agilent.Agilent_34400A

raise ValueError('unrecognized model: ' + str(self.model)) for line in lines: - self.write('DISP:' + line + ':TEXT:CLE') - self.write('DISP:' + line + ':STAT 1')
+ self.write('DISP:' + line + ':TEXT:CLE')
+ self.write('DISP:' + line + ':STAT 1') -
[docs] def reset(self): - self.write('*RST')
+
[docs] def reset(self):
+ self.write('*RST') diff --git a/_modules/qcodes/instrument_drivers/agilent/E8267C.html b/_modules/qcodes/instrument_drivers/agilent/E8267C.html index b054ae02e65..924fe5b3b9c 100644 --- a/_modules/qcodes/instrument_drivers/agilent/E8267C.html +++ b/_modules/qcodes/instrument_drivers/agilent/E8267C.html @@ -250,12 +250,12 @@

Source code for qcodes.instrument_drivers.agilent.E8267C

# functions to convert between rad and deg
[docs] @staticmethod - def deg_to_rad(angle_deg): - return np.deg2rad(float(angle_deg))
+ def deg_to_rad(angle_deg):
+ return np.deg2rad(float(angle_deg))
[docs] @staticmethod - def rad_to_deg(angle_rad): - return np.rad2deg(float(angle_rad))
+ def rad_to_deg(angle_rad): + return np.rad2deg(float(angle_rad)) diff --git a/_modules/qcodes/instrument_drivers/agilent/E8527D.html b/_modules/qcodes/instrument_drivers/agilent/E8527D.html index 838c55343e4..ed65d8ad2ec 100644 --- a/_modules/qcodes/instrument_drivers/agilent/E8527D.html +++ b/_modules/qcodes/instrument_drivers/agilent/E8527D.html @@ -223,25 +223,25 @@

Source code for qcodes.instrument_drivers.agilent.E8527D

# Note it would be useful to have functions like this in some module instad # of repeated in every instrument driver
[docs] def rad_to_deg(self, angle_rad): - angle_deg = float(angle_rad)/(2*pi)*360 - return angle_deg
+ angle_deg = float(angle_rad)/(2*pi)*360
+ return angle_deg
[docs] def deg_to_rad(self, angle_deg): - angle_rad = float(angle_deg)/360 * 2 * pi - return angle_rad
+ angle_rad = float(angle_deg)/360 * 2 * pi + return angle_rad
[docs] def parse_on_off(self, stat): if stat.startswith('0'): stat = 'Off' elif stat.startswith('1'): - stat = 'On' - return stat
+ stat = 'On' + return stat -
[docs] def on(self): - self.set('status', 'on')
+
[docs] def on(self):
+ self.set('status', 'on') -
[docs] def off(self): - self.set('status', 'off')
+
[docs] def off(self):
+ self.set('status', 'off') diff --git a/_modules/qcodes/instrument_drivers/agilent/HP33210A.html b/_modules/qcodes/instrument_drivers/agilent/HP33210A.html index 489d5c48902..59fb4e13d19 100644 --- a/_modules/qcodes/instrument_drivers/agilent/HP33210A.html +++ b/_modules/qcodes/instrument_drivers/agilent/HP33210A.html @@ -274,8 +274,8 @@

Source code for qcodes.instrument_drivers.agilent.HP33210A

get_cmd='VOLT:LOW?', set_cmd='VOLT:LOW {:.3f}', get_parser=float, - vals=vals.Numbers(-5, 5)) - self.connect_message()
+ vals=vals.Numbers(-5, 5)) + self.connect_message() diff --git a/_modules/qcodes/instrument_drivers/agilent/test_suite.html b/_modules/qcodes/instrument_drivers/agilent/test_suite.html index 13fb53bfa70..e5a5287b6b9 100644 --- a/_modules/qcodes/instrument_drivers/agilent/test_suite.html +++ b/_modules/qcodes/instrument_drivers/agilent/test_suite.html @@ -177,13 +177,13 @@

Source code for qcodes.instrument_drivers.agilent.test_suite

[docs] @classmethod def setUpClass(cls): - super().setUpClass() - cls.instrument.off() # Not a test but a safety measure
+ super().setUpClass() + cls.instrument.off() # Not a test but a safety measure
[docs] def test_firmware_version(self): v = self.instrument.IDN.get() - self.assertEqual(v['vendor'], 'Agilent Technologies') - self.assertEqual(v['model'], 'E8257D')
+ self.assertEqual(v['vendor'], 'Agilent Technologies') + self.assertEqual(v['model'], 'E8257D')
[docs] def test_on_off(self): self.instrument.off() @@ -203,8 +203,8 @@

Source code for qcodes.instrument_drivers.agilent.test_suite

self.assertEqual(self.instrument.status.get(), 'Off') # This should raise an error because it is not a valid input - with self.assertRaises(ValueError): - self.instrument.status.set('on24')
+ with self.assertRaises(ValueError):
+ self.instrument.status.set('on24')
[docs] def test_frequency(self): with self.assertRaises(ValueError): @@ -221,8 +221,8 @@

Source code for qcodes.instrument_drivers.agilent.test_suite

self.instrument.frequency.set(test_f) self.assertEqual(self.instrument.frequency.get(), test_f) - # leave the setup in the initial state - self.instrument.frequency.set(cur_f)
+ # leave the setup in the initial state
+ self.instrument.frequency.set(cur_f)
[docs] def test_power(self): with self.assertRaises(ValueError): @@ -239,8 +239,8 @@

Source code for qcodes.instrument_drivers.agilent.test_suite

self.instrument.power.set(test_val) self.assertEqual(self.instrument.power.get(), test_val) - # leave the setup in the initial state - self.instrument.power.set(cur_val)
+ # leave the setup in the initial state
+ self.instrument.power.set(cur_val)
[docs] def test_phase(self): with self.assertRaises(ValueError): @@ -257,8 +257,8 @@

Source code for qcodes.instrument_drivers.agilent.test_suite

self.instrument.phase.set(test_val) self.assertAlmostEqual(self.instrument.phase.get(), test_val, places=4) - # leave the setup in the initial state - self.instrument.phase.set(cur_val)
+ # leave the setup in the initial state + self.instrument.phase.set(cur_val) diff --git a/_modules/qcodes/instrument_drivers/american_magnetics/AMI430.html b/_modules/qcodes/instrument_drivers/american_magnetics/AMI430.html index c232093f8ae..05a94ac8e15 100644 --- a/_modules/qcodes/instrument_drivers/american_magnetics/AMI430.html +++ b/_modules/qcodes/instrument_drivers/american_magnetics/AMI430.html @@ -350,8 +350,8 @@

Source code for qcodes.instrument_drivers.american_magnetics.AMI430

return False -
[docs] def set_field(self, value, *, perform_safety_check=True): - self._set_field(value, perform_safety_check=perform_safety_check)
+
[docs] def set_field(self, value, *, perform_safety_check=True):
+ self._set_field(value, perform_safety_check=perform_safety_check) def _set_field(self, value, *, perform_safety_check=True): """ @@ -468,8 +468,8 @@

Source code for qcodes.instrument_drivers.american_magnetics.AMI430

430 programmer :return: None """ - super()._connect() - self.flush_connection()
+ super()._connect()
+ self.flush_connection()
[docs]class AMI430_3D(Instrument): @@ -799,8 +799,8 @@

Source code for qcodes.instrument_drivers.american_magnetics.AMI430

self._set_fields(self._set_point.get_components("x", "y", "z")) def _set_rho(self, rho): - self._set_point.set_component(rho=rho) - self._set_fields(self._set_point.get_components("x", "y", "z"))
+ self._set_point.set_component(rho=rho)
+ self._set_fields(self._set_point.get_components("x", "y", "z")) diff --git a/_modules/qcodes/instrument_drivers/devices.html b/_modules/qcodes/instrument_drivers/devices.html index 02d97c8d5ee..071ad5d783d 100644 --- a/_modules/qcodes/instrument_drivers/devices.html +++ b/_modules/qcodes/instrument_drivers/devices.html @@ -239,8 +239,8 @@

Source code for qcodes.instrument_drivers.devices

[docs] def set_raw(self, value: Union[int, float]) -> None: instrument_value = value * self.division_value - self._save_val(value) - self.v1.set(instrument_value)
+ self._save_val(value) + self.v1.set(instrument_value)
[docs] def get_raw(self) -> Union[int, float]: """ @@ -248,16 +248,16 @@

Source code for qcodes.instrument_drivers.devices

number: value at which was set at the sample """ value = self.v1.get() / self.division_value - self._save_val(value) - return value
+ self._save_val(value)
+ return value
[docs] def get_instrument_value(self) -> Union[int, float]: """ Returns: number: value at which the attached paraemter is (i.e. does not account for the scaling) - """ - return self.v1.get()
+ """ + return self.v1.get() diff --git a/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html b/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html index da4302bb03e..00280d3fc5a 100644 --- a/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html +++ b/_modules/qcodes/instrument_drivers/ithaco/Ithaco_1211.html @@ -216,8 +216,8 @@

Source code for qcodes.instrument_drivers.ithaco.Ithaco_1211

current *= -1 value = (volt, current) - self._save_val(value) - return value
+ self._save_val(value) + return value
[docs]class Ithaco_1211(Instrument): @@ -271,8 +271,8 @@

Source code for qcodes.instrument_drivers.ithaco.Ithaco_1211

model = '1211' serial = None firmware = None - return {'vendor': vendor, 'model': model, - 'serial': serial, 'firmware': firmware}
+ return {'vendor': vendor, 'model': model, + 'serial': serial, 'firmware': firmware} diff --git a/_modules/qcodes/instrument_drivers/oxford/ILM200.html b/_modules/qcodes/instrument_drivers/oxford/ILM200.html index e4dbdd53f9a..88652939f99 100644 --- a/_modules/qcodes/instrument_drivers/oxford/ILM200.html +++ b/_modules/qcodes/instrument_drivers/oxford/ILM200.html @@ -300,8 +300,8 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

logging.warn('Error getting or interpreting *IDN?: ' + repr(idstr)) logging.debug(ex) idparts = [None, None, None, None] - - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+ + return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
[docs] def get_all(self): """ @@ -310,16 +310,16 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

""" logging.info(__name__ + ' : reading all settings from instrument') self.level.get() - self.status.get() - self.rate.get()
+ self.status.get()
+ self.rate.get()
[docs] def close(self): """ Safely close connection """ logging.info(__name__ + ' : Closing ILM200 connection') - self.local() - super().close()
+ self.local() + super().close() # Functions: Monitor commands def _get_version(self): @@ -397,15 +397,15 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

""" Set control to remote & locked """ - logging.info(__name__ + ' : Set control to remote & locked') - self.set_remote_status(1)
+ logging.info(__name__ + ' : Set control to remote & locked') + self.set_remote_status(1)
[docs] def local(self): """ Set control to local & locked """ - logging.info(__name__ + ' : Set control to local & locked') - self.set_remote_status(0)
+ logging.info(__name__ + ' : Set control to local & locked') + self.set_remote_status(0)
[docs] def set_remote_status(self, mode): """ @@ -428,8 +428,8 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

3: "Remote and unlocked", } logging.info(__name__ + ' : Setting remote control status to %s' % - status.get(mode, "Unknown")) - self._execute('C%s' % mode)
+ status.get(mode, "Unknown"))
+ self._execute('C%s' % mode) # Functions: Control commands (only recognised when in REMOTE control)
[docs] def set_to_slow(self): @@ -438,8 +438,8 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

""" self.set_remote_status(1) logging.info(__name__ + ' : Setting Helium Probe in SLOW rate') - self._execute('S1') - self.set_remote_status(3)
+ self._execute('S1')
+ self.set_remote_status(3)
[docs] def set_to_fast(self): """ @@ -447,8 +447,8 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

""" self.set_remote_status(1) logging.info(__name__ + ' : Setting Helium Probe in FAST rate') - self._execute('T1') - self.set_remote_status(3)
+ self._execute('T1')
+ self.set_remote_status(3) def _do_set_rate(self, rate): """ @@ -464,8 +464,8 @@

Source code for qcodes.instrument_drivers.oxford.ILM200

self.set_to_slow() elif rate == 1: self.set_to_fast() - self.set_remote_status(3) - logging.info(self._do_get_rate())
+ self.set_remote_status(3) + logging.info(self._do_get_rate()) diff --git a/_modules/qcodes/instrument_drivers/oxford/IPS120.html b/_modules/qcodes/instrument_drivers/oxford/IPS120.html index aabfc79cc45..16e4e04cde0 100644 --- a/_modules/qcodes/instrument_drivers/oxford/IPS120.html +++ b/_modules/qcodes/instrument_drivers/oxford/IPS120.html @@ -322,8 +322,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

Reads all implemented parameters from the instrument, and updates the wrapper. """ - log.info('reading all settings from instrument') - self.snapshot(update=True)
+ log.info('reading all settings from instrument') + self.snapshot(update=True) def _execute(self, message): """ @@ -358,8 +358,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

[docs] def identify(self): """Identify the device""" - log.info('Identify the device') - return self._execute('V')
+ log.info('Identify the device') + return self._execute('V')
[docs] def examine(self): """Examine the status of the device""" @@ -380,24 +380,24 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

print('Mode: ') print(self.mode()) - print('Polarity: ') - print(self.polarity())
+ print('Polarity: ')
+ print(self.polarity())
[docs] def remote(self): """Set control to remote and unlocked""" - log.info('Set control to remote and unlocked') - self.remote_status(3)
+ log.info('Set control to remote and unlocked') + self.remote_status(3)
[docs] def local(self): """Set control to local and unlocked""" - log.info('Set control to local and unlocked') - self.remote_status(2)
+ log.info('Set control to local and unlocked') + self.remote_status(2)
[docs] def close(self): """Safely close connection""" log.info('Closing IPS120 connection') - self.local() - super().close()
+ self.local() + super().close()
[docs] def get_idn(self): """ @@ -411,8 +411,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

A dict containing vendor, model, serial, and firmware. """ idparts = ['Oxford Instruments', 'IPS120', None, None] - - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+
+ return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts)) def _get_remote_status(self): """ @@ -805,18 +805,18 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

print('Invalid mode inserted.')
[docs] def hold(self): - """Set the device activity to Hold""" - self.activity(0)
+ """Set the device activity to Hold"""
+ self.activity(0)
[docs] def to_setpoint(self): - """Set the device activity to "To set point". This initiates a sweep.""" - self.activity(1)
+ """Set the device activity to "To set point". This initiates a sweep.""" + self.activity(1)
[docs] def to_zero(self): """ Set the device activity to "To zero". This sweeps te magnet back to zero. - """ - self.activity(2)
+ """ + self.activity(2) def _get_switch_heater(self): """ @@ -883,8 +883,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

else: print('Current in the leads is not matching persistent current!') else: - print('Magnet supply not at rest, cannot switch on heater!') - self.switch_heater()
+ print('Magnet supply not at rest, cannot switch on heater!') + self.switch_heater()
[docs] def set_persistent(self): """ @@ -902,8 +902,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

self.to_zero() self.get_all() else: - print('Magnet is not at rest, cannot put it in persistent mode') - self.get_all()
+ print('Magnet is not at rest, cannot put it in persistent mode')
+ self.get_all()
[docs] def leave_persistent_mode(self): """ @@ -927,8 +927,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

elif self.switch_heater() == 0: print('Heater is off, but magnet is not in persistent mode. Please, check magnet locally!') - self.get_all() - self.get_changed()
+ self.get_all()
+ self.get_changed()
[docs] def run_to_field(self, field_value): """ @@ -943,8 +943,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

self.field_setpoint(field_value) self.to_setpoint() else: - print('Switch heater is off, cannot change the field.') - self.get_all()
+ print('Switch heater is off, cannot change the field.')
+ self.get_all()
[docs] def run_to_field_wait(self, field_value): """ @@ -965,8 +965,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

sleep(0.5) else: print('Switch heater is off, cannot change the field.') - self.get_all() - self.local()
+ self.get_all()
+ self.local()
[docs] def heater_off(self): """Switch the heater off""" @@ -975,8 +975,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

else: if self.mode2() == 0: self.switch_heater(0) - else: - print('Magnet is not at rest, cannot switch of the heater!')
+ else:
+ print('Magnet is not at rest, cannot switch of the heater!') def _get_mode(self): """ @@ -1090,8 +1090,8 @@

Source code for qcodes.instrument_drivers.oxford.IPS120

print(self.magnet_current()) print("Heater current: ") print(self.heater_current()) - print("Mode: ") - print(self.mode())
+ print("Mode: ") + print(self.mode()) diff --git a/_modules/qcodes/instrument_drivers/oxford/kelvinox.html b/_modules/qcodes/instrument_drivers/oxford/kelvinox.html index 99afc66e7d9..d728bdcd342 100644 --- a/_modules/qcodes/instrument_drivers/oxford/kelvinox.html +++ b/_modules/qcodes/instrument_drivers/oxford/kelvinox.html @@ -296,8 +296,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

Reads all implemented parameters from the instrument, and updates the wrapper. """ - log.info('reading all settings from instrument') - self.snapshot(update=True)
+ log.info('reading all settings from instrument') + self.snapshot(update=True) # Functions def _execute(self, message): @@ -337,24 +337,24 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

a string of the form ``'IGH Version 3.02 (c) OXFORD 1998\\r'`` """ - log.info('Identify the device') - return self._execute('V')
+ log.info('Identify the device') + return self._execute('V')
[docs] def remote(self): """Set control to remote and unlocked""" - log.info('Set control to remote and unlocked') - self.remote_status(3)
+ log.info('Set control to remote and unlocked') + self.remote_status(3)
[docs] def local(self): """Set control to local and unlocked""" - log.info('Set control to local and unlocked') - self.remote_status(2)
+ log.info('Set control to local and unlocked') + self.remote_status(2)
[docs] def close(self): """Safely close connection""" log.info('Closing IPS120 connection') - self.local() - super().close()
+ self.local() + super().close()
[docs] def get_idn(self): """ @@ -369,8 +369,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

""" identity = self.identify() idparts = [identity[24:30], identity[:3], None, identity[15:19]] - - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+
+ return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts)) def _get_remote_status(self): """ @@ -452,8 +452,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

1 : fixed heater power 2 : temperature control """ - log.info('Setting Mix Chamber Power control') - self._execute('A%i' % mode)
+ log.info('Setting Mix Chamber Power control') + self._execute('A%i' % mode)
[docs] def set_mix_chamber_heater_power_range(self, mode): """ @@ -463,8 +463,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

4 : 2mW 5 : 20mW """ - log.info('Setting Mix Chamber Power range') - self._execute('E%i' % mode)
+ log.info('Setting Mix Chamber Power range')
+ self._execute('E%i' % mode) def _set_mix_chamber_temp(self, temperature): """ @@ -606,8 +606,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

self.local() else: print('Wrong value....') - else: - print('Wrong value....')
+ else: + print('Wrong value....') def _get_still_sorb_status(self): """Get the the still and sorb status @@ -705,8 +705,8 @@

Source code for qcodes.instrument_drivers.oxford.kelvinox

log.info('Setting still power') self._execute('S%i' % P) - self._get_still_status() - self.local()
+ self._get_still_status() + self.local() diff --git a/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html b/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html index 63e8f39fed1..647516a11a1 100644 --- a/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html +++ b/_modules/qcodes/instrument_drivers/oxford/mercuryiPS.html @@ -190,11 +190,11 @@

Source code for qcodes.instrument_drivers.oxford.mercuryiPS

self._save_val(value) return value except Exception as e: - e.args = e.args + ('getting {}'.format(self.full_name),) - raise e
+ e.args = e.args + ('getting {}'.format(self.full_name),) + raise e -
[docs] def set(self, setpoint): - return self._set(setpoint)
+
[docs] def set(self, setpoint):
+ return self._set(setpoint)
[docs]class MercuryiPS(IPInstrument): @@ -357,16 +357,16 @@

Source code for qcodes.instrument_drivers.oxford.mercuryiPS

self.connect_message()
[docs] def hold(self): - for ax in self.axes: - self.parameters[ax.lower() + '_ACTN'].set('HOLD')
+ for ax in self.axes:
+ self.parameters[ax.lower() + '_ACTN'].set('HOLD')
[docs] def rtos(self): - for ax in self.axes: - self.parameters[ax.lower() + '_ACTN'].set('RTOS')
+ for ax in self.axes:
+ self.parameters[ax.lower() + '_ACTN'].set('RTOS')
[docs] def to_zero(self): - for ax in self.axes: - self.parameters[ax.lower() + '_ACTN'].set('RTOZ')
+ for ax in self.axes: + self.parameters[ax.lower() + '_ACTN'].set('RTOZ') def _ramp_to_setpoint(self, ax, cmd, setpoint): self._set_fld(ax, cmd, setpoint) @@ -537,8 +537,8 @@

Source code for qcodes.instrument_drivers.oxford.mercuryiPS

[docs] def write(self, msg): rep = self.ask(msg) self._latest_response = rep - if 'INVALID' in rep: - print('warning', msg, rep)
+ if 'INVALID' in rep: + print('warning', msg, rep) def _spheretocart(self, sphere): """ @@ -560,8 +560,8 @@

Source code for qcodes.instrument_drivers.oxford.mercuryiPS

theta = np.arccos(field[2] / r) phi = np.arctan2(field[1], field[0]) if phi<0: - phi = phi+np.pi*2 - return [r, theta, phi]
+ phi = phi+np.pi*2 + return [r, theta, phi] diff --git a/_modules/qcodes/instrument_drivers/oxford/triton.html b/_modules/qcodes/instrument_drivers/oxford/triton.html index dcef2303587..a0672fe1dd1 100644 --- a/_modules/qcodes/instrument_drivers/oxford/triton.html +++ b/_modules/qcodes/instrument_drivers/oxford/triton.html @@ -288,8 +288,8 @@

Source code for qcodes.instrument_drivers.oxford.triton

[docs] def get_idn(self): idstr = self.ask('*IDN?') idparts = [p.strip() for p in idstr.split(':', 4)][1:] - - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+ + return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts)) def _get_control_channel(self): @@ -410,8 +410,8 @@

Source code for qcodes.instrument_drivers.oxford.triton

return None return float(msg.split('SIG:PRES:')[-1].strip('mB'))*1e-3 - def _recv(self): - return super()._recv().rstrip()
+ def _recv(self): + return super()._recv().rstrip() diff --git a/_modules/qcodes/instrument_drivers/rigol/DG4000.html b/_modules/qcodes/instrument_drivers/rigol/DG4000.html index e48d2765ad3..bbf6d67ccdc 100644 --- a/_modules/qcodes/instrument_drivers/rigol/DG4000.html +++ b/_modules/qcodes/instrument_drivers/rigol/DG4000.html @@ -174,8 +174,8 @@

Source code for qcodes.instrument_drivers.rigol.DG4000

try: float(s) return True - except ValueError: - return False
+ except ValueError: + return False
[docs]def clean_string(s): @@ -188,8 +188,8 @@

Source code for qcodes.instrument_drivers.rigol.DG4000

s = s[1:-1] s = s.lower() - - return s
+
+ return s
[docs]def parse_string_output(s): @@ -203,22 +203,22 @@

Source code for qcodes.instrument_drivers.rigol.DG4000

# If it is a number; parse it if is_number(s): return float(s) - - return s
+
+ return s
[docs]def parse_single_output(i, s): """ Used as a partial function to parse output i in string s """ parts = clean_string(s).split(',') - - return parse_string_output(parts[i])
+ + return parse_string_output(parts[i])
[docs]def parse_multiple_outputs(s): """ Parse an output such as 'sin,1.5,0,2' and return a parsed array """ parts = clean_string(s).split(',') - - return [parse_string_output(part) for part in parts]
+ + return [parse_string_output(part) for part in parts]
[docs]class Rigol_DG4000(VisaInstrument): @@ -752,8 +752,8 @@

Source code for qcodes.instrument_drivers.rigol.DG4000

self.write('DATA VOLATILE,' + string) else: - raise Exception('Data length of ' + str(len(data)) + - ' is not in the range of 1 to 16384')
+ raise Exception('Data length of ' + str(len(data)) +
+ ' is not in the range of 1 to 16384') diff --git a/_modules/qcodes/instrument_drivers/rohde_schwarz/RTO1000.html b/_modules/qcodes/instrument_drivers/rohde_schwarz/RTO1000.html index 7448a754c02..61947862d5d 100644 --- a/_modules/qcodes/instrument_drivers/rohde_schwarz/RTO1000.html +++ b/_modules/qcodes/instrument_drivers/rohde_schwarz/RTO1000.html @@ -244,8 +244,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.RTO1000

self.setpoints = (tuple(np.linspace(t_start, t_stop, no_samples)),) self._trace_ready = True - # we must ensure that all this took effect before proceeding - self.channel._parent.ask('*OPC?')
+ # we must ensure that all this took effect before proceeding + self.channel._parent.ask('*OPC?')
[docs] def get(self): """ @@ -288,8 +288,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.RTO1000

quant_levels = 253 conv_factor = scale*no_divs/quant_levels output = conv_factor*int_vals + self.channel.offset() - - return output
+ + return output
[docs]class ScopeChannel(InstrumentChannel): @@ -437,8 +437,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.RTO1000

def _set_scale(self, value): self.range._save_val(value*10) - self._parent.write('CHANnel{}:SCALe {}'.format(self.channum, - value))
+ self._parent.write('CHANnel{}:SCALe {}'.format(self.channum,
+ value))
[docs]class RTO1000(VisaInstrument): @@ -721,8 +721,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.RTO1000

source = trans[self.trigger_source.get()] val = self.ask('TRIGger1:LEVel{}?'.format(source)) - - return float(val.strip())
+
+ return float(val.strip()) diff --git a/_modules/qcodes/instrument_drivers/rohde_schwarz/SGS100A.html b/_modules/qcodes/instrument_drivers/rohde_schwarz/SGS100A.html index a2754afbf80..964d67b1422 100644 --- a/_modules/qcodes/instrument_drivers/rohde_schwarz/SGS100A.html +++ b/_modules/qcodes/instrument_drivers/rohde_schwarz/SGS100A.html @@ -262,43 +262,43 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SGS100A

if stat.startswith('0'): stat = 'Off' elif stat.startswith('1'): - stat = 'On' - return stat
+ stat = 'On' + return stat
[docs] def set_status(self, stat): if stat.upper() in ('ON', 'OFF'): self.write(':OUTP:STAT %s' % stat) else: - raise ValueError('Unable to set status to %s, ' % stat + - 'expected "ON" or "OFF"')
+ raise ValueError('Unable to set status to %s, ' % stat + + 'expected "ON" or "OFF"')
[docs] def set_IQ_state(self, stat): if stat.upper() in ('ON', 'OFF'): self.write(':IQ:STAT %s' % stat) else: - raise ValueError('Unable to set status to %s, ' % stat + - 'expected "ON" or "OFF"')
+ raise ValueError('Unable to set status to %s, ' % stat + + 'expected "ON" or "OFF"')
[docs] def set_pulsemod_state(self, stat): if stat.upper() in ('ON', 'OFF'): self.write(':PULM:SOUR EXT') self.write(':SOUR:PULM:STAT %s' % stat) else: - raise ValueError('Unable to set status to %s,' % stat + - 'expected "ON" or "OFF"')
+ raise ValueError('Unable to set status to %s,' % stat + + 'expected "ON" or "OFF"')
[docs] def set_pulsemod_source(self, source): if source.upper() in ('INT', 'EXT'): self.write(':SOUR:PULM:SOUR %s' % source) else: - raise ValueError('Unable to set source to %s,' % source + - 'expected "INT" or "EXT"')
+ raise ValueError('Unable to set source to %s,' % source + + 'expected "INT" or "EXT"') -
[docs] def on(self): - self.set('status', 'on')
+
[docs] def on(self):
+ self.set('status', 'on') -
[docs] def off(self): - self.set('status', 'off')
+
[docs] def off(self):
+ self.set('status', 'off') diff --git a/_modules/qcodes/instrument_drivers/rohde_schwarz/SMR40.html b/_modules/qcodes/instrument_drivers/rohde_schwarz/SMR40.html index b882f2f1718..eb255ab23aa 100644 --- a/_modules/qcodes/instrument_drivers/rohde_schwarz/SMR40.html +++ b/_modules/qcodes/instrument_drivers/rohde_schwarz/SMR40.html @@ -254,8 +254,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

""" log.info(__name__ + ' : Resetting instrument') self.write('*RST') - # TODO: make it printable - self.get_all()
+ # TODO: make it printable + self.get_all()
[docs] def get_all(self): """Reads all implemented parameters from the instrument, and updates @@ -271,8 +271,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

log.info(__name__ + ' : reading all settings from instrument') # TODO: make it printable self.frequency.get() - self.power.get() - self.status.get()
+ self.power.get()
+ self.status.get() # Communication functions
[docs] def do_get_frequency(self): @@ -285,8 +285,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

frequency (float) : frequency in Hz """ - log.debug(__name__ + ' : reading frequency from instrument') - return float(self.ask('SOUR:FREQ?'))
+ log.debug(__name__ + ' : reading frequency from instrument')
+ return float(self.ask('SOUR:FREQ?'))
[docs] def do_set_frequency(self, frequency): """Set frequency of device. @@ -298,8 +298,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

None """ - log.debug(__name__ + ' : setting frequency to %s GHz' % frequency) - self.write('SOUR:FREQ %e' % frequency)
+ log.debug(__name__ + ' : setting frequency to %s GHz' % frequency)
+ self.write('SOUR:FREQ %e' % frequency)
[docs] def do_get_power(self): """Get output power from device. @@ -311,8 +311,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

power (float) : output power in dBm """ - log.debug(__name__ + ' : reading power from instrument') - return float(self.ask('SOUR:POW?'))
+ log.debug(__name__ + ' : reading power from instrument')
+ return float(self.ask('SOUR:POW?'))
[docs] def do_set_power(self, power): """Set output power of device. @@ -324,8 +324,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

None """ - log.debug(__name__ + ' : setting power to %s dBm' % power) - self.write('SOUR:POW %e' % power)
+ log.debug(__name__ + ' : setting power to %s dBm' % power)
+ self.write('SOUR:POW %e' % power)
[docs] def do_get_status(self): """Get status from instrument. @@ -345,8 +345,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

return 'ON' elif stat == '0\n': return 'OFF' - else: - raise ValueError('Output status not specified : %s' % stat)
+ else:
+ raise ValueError('Output status not specified : %s' % stat)
[docs] def do_set_status(self, status): """Set status of instrument. @@ -362,8 +362,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

if status.upper() in ('ON', 'OFF'): status = status.upper() else: - raise ValueError('set_status(): can only set on or off') - self.write(':OUTP:STAT %s' % status)
+ raise ValueError('set_status(): can only set on or off')
+ self.write(':OUTP:STAT %s' % status)
[docs] def do_get_status_of_modulation(self): """Get status from instrument. @@ -387,8 +387,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

return 'ON' elif stat == '0\n': return 'OFF' - else: - raise ValueError('Output status not specified : %s' % stat)
+ else:
+ raise ValueError('Output status not specified : %s' % stat)
[docs] def do_set_status_of_modulation(self, status): """Set status of modulation. @@ -404,8 +404,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

if status.upper() in ('ON', 'OFF'): status = status.upper() else: - raise ValueError('set_status(): can only set on or off') - self.write(':SOUR:PULM:STAT %s' % status)
+ raise ValueError('set_status(): can only set on or off')
+ self.write(':SOUR:PULM:STAT %s' % status)
[docs] def do_get_status_of_ALC(self): """Get status from instrument. @@ -429,8 +429,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

return 'ON' elif stat == '0\n': return 'OFF' - else: - raise ValueError('Output status not specified : %s' % stat)
+ else:
+ raise ValueError('Output status not specified : %s' % stat)
[docs] def do_set_status_of_ALC(self, status): """Set status of instrument. @@ -446,8 +446,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

if status.upper() in ('ON', 'OFF'): status = status.upper() else: - raise ValueError('set_status(): can only set on or off') - self.write(':SOUR:POW:ALC %s' % status)
+ raise ValueError('set_status(): can only set on or off')
+ self.write(':SOUR:POW:ALC %s' % status)
[docs] def do_get_pulse_delay(self): """Get output power from device. @@ -459,8 +459,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

power (float) : output power in dBm """ - log.debug(__name__ + ' : reading pulse delay from instrument') - return float(self.ask('SOUR:PULS:DEL?'))
+ log.debug(__name__ + ' : reading pulse delay from instrument')
+ return float(self.ask('SOUR:PULS:DEL?'))
[docs] def do_set_pulse_delay(self, delay): """Set output power of device. @@ -473,8 +473,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

""" log.debug( - __name__ + ' : setting pulse delay to %s seconds' % str(delay)) - self.write('SOUR:PULS:DEL 1us')
+ __name__ + ' : setting pulse delay to %s seconds' % str(delay))
+ self.write('SOUR:PULS:DEL 1us') # Shortcuts
[docs] def off(self): @@ -486,8 +486,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

Output: None - """ - self.status.set('off')
+ """
+ self.status.set('off')
[docs] def on(self): """Set status to 'on'. @@ -498,8 +498,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

Output: None - """ - self.status.set('on')
+ """
+ self.status.set('on')
[docs] def off_modulation(self): """Set status of modulation to 'off'. @@ -510,8 +510,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

Output: None - """ - self.set_status_of_modulation('off')
+ """
+ self.set_status_of_modulation('off')
[docs] def on_modulation(self): """Set status of modulation to 'on'. @@ -522,8 +522,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

Output: None - """ - self.set_status_of_modulation('on')
+ """
+ self.set_status_of_modulation('on')
[docs] def set_ext_trig(self): """Set to the external trigger mode. @@ -535,8 +535,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.SMR40

None """ - log.debug(__name__ + ' : setting to the external trigger mode') - self.write('TRIG:PULS:SOUR EXT_TRIG')
+ log.debug(__name__ + ' : setting to the external trigger mode') + self.write('TRIG:PULS:SOUR EXT_TRIG') diff --git a/_modules/qcodes/instrument_drivers/rohde_schwarz/ZNB.html b/_modules/qcodes/instrument_drivers/rohde_schwarz/ZNB.html index f78c39d11c7..8cf64e91f49 100644 --- a/_modules/qcodes/instrument_drivers/rohde_schwarz/ZNB.html +++ b/_modules/qcodes/instrument_drivers/rohde_schwarz/ZNB.html @@ -217,8 +217,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

# needed to update config of the software parameter on sweep change # freq setpoints tuple as needs to be hashable for look up f = tuple(np.linspace(int(start), int(stop), num=npts)) - self.setpoints = ((f,), (f,)) - self.shapes = ((npts,), (npts,))
+ self.setpoints = ((f,), (f,)) + self.shapes = ((npts,), (npts,))
[docs] def get(self): if not self._instrument._parent.rf_power(): @@ -249,8 +249,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

complex_num = complex(comp[0], comp[1]) mag_array.append(abs(complex_num)) phase_array.append(phase(complex_num)) - self._instrument._parent.cont_meas_on() - return mag_array, phase_array
+ self._instrument._parent.cont_meas_on() + return mag_array, phase_array
[docs]class FrequencySweep(ArrayParameter): @@ -289,8 +289,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

# needed to update config of the software parameter on sweep change # freq setpoints tuple as needs to be hashable for look up f = tuple(np.linspace(int(start), int(stop), num=npts)) - self.setpoints = (f,) - self.shape = (npts,)
+ self.setpoints = (f,)
+ self.shape = (npts,)
[docs] def get(self): if not self._instrument._parent.rf_power(): @@ -318,8 +318,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

log.warning("QCoDeS Dataset does not currently support Complex " "values. Will discard the imaginary part.") data = data[0::2] + 1j * data[1::2] - self._instrument._parent.cont_meas_on() - return data
+ self._instrument._parent.cont_meas_on() + return data
[docs]class ZNBChannel(InstrumentChannel): @@ -519,8 +519,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

start = self.start() stop = self.stop() npts = self.npts() - self.trace.set_sweep(start, stop, npts) - self.trace_mag_phase.set_sweep(start, stop, npts)
+ self.trace.set_sweep(start, stop, npts)
+ self.trace_mag_phase.set_sweep(start, stop, npts)
[docs]class ZNB(VisaInstrument): @@ -608,15 +608,15 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

[docs] def display_grid(self, rows: int, cols: int): """ Display a grid of channels rows by cols - """ - self.write('DISP:LAY GRID;:DISP:LAY:GRID {},{}'.format(rows, cols))
+ """
+ self.write('DISP:LAY GRID;:DISP:LAY:GRID {},{}'.format(rows, cols))
[docs] def add_channel(self, vna_parameter: str): n_channels = len(self.channels) channel = ZNBChannel(self, vna_parameter, n_channels + 1) self.channels.append(channel) - if n_channels == 0: - self.display_single_window()
+ if n_channels == 0: + self.display_single_window() def _set_default_values(self): for channel in self.channels: @@ -632,8 +632,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

self.write('TRIG{}:SEQ:SOUR IMM'.format(n)) self.write('SENS{}:AVER:STAT ON'.format(n)) self.update_display_on() - self._set_default_values() - self.rf_off()
+ self._set_default_values() + self.rf_off()
[docs] def clear_channels(self): """ @@ -644,8 +644,8 @@

Source code for qcodes.instrument_drivers.rohde_schwarz.ZNB

for submodule in self.submodules.values(): if isinstance(submodule, ChannelList): submodule._channels = [] - submodule._channel_mapping = {} - submodule._locked = False
+ submodule._channel_mapping = {} + submodule._locked = False diff --git a/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html b/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html index 762b5670f5d..25efec7f6e0 100644 --- a/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html +++ b/_modules/qcodes/instrument_drivers/signal_hound/USB_SA124B.html @@ -309,8 +309,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

print('Initialized SignalHound in %.2fs' % (t1-t0))
[docs] @classmethod - def default_server_name(cls, **kwargs): - return 'USB'
+ def default_server_name(cls, **kwargs):
+ return 'USB'
[docs] def openDevice(self): self.log.info('Opening Device') @@ -327,8 +327,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

raise ValueError('Could not open device due to unknown ' 'reason! Error = %d' % ret) - self.devOpen = True - self.get('device_type')
+ self.devOpen = True
+ self.get('device_type')
[docs] def closeDevice(self): self.log.info('Closing Device with handle num: ', @@ -344,8 +344,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

if ret != self.saStatus['saNoError']: raise ValueError('Error closing device!') print('Closed Device with handle num: ', self.deviceHandle.value) - self.devOpen = False - self.running(False)
+ self.devOpen = False
+ self.running(False)
[docs] def abort(self): self.log.info('Stopping acquisition') @@ -359,8 +359,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

elif err == self.saStatus['saDeviceNotConfiguredErr']: raise IOError('Device was already idle! Did you call abort ' 'without ever calling initiate()?') - else: - raise IOError('Unknown error setting abort! Error = %s' % err)
+ else:
+ raise IOError('Unknown error setting abort! Error = %s' % err)
[docs] def preset(self): self.log.warning('Performing hardware-reset of device!') @@ -372,8 +372,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

self.log.info('Call to preset succeeded.') elif err == self.saStatus['saDeviceNotOpenErr']: raise IOError('Device not open!') - else: - raise IOError('Unknown error calling preset! Error = %s' % err)
+ else:
+ raise IOError('Unknown error calling preset! Error = %s' % err) def _do_get_device_type(self): self.log.info('Querying device for model information') @@ -461,8 +461,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

self.check_for_error(err) # else: # raise IOError('Unknown error setting initiate! Error = %s' % err) - - return
+ + return
[docs] def QuerySweep(self): """ @@ -486,8 +486,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

else: raise IOError('Unknown error!') - info = [sweep_len.value, start_freq.value, stepsize.value] - return info
+ info = [sweep_len.value, start_freq.value, stepsize.value]
+ return info
[docs] def configure(self, rejection=True): """ @@ -567,8 +567,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

err = self.dll.saConfigIQ( self.deviceHandle, ct.c_int(self.get('decimation')), ct.c_double(self.get('bandwidth'))) - self.check_for_error(err) - return
+ self.check_for_error(err)
+ return
[docs] def sweep(self): """ @@ -622,8 +622,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

# note if used in averaged mode (set in config) datamin=datamax datamin = np.array([minarr[elem] for elem in range(sweep_len)]) datamax = np.array([minarr[elem] for elem in range(sweep_len)]) - - return np.array([freq_points, datamin, datamax])
+
+ return np.array([freq_points, datamin, datamax])
[docs] def get_power_at_freq(self, Navg=1): ''' @@ -636,8 +636,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

data = self.sweep() max_power = np.max(data[1][:]) poweratfreq += max_power - self.power(poweratfreq / Navg) - return self.power()
+ self.power(poweratfreq / Navg)
+ return self.power()
[docs] def get_spectrum(self, Navg=1): """ @@ -650,26 +650,26 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

data = self.sweep() data_spec[:] += data[1][:] data_spec[:] = data_spec[:] / Navg - sweep_points = data[0][:] - return np.array([sweep_points, data_spec])
+ sweep_points = data[0][:]
+ return np.array([sweep_points, data_spec])
[docs] def prepare_for_measurement(self): self.set('device_mode', 'sweeping') self.configure() - self.initialisation() - return
+ self.initialisation() + return
[docs] def safe_reload(self): - self.closeDevice() - self.reload()
+ self.closeDevice() + self.reload()
[docs] def check_for_error(self, err): if err != self.saStatus['saNoError']: err_msg = self.saStatus_inverted[err] if err > 0: print('Warning:', err_msg) - else: - raise IOError(err_msg)
+ else: + raise IOError(err_msg)
[docs]class constants: @@ -727,8 +727,8 @@

Source code for qcodes.instrument_drivers.signal_hound.USB_SA124B

sa_AUDIO_LSB = 0x3 sa_AUDIO_CW = 0x4 - TG_THRU_0DB = 0x1 - TG_THRU_20DB = 0x2
+ TG_THRU_0DB = 0x1
+ TG_THRU_20DB = 0x2 diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SG384.html b/_modules/qcodes/instrument_drivers/stanford_research/SG384.html index a3a9b437d8a..14df546361f 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SG384.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SG384.html @@ -313,8 +313,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SG384

'Sweep': 3, 'Pulse': 4, 'Blank': 5, - 'IQ': 6}) - self.connect_message()
+ 'IQ': 6}) + self.connect_message() diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html b/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html index 3cdc48dfb3c..d583b21dfe8 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SIM928.html @@ -250,8 +250,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

idstr = self.ask_module(i, '*IDN?') idparts = [p.strip() for p in idstr.split(',', 3)] if len(idparts) < 4: - idparts += [None] * (4 - len(idparts)) - return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
+ idparts += [None] * (4 - len(idparts)) + return dict(zip(('vendor', 'model', 'serial', 'firmware'), idparts))
[docs] def find_modules(self): """ @@ -267,8 +267,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

for i in range(1, 10): if CTCR & 1 != 0 and self.get_module_idn(i)['model'] == 'SIM928': modules.append(i) - CTCR >>= 1 - return modules
+ CTCR >>= 1
+ return modules
[docs] def ask_module(self, i, cmd): """ @@ -295,8 +295,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

self.visa_handle.read() if msg[:2] != '#3': - raise RuntimeError('Unexpected format of answer: {}'.format(msg)) - return msg[5:]
+ raise RuntimeError('Unexpected format of answer: {}'.format(msg))
+ return msg[5:]
[docs] def write_module(self, i, cmd): """ @@ -308,8 +308,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

cmd (str): The VISA command string. """ if not isinstance(i, int): - i = self.module_nr[i] - self.write('SNDT {},"{}"'.format(i, cmd))
+ i = self.module_nr[i]
+ self.write('SNDT {},"{}"'.format(i, cmd))
[docs] def set_voltage(self, i, voltage): """ @@ -325,8 +325,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

i = self.module_nr[i] else: name = self.slot_names.get(i, i) - self.write_module(i, 'VOLT {:.3f}'.format(voltage)) - self.parameters['volt_{}'.format(name)]._save_val(voltage)
+ self.write_module(i, 'VOLT {:.3f}'.format(voltage))
+ self.parameters['volt_{}'.format(name)]._save_val(voltage)
[docs] def get_voltage(self, i): """ @@ -340,8 +340,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

The current voltage of module ``i`` as a ``float``. """ if not isinstance(i, int): - i = self.module_nr[i] - return float(self.ask_module(i, 'VOLT?'))
+ i = self.module_nr[i]
+ return float(self.ask_module(i, 'VOLT?'))
[docs] def set_smooth(self, voltagedict, equitime=False): """ @@ -409,8 +409,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

for voltages in intermediate: for i in voltages: - self.set_voltage(i, voltages[i]) - time.sleep(self.smooth_timestep())
+ self.set_voltage(i, voltages[i])
+ time.sleep(self.smooth_timestep())
[docs] def get_module_status(self, i): """ @@ -427,8 +427,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

""" stdevent = self.ask_module(i, '*ESR?') commerr = self.ask_module(i, 'CESR?') - overload = self.ask_module(i, 'OVSR?') - return stdevent, commerr, overload
+ overload = self.ask_module(i, 'OVSR?')
+ return stdevent, commerr, overload
[docs] def reset_module(self, i): """ @@ -444,8 +444,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

of the module to reset. """ if not isinstance(i, int): - i = self.module_nr[i] - self.write('SRST {}'.format(i))
+ i = self.module_nr[i]
+ self.write('SRST {}'.format(i))
[docs] def check_module_errors(self, i, raiseexc=True): @@ -534,8 +534,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

if raiseexc: if len(errors) != 0: - raise Exception(' '.join(errors + warnings)) - return errors + warnings
+ raise Exception(' '.join(errors + warnings))
+ return errors + warnings
[docs] @staticmethod def byte_to_bits(x): @@ -555,8 +555,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SIM928

bits.append(True) else: bits.append(False) - x >>= 1 - return bits
+ x >>= 1 + return bits diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR560.html b/_modules/qcodes/instrument_drivers/stanford_research/SR560.html index 7b09f07dcb6..e5096b08992 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SR560.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SR560.html @@ -217,8 +217,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR560

volt_amp *= -1 value = (volt, volt_amp) - self._save_val(value) - return value
+ self._save_val(value) + return value
[docs]class SR560(Instrument): @@ -280,8 +280,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR560

serial = None firmware = None - return {'vendor': vendor, 'model': model, - 'serial': serial, 'firmware': firmware}
+ return {'vendor': vendor, 'model': model, + 'serial': serial, 'firmware': firmware} diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR830.html b/_modules/qcodes/instrument_drivers/stanford_research/SR830.html index 82d4eeff9d3..66bd9124ba3 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SR830.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SR830.html @@ -246,8 +246,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR830

if self.channel == 1: self._instrument._buffer1_ready = True - else: - self._instrument._buffer2_ready = True
+ else: + self._instrument._buffer2_ready = True
[docs] def get(self): """ @@ -274,8 +274,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR830

realdata = np.fromstring(rawdata, dtype='<i2') numbers = realdata[::2]*2.0**(realdata[1::2]-124) if self.shape[0] != N: - raise RuntimeError("SR830 got {} points in buffer expected {}".format(N, self.shape[0])) - return numbers
+ raise RuntimeError("SR830 got {} points in buffer expected {}".format(N, self.shape[0])) + return numbers
[docs]class SR830(VisaInstrument): @@ -742,8 +742,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR830

def _set_sensitivity(self, s): if self.input_config() in ['a', 'a-b']: return self._VOLT_TO_N[s] - else: - return self._CURR_TO_N[s]
+ else:
+ return self._CURR_TO_N[s] diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR860.html b/_modules/qcodes/instrument_drivers/stanford_research/SR860.html index 10fcb0d5a6a..a4f5b554d44 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SR860.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SR860.html @@ -170,8 +170,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR860

""" The SR860 instrument is almost equal to the SR865, except for the max frequency """ - def __init__(self, name: str, address: str, reset: bool=False, **kwargs: str) ->None: - super().__init__(name, address, max_frequency=5E3, reset=reset, **kwargs)
+ def __init__(self, name: str, address: str, reset: bool=False, **kwargs: str) ->None: + super().__init__(name, address, max_frequency=5E3, reset=reset, **kwargs) diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR865.html b/_modules/qcodes/instrument_drivers/stanford_research/SR865.html index 45056831bd6..ba0f3f10473 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SR865.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SR865.html @@ -170,8 +170,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR865

""" The SR865 instrument is almost equal to the SR860, except for the max frequency """ - def __init__(self, name: str, address: str, reset: bool=False, **kwargs: str) ->None: - super().__init__(name, address, max_frequency=4E6, reset=reset, **kwargs)
+ def __init__(self, name: str, address: str, reset: bool=False, **kwargs: str) ->None: + super().__init__(name, address, max_frequency=4E6, reset=reset, **kwargs) diff --git a/_modules/qcodes/instrument_drivers/stanford_research/SR86x.html b/_modules/qcodes/instrument_drivers/stanford_research/SR86x.html index ccbbdfe4977..cf33a3d2984 100644 --- a/_modules/qcodes/instrument_drivers/stanford_research/SR86x.html +++ b/_modules/qcodes/instrument_drivers/stanford_research/SR86x.html @@ -216,8 +216,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

self.shape = (data_len,) self.setpoint_units = ('',) self.setpoint_names = ('sample_nr',) - self.setpoint_labels = ('Sample number',) - self.setpoints = (tuple(np.arange(0, data_len)),)
+ self.setpoint_labels = ('Sample number',) + self.setpoints = (tuple(np.arange(0, data_len)),)
[docs] def get_raw(self) ->np.ndarray: """ @@ -227,8 +227,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

err_str = "Cannot return data for parameter {}. Please prepare for ".format(self.name) err_str = err_str + "readout by calling 'get_capture_data' with appropriate configuration settings" raise ValueError(err_str) - - return self._capture_data
+ + return self._capture_data
[docs]class SR86xBuffer(InstrumentChannel): @@ -363,14 +363,14 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

if trigger_mode not in ["IMM", "TRIG", "SAMP"]: raise ValueError("The trigger mode needs to be either 'IMM', 'TRIG' or 'SAMP'") - cmd_str = "CAPTURESTART {},{}".format(acquisition_mode, trigger_mode) - self.write(cmd_str)
+ cmd_str = "CAPTURESTART {},{}".format(acquisition_mode, trigger_mode)
+ self.write(cmd_str)
[docs] def stop_capture(self): """ Stop a capture - """ - self.write("CAPTURESTOP")
+ """ + self.write("CAPTURESTOP")
[docs] def get_capture_data(self, sample_count: int) -> dict: """ @@ -404,8 +404,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

for capture_variable in capture_variables: buffer_parameter = getattr(self, capture_variable) buffer_parameter.prepare_readout(data[capture_variable]) - - return data
+
+ return data
[docs] def capture_samples(self, sample_count: int) ->dict: """ @@ -424,8 +424,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

self.start_capture("CONT", "IMM") time.sleep(capture_time) self.stop_capture() - - return self.get_capture_data(sample_count)
+ + return self.get_capture_data(sample_count)
[docs]class SR86x(VisaInstrument): @@ -731,8 +731,8 @@

Source code for qcodes.instrument_drivers.stanford_research.SR86x

def _set_sensitivity(self, s): if self.signal_input() == 'voltage': return self._VOLT_TO_N[s] - else: - return self._CURR_TO_N[s]
+ else:
+ return self._CURR_TO_N[s] diff --git a/_modules/qcodes/instrument_drivers/tektronix/AWG5014.html b/_modules/qcodes/instrument_drivers/tektronix/AWG5014.html index 5b5a739d74f..0b148efe0f2 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/AWG5014.html +++ b/_modules/qcodes/instrument_drivers/tektronix/AWG5014.html @@ -180,8 +180,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

log = logging.getLogger(__name__) -
[docs]def parsestr(v): - return v.strip().strip('"')
+
[docs]def parsestr(v):
+ return v.strip().strip('"')
[docs]class Tektronix_AWG5014(VisaInstrument): @@ -561,8 +561,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

[docs] def newlinestripper(self, string): if string.endswith('\n'): return string[:-1] - else: - return string
+ else:
+ return string def _tek_outofrange_get_parser(self, string): val = float(string) @@ -591,8 +591,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Raises: DeprecationWarning """ - warnings.warn("Deprecated! Use snapshot(update=update) directly") - return self.snapshot(update=update)
+ warnings.warn("Deprecated! Use snapshot(update=update) directly")
+ return self.snapshot(update=update)
[docs] def get_state(self): """ @@ -613,12 +613,12 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

elif state.startswith('2'): return 'Running' else: - raise ValueError(__name__ + (' : AWG in undefined ' + - 'state "{}"').format(state))
+ raise ValueError(__name__ + (' : AWG in undefined ' +
+ 'state "{}"').format(state))
[docs] def start(self): - """Convenience function, identical to self.run()""" - return self.run()
+ """Convenience function, identical to self.run()""" + return self.run()
[docs] def run(self): """ @@ -630,19 +630,19 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: The output of self.get_state() """ - self.write('AWGControl:RUN') - return self.get_state()
+ self.write('AWGControl:RUN')
+ return self.get_state()
[docs] def stop(self): - """This command stops the output of a waveform or a sequence.""" - self.write('AWGControl:STOP')
+ """This command stops the output of a waveform or a sequence.""" + self.write('AWGControl:STOP')
[docs] def force_trigger(self): """ This command generates a trigger event. This is equivalent to pressing the Force Trigger button on front panel. - """ - self.write('*TRG')
+ """ + self.write('*TRG')
[docs] def get_folder_contents(self, print_contents=True): """ @@ -661,8 +661,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

print('Current folder:', self.get_current_folder_name()) print(contents .replace(',"$', '\n$').replace('","', '\n') - .replace(',', '\t')) - return contents
+ .replace(',', '\t'))
+ return contents
[docs] def get_current_folder_name(self): """ @@ -673,8 +673,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: str: A string with the full path of the current folder. - """ - return self.ask('MMEMory:CDIRectory?')
+ """
+ return self.ask('MMEMory:CDIRectory?')
[docs] def set_current_folder_name(self, file_path): """ @@ -691,20 +691,20 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

- int: The number of bytes written, - enum 'Statuscode': whether the write was succesful """ - writecmd = 'MMEMory:CDIRectory "{}"' - return self.visa_handle.write(writecmd.format(file_path))
+ writecmd = 'MMEMory:CDIRectory "{}"'
+ return self.visa_handle.write(writecmd.format(file_path))
[docs] def change_folder(self, folder): """Duplicate of self.set_current_folder_name""" - writecmd = r'MMEMory:CDIRectory "{}"' - return self.visa_handle.write(writecmd.format(folder))
+ writecmd = r'MMEMory:CDIRectory "{}"' + return self.visa_handle.write(writecmd.format(folder))
[docs] def goto_root(self): """ Set the current directory of the file system on the arbitrary waveform generator to C: (the 'root' location in Windows). - """ - self.write('MMEMory:CDIRectory "c:\\.."')
+ """ + self.write('MMEMory:CDIRectory "c:\\.."')
[docs] def create_and_goto_dir(self, folder): """ @@ -734,21 +734,21 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

else: self.write('MMEMory:MDIRectory "%s"' % folder) self.write('MMEMory:CDIRectory "%s"' % folder) - - return self.get_folder_contents()
+
+ return self.get_folder_contents()
[docs] def all_channels_on(self): """ Set the state of all channels to be ON. Note: only channels with defined waveforms can be ON. """ - for i in range(1, self.num_channels+1): - self.set('ch{}_state'.format(i), 1)
+ for i in range(1, self.num_channels+1): + self.set('ch{}_state'.format(i), 1)
[docs] def all_channels_off(self): """Set the state of all channels to be OFF.""" - for i in range(1, self.num_channels+1): - self.set('ch{}_state'.format(i), 0)
+ for i in range(1, self.num_channels+1): + self.set('ch{}_state'.format(i), 0) ##################### # Sequences section # @@ -758,8 +758,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

""" This command generates a trigger event. Equivalent to self.force_trigger. - """ - self.write('TRIGger:IMMediate')
+ """ + self.write('TRIGger:IMMediate')
[docs] def force_event(self): """ @@ -767,8 +767,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

event when the sequence is waiting for an event jump. This is equivalent to pressing the Force Event button on the front panel of the instrument. - """ - self.write('EVENt:IMMediate')
+ """
+ self.write('EVENt:IMMediate')
[docs] def set_sqel_event_target_index(self, element_no, index): """ @@ -781,8 +781,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

element_no (int): The sequence element number index (int): The index to set the target to """ - self.write('SEQuence:' + - 'ELEMent{}:JTARGet:INDex {}'.format(element_no, index))
+ self.write('SEQuence:' +
+ 'ELEMent{}:JTARGet:INDex {}'.format(element_no, index))
[docs] def set_sqel_goto_target_index(self, element_no, goto_to_index_no): """ @@ -804,8 +804,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

""" self.write('SEQuence:' + - 'ELEMent{}:GOTO:INDex {}'.format(element_no, - goto_to_index_no))
+ 'ELEMent{}:GOTO:INDex {}'.format(element_no,
+ goto_to_index_no))
[docs] def set_sqel_goto_state(self, element_no, goto_state): """ @@ -822,8 +822,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

log.warning(('{} not recognized as a valid goto' + ' state. Setting to 0 (OFF).').format(goto_state)) goto_state = 0 - self.write('SEQuence:ELEMent{}:GOTO:STATe {}'.format(element_no, - int(goto_state)))
+ self.write('SEQuence:ELEMent{}:GOTO:STATe {}'.format(element_no,
+ int(goto_state)))
[docs] def set_sqel_loopcnt_to_inf(self, element_no, state=1): """ @@ -843,8 +843,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

' state. Setting to 0 (OFF).').format(state)) state = 0 - self.write('SEQuence:ELEMent{}:LOOP:INFinite {}'.format(element_no, - int(state)))
+ self.write('SEQuence:ELEMent{}:LOOP:INFinite {}'.format(element_no,
+ int(state)))
[docs] def get_sqel_loopcnt(self, element_no=1): """ @@ -854,8 +854,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Args: element_no (int): The sequence element number. Default: 1. - """ - return self.ask('SEQuence:ELEMent{}:LOOP:COUNt?'.format(element_no))
+ """
+ return self.ask('SEQuence:ELEMent{}:LOOP:COUNt?'.format(element_no))
[docs] def set_sqel_loopcnt(self, loopcount, element_no=1): """ @@ -867,8 +867,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

The maximal possible number is 65536, beyond that: infinity. element_no (int): The sequence element number. Default: 1. """ - self.write('SEQuence:ELEMent{}:LOOP:COUNt {}'.format(element_no, - loopcount))
+ self.write('SEQuence:ELEMent{}:LOOP:COUNt {}'.format(element_no,
+ loopcount))
[docs] def set_sqel_waveform(self, waveform_name, channel, element_no=1): """ @@ -882,8 +882,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

element_no (int): The sequence element number. Default: 1. """ self.write('SEQuence:ELEMent{}:WAVeform{} "{}"'.format(element_no, - channel, - waveform_name))
+ channel,
+ waveform_name))
[docs] def get_sqel_waveform(self, channel, element_no=1): """ @@ -897,8 +897,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: str: The name of the waveform. """ - return self.ask('SEQuence:ELEMent{}:WAVeform{}?'.format(element_no, - channel))
+ return self.ask('SEQuence:ELEMent{}:WAVeform{}?'.format(element_no,
+ channel))
[docs] def set_sqel_trigger_wait(self, element_no, state=1): """ @@ -918,8 +918,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

str: The current state (after setting it). """ - self.write('SEQuence:ELEMent{}:TWAit {}'.format(element_no, state)) - return self.get_sqel_trigger_wait(element_no)
+ self.write('SEQuence:ELEMent{}:TWAit {}'.format(element_no, state))
+ return self.get_sqel_trigger_wait(element_no)
[docs] def get_sqel_trigger_wait(self, element_no): """ @@ -935,13 +935,13 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: str: The current state. Example: '1'. - """ - return self.ask('SEQuence:ELEMent{}:TWAit?'.format(element_no))
+ """
+ return self.ask('SEQuence:ELEMent{}:TWAit?'.format(element_no))
[docs] def set_sqel_event_jump_target_index(self, element_no, jtar_index_no): """Duplicate of set_sqel_event_target_index""" - self.write('SEQuence:ELEMent{}:JTARget:INDex {}'.format(element_no, - jtar_index_no))
+ self.write('SEQuence:ELEMent{}:JTARget:INDex {}'.format(element_no, + jtar_index_no))
[docs] def set_sqel_event_jump_type(self, element_no, jtar_state): """ @@ -960,8 +960,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

jtar_state (str): The jump target type. Must be either 'INDEX', 'NEXT', or 'OFF'. """ - self.write('SEQuence:ELEMent{}:JTARget:TYPE {}'.format(element_no, - jtar_state))
+ self.write('SEQuence:ELEMent{}:JTARget:TYPE {}'.format(element_no,
+ jtar_state))
[docs] def get_sq_mode(self): """ @@ -972,8 +972,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: str: Either 'HARD' or 'SOFT' indicating that the instrument is in\ either hardware or software sequencer mode. - """ - return self.ask('AWGControl:SEQuence:TYPE?')
+ """
+ return self.ask('AWGControl:SEQuence:TYPE?') ###################### # AWG file functions # @@ -1059,8 +1059,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

else 2), # Sync | Async 'RUN_MODE': 4, # Continuous | Triggered | Gated | Sequence 'RUN_STATE': 0, # On | Off - } - return AWG_sequence_cfg
+ } + return AWG_sequence_cfg
[docs] def generate_channel_cfg(self): """ @@ -1184,8 +1184,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

if addinputs[chan - 1] is not None: AWG_channel_cfg.update({'EXTERNAL_ADD_{}'.format(chan): addinputs[chan - 1]}) - - return AWG_channel_cfg
+
+ return AWG_channel_cfg
[docs] def generate_awg_file(self, packed_waveforms, wfname_l, nrep, trig_wait, @@ -1325,8 +1325,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

kk += 1 awg_file = (head_str.getvalue() + ch_record_str.getvalue() + - wf_record_str.getvalue() + seq_record_str.getvalue()) - return awg_file
+ wf_record_str.getvalue() + seq_record_str.getvalue())
+ return awg_file
[docs] def send_awg_file(self, filename, awg_file, verbose=False): """ @@ -1349,8 +1349,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

name_str = 'MMEMory:DATA "{}",'.format(filename).encode('ASCII') size_str = ('#' + str(len(str(len(awg_file)))) + str(len(awg_file))).encode('ASCII') - mes = name_str + size_str + awg_file - self.visa_handle.write_raw(mes)
+ mes = name_str + size_str + awg_file
+ self.visa_handle.write_raw(mes)
[docs] def load_awg_file(self, filename): """ @@ -1364,8 +1364,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

s = 'AWGControl:SREStore "{}"'.format(filename) log.debug('Loading awg file using {}'.format(s)) self.visa_handle.write_raw(s) - # we must update the appropriate parameter(s) for the sequence - self.sequence_length.set(self.sequence_length.get())
+ # we must update the appropriate parameter(s) for the sequence
+ self.sequence_length.set(self.sequence_length.get())
[docs] def make_send_and_load_awg_file(self, waveforms, m1s, m2s, nreps, trig_waits, @@ -1463,8 +1463,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

currentdir = self.visa_handle.query('MMEMory:CDIRectory?') currentdir = currentdir.replace('"', '') currentdir = currentdir.replace('\n', '\\') - loadfrom = '{}{}'.format(currentdir, filename) - self.load_awg_file(loadfrom)
+ loadfrom = '{}{}'.format(currentdir, filename)
+ self.load_awg_file(loadfrom)
[docs] def make_and_save_awg_file(self, waveforms, m1s, m2s, nreps, trig_waits, @@ -1552,8 +1552,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

jump_tos, channel_cfg, preservechannelsettings=preservechannelsettings) - with open(filename, 'wb') as fid: - fid.write(awg_file)
+ with open(filename, 'wb') as fid:
+ fid.write(awg_file)
[docs] def get_error(self): """ @@ -1563,8 +1563,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

Returns: str: String containing the error/event number, the error/event\ description. - """ - return self.ask('SYSTEM:ERRor:NEXT?')
+ """
+ return self.ask('SYSTEM:ERRor:NEXT?')
[docs] def pack_waveform(self, wf, m1, m2): """ @@ -1610,8 +1610,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

np.round(16384 * m1) + np.round(32768 * m2)) if len(np.where(packed_wf == -1)[0]) > 0: - print(np.where(packed_wf == -1)) - return packed_wf
+ print(np.where(packed_wf == -1))
+ return packed_wf ########################### # Waveform file functions # @@ -1653,12 +1653,12 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

waveform memory, it (they) is (are) unloaded. If the RUN state of the instrument is ON, the state is turned OFF. If the channel is on, it will be switched off. - """ - self.write('WLISt:WAVeform:DELete ALL')
+ """ + self.write('WLISt:WAVeform:DELete ALL')
[docs] def get_filenames(self): - """Duplicate of self.get_folder_contents""" - return self.ask('MMEMory:CATalog?')
+ """Duplicate of self.get_folder_contents""" + return self.ask('MMEMory:CATalog?')
[docs] def send_DC_pulse(self, DC_channel_number, set_level, length): """ @@ -1678,8 +1678,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

restore = chandcs[DC_channel_number].get() chandcs[DC_channel_number].set(set_level) - sleep(length) - chandcs[DC_channel_number].set(restore)
+ sleep(length)
+ chandcs[DC_channel_number].set(restore)
[docs] def is_awg_ready(self): """ @@ -1694,8 +1694,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

except Exception as e: log.warning(e) log.warning('AWG is not ready') - self.visa_handle.read() - return True
+ self.visa_handle.read()
+ return True
[docs] def send_waveform_to_list(self, w, m1, m2, wfmname): """ @@ -1757,8 +1757,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

s2 = '#' + str(len(str(len(s3)))) + str(len(s3)) s2 = s2.encode('UTF-8') - mes = s1 + s2 + s3 - self.visa_handle.write_raw(mes)
+ mes = s1 + s2 + s3
+ self.visa_handle.write_raw(mes)
[docs] def clear_message_queue(self, verbose=False): """ @@ -1778,8 +1778,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5014

if verbose: print(message) except VisaIOError: - gotexception = True - self.visa_handle.timeout = original_timeout
+ gotexception = True + self.visa_handle.timeout = original_timeout diff --git a/_modules/qcodes/instrument_drivers/tektronix/AWG520.html b/_modules/qcodes/instrument_drivers/tektronix/AWG520.html index e899807ec57..b07add2a7b2 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/AWG520.html +++ b/_modules/qcodes/instrument_drivers/tektronix/AWG520.html @@ -346,30 +346,30 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

elif state.startswith('2'): return 'Running' else: - logging.error(__name__ + ' : AWG in undefined state') - return 'error'
+ logging.error(__name__ + ' : AWG in undefined state') + return 'error'
[docs] def start(self): - self.visa_handle.write('AWGC:RUN') - return
+ self.visa_handle.write('AWGC:RUN') + return -
[docs] def stop(self): - self.visa_handle.write('AWGC:STOP')
+
[docs] def stop(self):
+ self.visa_handle.write('AWGC:STOP') -
[docs] def get_folder_contents(self): - return self.visa_handle.ask('mmem:cat?')
+
[docs] def get_folder_contents(self):
+ return self.visa_handle.ask('mmem:cat?') -
[docs] def get_current_folder_name(self): - return self.visa_handle.ask('mmem:cdir?')
+
[docs] def get_current_folder_name(self):
+ return self.visa_handle.ask('mmem:cdir?') -
[docs] def set_current_folder_name(self, file_path): - self.visa_handle.write('mmem:cdir "%s"' % file_path)
+
[docs] def set_current_folder_name(self, file_path):
+ self.visa_handle.write('mmem:cdir "%s"' % file_path) -
[docs] def change_folder(self, dir): - self.visa_handle.write('mmem:cdir "%s"' % dir)
+
[docs] def change_folder(self, dir):
+ self.visa_handle.write('mmem:cdir "%s"' % dir) -
[docs] def goto_root(self): - self.visa_handle.write('mmem:cdir')
+
[docs] def goto_root(self):
+ self.visa_handle.write('mmem:cdir')
[docs] def make_directory(self, dir, root): ''' @@ -379,14 +379,14 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

if root: self.goto_root() self.visa_handle.write('MMEMory:MDIRectory "{}"'.format(dir)) - else: - self.visa_handle.write('MMEMory:MDIRectory "{}"'.format(dir))
+ else:
+ self.visa_handle.write('MMEMory:MDIRectory "{}"'.format(dir))
[docs] def get_all(self, update=True): # TODO: fix bug in snapshot where it tries to get setable only param # return self.snapshot(update=update) - - return self.snapshot(update=False)
+ + return self.snapshot(update=False)
[docs] def clear_waveforms(self): ''' @@ -399,16 +399,16 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

None ''' logging.debug(__name__ + ' : Clear waveforms from channels') - self.visa_handle.write('SOUR1:FUNC:USER ""') - self.visa_handle.write('SOUR2:FUNC:USER ""')
+ self.visa_handle.write('SOUR1:FUNC:USER ""')
+ self.visa_handle.write('SOUR2:FUNC:USER ""')
[docs] def force_trigger(self): ''' forces a trigger event (used for wait_trigger option in sequences) Ron - ''' - return self.visa_handle.write('TRIG:SEQ:IMM')
+ ''' + return self.visa_handle.write('TRIG:SEQ:IMM')
[docs] def force_logicjump(self): ''' @@ -418,8 +418,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

note: jump_logic events&mode have to be set properly! Ron - ''' - return self.visa_handle.write('AWGC:EVEN:SEQ:IMM')
+ '''
+ return self.visa_handle.write('AWGC:EVEN:SEQ:IMM')
[docs] def set_jumpmode(self, mode): ''' @@ -430,16 +430,16 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

note: jump_logic events&mode have to be set properly! Ron - ''' - return self.visa_handle.write('AWGC:ENH:SEQ:JMOD %s' % mode)
+ '''
+ return self.visa_handle.write('AWGC:ENH:SEQ:JMOD %s' % mode)
[docs] def get_jumpmode(self, mode): ''' get the jump mode for jump logic events Ron - ''' - return self.visa_handle.ask('AWGC:ENH:SEQ:JMOD?')
+ ''' + return self.visa_handle.ask('AWGC:ENH:SEQ:JMOD?') def _do_get_numpoints(self): ''' @@ -498,8 +498,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

time.sleep(sleeptime) print('.') self.get_state() - print('Loading file took %.2fs' % (time.time()-t0)) - return
+ print('Loading file took %.2fs' % (time.time()-t0)) + return def _do_set_filename(self, name, channel): ''' @@ -593,11 +593,11 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

# Ask for string with filenames
[docs] def get_filenames(self): - logging.debug(__name__ + ' : Read filenames from instrument') - return self.visa_handle.ask('MMEM:CAT? "MAIN"')
+ logging.debug(__name__ + ' : Read filenames from instrument')
+ return self.visa_handle.ask('MMEM:CAT? "MAIN"') -
[docs] def return_self(self): - return self
+
[docs] def return_self(self):
+ return self # Send waveform to the device
[docs] def send_waveform(self, w, m1, m2, filename, clock): @@ -643,8 +643,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

lenlen = str(len(str(len(s6) + len(s5) + len(s4) + len(s3)))) s2 = '#' + lenlen + str(len(s6) + len(s5) + len(s4) + len(s3)) - mes = s1 + s2 + s3 + s4 + s5 + s6 - self.visa_handle.write(mes)
+ mes = s1 + s2 + s3 + s4 + s5 + s6
+ self.visa_handle.write(mes)
[docs] def send_pattern(self, w, m1, m2, filename, clock): ''' @@ -690,8 +690,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

lenlen=str(len(str(len(s6) + len(s5) + len(s4) + len(s3)))) s2 = '#' + lenlen + str(len(s6) + len(s5) + len(s4) + len(s3)) - mes = s1 + s2 + s3 + s4 + s5 + s6 - self.visa_handle.write(mes)
+ mes = s1 + s2 + s3 + s4 + s5 + s6
+ self.visa_handle.write(mes)
[docs] def resend_waveform(self, channel, w=[], m1=[], m2=[], clock=[]): @@ -727,15 +727,15 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

if not ( (len(w) == self._numpoints) and (len(m1) == self._numpoints) and (len(m2) == self._numpoints)): logging.error(__name__ + ' : one (or more) lengths of waveforms do not match with numpoints') - self.send_waveform(w, m1, m2, filename, clock) - self.do_set_filename(filename, channel)
+ self.send_waveform(w, m1, m2, filename, clock)
+ self.do_set_filename(filename, channel)
[docs] def delete_all_waveforms_from_list(self): ''' for compatibillity with awg, is not relevant for AWG520 since it has no waveform list - ''' - pass
+ ''' + pass
[docs] def send_sequence(self, wfs, rep, wait, goto, logic_jump, filename): ''' @@ -774,8 +774,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

s2 = '#' + lenlen + str(len(s5) + len(s4) + len(s3)) - mes = s1 + s2 + s3 + s4 + s5 - self.visa_handle.write(mes)
+ mes = s1 + s2 + s3 + s4 + s5
+ self.visa_handle.write(mes)
[docs] def send_sequence2(self,wfs1,wfs2,rep,wait,goto,logic_jump,filename): ''' @@ -810,8 +810,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

s2 = '#' + lenlen + str(len(s5) + len(s4) + len(s3)) - mes = s1 + s2 + s3 + s4 + s5 - self.visa_handle.write(mes)
+ mes = s1 + s2 + s3 + s4 + s5
+ self.visa_handle.write(mes)
[docs] def set_sequence(self,filename): ''' @@ -819,15 +819,15 @@

Source code for qcodes.instrument_drivers.tektronix.AWG520

Waveforms/patterns to be executed on respective channel must be defined inside the sequence file itself make sure to send all waveforms before setting a seq - ''' - self.visa_handle.write('SOUR%s:FUNC:USER "%s","MAIN"' % (1, filename))
+ '''
+ self.visa_handle.write('SOUR%s:FUNC:USER "%s","MAIN"' % (1, filename))
[docs] def load_and_set_sequence(self,wfs,rep,wait,goto,logic_jump,filename): ''' Loads and sets the awg sequecne ''' - self.send_sequence(wfs,rep,wait,goto,logic_jump,filename) - self.set_sequence(filename)
+ self.send_sequence(wfs,rep,wait,goto,logic_jump,filename) + self.set_sequence(filename) diff --git a/_modules/qcodes/instrument_drivers/tektronix/AWG5200.html b/_modules/qcodes/instrument_drivers/tektronix/AWG5200.html index ada58f232e8..9a086d21935 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/AWG5200.html +++ b/_modules/qcodes/instrument_drivers/tektronix/AWG5200.html @@ -288,8 +288,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWG5200

s2 = '#' + str(len(str(len(s3)))) + str(len(s3)) s2 = s2.encode('UTF-8') - mes = s1 + s2 + s3 - self.visa_handle.write_raw(mes)
+ mes = s1 + s2 + s3 + self.visa_handle.write_raw(mes) diff --git a/_modules/qcodes/instrument_drivers/tektronix/AWGFileParser.html b/_modules/qcodes/instrument_drivers/tektronix/AWGFileParser.html index abc69c03a20..db0e954a674 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/AWGFileParser.html +++ b/_modules/qcodes/instrument_drivers/tektronix/AWGFileParser.html @@ -719,8 +719,8 @@

Source code for qcodes.instrument_drivers.tektronix.AWGFileParser

instdict, waveformlist, sequencelist = _parser1(awgfilepath) wfmdict = _parser2(waveformlist) callsigtuple = _parser3(sequencelist, wfmdict) - - return (callsigtuple, instdict)
+ + return (callsigtuple, instdict) diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2000.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2000.html index 3c0bf03b0a8..669f8408bed 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2000.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2000.html @@ -188,12 +188,12 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2000

if s in conversions.keys(): s = conversions[s] - - return s
+ + return s -
[docs]def parse_output_bool(value): - return True if int(value) == 1 else False
+
[docs]def parse_output_bool(value):
+ return True if int(value) == 1 else False
[docs]class Keithley_2000(VisaInstrument): @@ -334,8 +334,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2000

[docs] def trigger(self): if not self.trigger_continuous(): - self.write('INIT') - self._trigger_sent = True
+ self.write('INIT')
+ self._trigger_sent = True def _read_next_value(self): # Prevent a timeout when no trigger has been sent @@ -360,8 +360,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2000

mode = parse_output_string(self._mode_map[self.mode()]) cmd = '{}:{} {}'.format(mode, parameter, value) - - self.write(cmd)
+ + self.write(cmd) diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2400.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2400.html index 9e006468edc..f8a4cf1704b 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2400.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2400.html @@ -267,8 +267,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2400

Cancels all pending commands. Cancels all previously send `*OPC` and `*OPC?` - """ - self.write(':*RST')
+ """ + self.write(':*RST') def _volt_parser(self, msg): fields = [float(x) for x in msg.split(',')] @@ -279,8 +279,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2400

return fields[1] def _resistance_parser(self, msg): - fields = [float(x) for x in msg.split(',')] - return fields[0]/fields[1]
+ fields = [float(x) for x in msg.split(',')] + return fields[0]/fields[1] diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html index c2bdf7b0b32..68fc9b9472d 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600.html @@ -332,41 +332,41 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600

model = model[6:] IDN = {'vendor': vendor, 'model': model, - 'serial': serial, 'firmware': firmware} - return IDN
+ '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()')
+ """ + 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')
+ """ + 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)')
+ """ + self.visa_handle.write('display.sendkey(75)')
[docs] def reset(self): """ Reset instrument to factory defaults """ self.write('reset()') - # remember to update all the metadata - self.snapshot(update=True)
+ # 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))
+
[docs] def ask(self, cmd):
+ return super().ask('print(smu{:s}.{:s})'.format(self._channel, cmd)) -
[docs] def write(self, cmd): - super().write('smu{:s}.{:s}'.format(self._channel, cmd))
+
[docs] def write(self, cmd):
+ super().write('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 index 333804531fc..ce48f042048 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600_channels.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2600_channels.html @@ -229,8 +229,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsself.start = start self.stop = stop - self.steps = steps - self.mode = mode + self.steps = steps + self.mode = mode
[docs] def get_raw(self) -> np.ndarray: @@ -238,8 +238,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsself.stop, self.steps, self.mode) - - return data

+ + return data
[docs]class KeithleyChannel(InstrumentChannel): @@ -367,8 +367,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsself.write('{}.reset()'.format(self.channel)) # remember to update all the metadata log.debug('Reset channel {}.'.format(self.channel) + - 'Updating settings...') - self.snapshot(update=True)

+ 'Updating settings...') + self.snapshot(update=True)
[docs] def doFastSweep(self, start: float, stop: float, steps: int, mode: str) -> DataSet: @@ -387,8 +387,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsself.fastsweep.prepareSweep(start, stop, steps, mode) data = qc.Measure(self.fastsweep).run() - - return data

+ + return data def _fast_sweep(self, start: float, stop: float, steps: int, mode: str='IV') -> np.ndarray: @@ -468,8 +468,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsoutdata = np.reshape(outdata, len(outdata)) self._parent.visa_handle.timeout = oldtimeout - - return outdata + + return outdata
[docs]class Keithley_2600(VisaInstrument): @@ -550,27 +550,27 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelsmodel = model[6:] IDN = {'vendor': vendor, 'model': model, - 'serial': serial, 'firmware': firmware} - return IDN

+ '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()')
+ """ + 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')
+ """ + 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)')
+ """ + self.visa_handle.write('display.sendkey(75)')
[docs] def reset(self): """ @@ -579,15 +579,15 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channels """ self.write('reset()') # remember to update all the metadata - log.debug('Reset instrument. Re-querying settings...') - self.snapshot(update=True)

+ 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))
+ """ + return super().ask('print({:s})'.format(cmd)) @staticmethod def _scriptwrapper(program: List[str], debug: bool=False) -> str: @@ -604,8 +604,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2600_channelswrapped = 'loadandrunscript\r\n{}endscript\n'.format(mainprog) if debug: log.debug('Wrapped the following script:') - log.debug(wrapped) - return wrapped + log.debug(wrapped) + return wrapped diff --git a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2700.html b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2700.html index 3cb326fc4e2..560f03324fa 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/Keithley_2700.html +++ b/_modules/qcodes/instrument_drivers/tektronix/Keithley_2700.html @@ -205,25 +205,25 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

''' if val: return "ON" - else: - return "OFF"
+ else: + return "OFF" # %% Driver for Keithley_2700
[docs]def parseint(v): - logging.debug('parseint: %s -> %d' % (v, int(v))) - return int(v)
+ logging.debug('parseint: %s -> %d' % (v, int(v))) + return int(v)
[docs]def parsebool(v): r = bool(int(v)) - logging.debug('parsetobool: %s -> %d' % (v, r)) - return r
+ logging.debug('parsetobool: %s -> %d' % (v, r)) + return r -
[docs]def parsestr(v): - return v.strip().strip('"')
+
[docs]def parsestr(v):
+ return v.strip().strip('"')
[docs]class Keithley_2700(VisaInstrument): @@ -363,8 +363,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

for p in ['mode', 'trigger_count', 'trigger_continuous', 'averaging', 'digits', 'nplc', 'integrationtime', 'range', 'display']: logging.debug('get %s' % p) - par = getattr(self, p) - par.get()
+ par = getattr(self, p)
+ par.get() # self.get_trigger_delay() # self.get_trigger_source() @@ -400,8 +400,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

Output: None ''' - logging.debug('Set mode to DC Voltage') - self.mode.set('VOLT:DC')
+ logging.debug('Set mode to DC Voltage') + self.mode.set('VOLT:DC')
[docs] def set_defaults(self): ''' @@ -427,8 +427,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

self.trigger_continuous.set(True) self.range.set(10) self.nplc.set(1) - self.averaging.set(False) - return
+ self.averaging.set(False)
+ return def _determine_mode(self, mode): ''' @@ -473,8 +473,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

else: logging.error('invalid mode %s' % mode) - # Get all values again because some parameters depend on mode - self.get_all()
+ # Get all values again because some parameters depend on mode + self.get_all() def _mode_par_value(self, mode, par, val): ''' @@ -521,8 +521,8 @@

Source code for qcodes.instrument_drivers.tektronix.Keithley_2700

None ''' logging.debug('Resetting instrument') - self._visainstrument.write('*RST') - self.get_all()
+ self._visainstrument.write('*RST') + self.get_all() diff --git a/_modules/qcodes/instrument_drivers/tektronix/TPS2012.html b/_modules/qcodes/instrument_drivers/tektronix/TPS2012.html index 31422e34e30..abcf52ba275 100644 --- a/_modules/qcodes/instrument_drivers/tektronix/TPS2012.html +++ b/_modules/qcodes/instrument_drivers/tektronix/TPS2012.html @@ -177,8 +177,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

log = logging.getLogger(__name__) -
[docs]class TraceNotReady(Exception): - pass
+
[docs]class TraceNotReady(Exception):
+ pass
[docs]class ScopeArray(ArrayParameter): @@ -200,8 +200,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

xstart = preamble['x_zero'] xinc = preamble['x_incr'] no_of_points = preamble['no_of_points'] - xdata = np.linspace(xstart, no_of_points * xinc + xstart, no_of_points) - return xdata, no_of_points
+ xdata = np.linspace(xstart, no_of_points * xinc + xstart, no_of_points)
+ return xdata, no_of_points
[docs] def prepare_curvedata(self): """ @@ -217,8 +217,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

xdata, no_of_points = self.calc_set_points() self.setpoints = (tuple(xdata), ) self.shape = (no_of_points, ) - - self._instrument._parent.trace_ready = True
+
+ self._instrument._parent.trace_ready = True
[docs] def get(self): if not self._instrument._parent.trace_ready: @@ -231,8 +231,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

# already been copied to the dataset when get is called. # self.setpoints = (tuple(xdata),) - # self.shape = (npoints,) - return ydata
+ # self.shape = (npoints,)
+ return ydata def _curveasker(self, ch): self._instrument.write('DATa:SOURce CH{}'.format(ch)) @@ -335,8 +335,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

assert len(ydata) == preamble['no_of_points'] xstart = preamble['x_zero'] xinc = preamble['x_incr'] - xdata = np.linspace(xstart, len(ydata)*xinc+xstart, len(ydata)) - return xdata, ydata, preamble['no_of_points']
+ xdata = np.linspace(xstart, len(ydata)*xinc+xstart, len(ydata))
+ return xdata, ydata, preamble['no_of_points']
[docs]class TPS2012Channel(InstrumentChannel): @@ -378,8 +378,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

# denoting state display state of ch1, ch2, ?, ?, ? # (maybe ch1, ch2, math, ref1, ref2 ..?) selected = list(map(int, self.ask('SELect?').split(';'))) - state = selected[ch - 1] - return state
+ state = selected[ch - 1]
+ return state
[docs]class TPS2012(VisaInstrument): @@ -512,8 +512,8 @@

Source code for qcodes.instrument_drivers.tektronix.TPS2012

if verbose: print(message) except VisaIOError: - gotexception = True - self.visa_handle.timeout = original_timeout
+ gotexception = True + self.visa_handle.timeout = original_timeout diff --git a/_modules/qcodes/instrument_drivers/test.html b/_modules/qcodes/instrument_drivers/test.html index 64843c72be4..258b69753cd 100644 --- a/_modules/qcodes/instrument_drivers/test.html +++ b/_modules/qcodes/instrument_drivers/test.html @@ -217,8 +217,8 @@

Source code for qcodes.instrument_drivers.test

else: print('***** found {} instances of {}; ' 'testing the last one *****'.format(len(instances), name)) - - cls.instrument = instances[-1]

+ + cls.instrument = instances[-1]
[docs]def test_instruments(verbosity=1): @@ -233,8 +233,8 @@

Source code for qcodes.instrument_drivers.test

driver_path = qcdrivers.__path__[0] suite = unittest.defaultTestLoader.discover( - driver_path, top_level_dir=qcodes.__path__[0]) - unittest.TextTestRunner(verbosity=verbosity).run(suite)

+ driver_path, top_level_dir=qcodes.__path__[0])
+ unittest.TextTestRunner(verbosity=verbosity).run(suite)
[docs]def test_instrument(instrument_testcase, verbosity=2): @@ -255,8 +255,8 @@

Source code for qcodes.instrument_drivers.test

module = importlib.import_module(module_name) reloaded_testcase = getattr(module, class_name) - suite = unittest.defaultTestLoader.loadTestsFromTestCase(reloaded_testcase) - unittest.TextTestRunner(verbosity=verbosity).run(suite)

+ suite = unittest.defaultTestLoader.loadTestsFromTestCase(reloaded_testcase)
+ unittest.TextTestRunner(verbosity=verbosity).run(suite) diff --git a/_modules/qcodes/instrument_drivers/weinschel/Weinschel_8320.html b/_modules/qcodes/instrument_drivers/weinschel/Weinschel_8320.html index fbd4c447c27..29fca6c787d 100644 --- a/_modules/qcodes/instrument_drivers/weinschel/Weinschel_8320.html +++ b/_modules/qcodes/instrument_drivers/weinschel/Weinschel_8320.html @@ -182,8 +182,8 @@

Source code for qcodes.instrument_drivers.weinschel.Weinschel_8320

get_cmd='ATTN? 1', vals=vals.Enum(*np.arange(0, 60.1, 2).tolist()), get_parser=float) - - self.connect_message()
+ + self.connect_message() diff --git a/_modules/qcodes/instrument_drivers/weinschel/test_suite.html b/_modules/qcodes/instrument_drivers/weinschel/test_suite.html index a46ed3e55ac..0b8dbff5b77 100644 --- a/_modules/qcodes/instrument_drivers/weinschel/test_suite.html +++ b/_modules/qcodes/instrument_drivers/weinschel/test_suite.html @@ -176,8 +176,8 @@

Source code for qcodes.instrument_drivers.weinschel.test_suite

driver = Weinschel_8320
[docs] def test_firmware_version(self): - v = self.instrument.IDN.get() - self.assertTrue(v.startswith('API Weinschel, 8320,'))
+ v = self.instrument.IDN.get()
+ self.assertTrue(v.startswith('API Weinschel, 8320,'))
[docs] def test_attenuation(self): curr_val = self.instrument.attenuation.get() @@ -188,8 +188,8 @@

Source code for qcodes.instrument_drivers.weinschel.test_suite

for v in [-2, 3, 61]: with self.assertRaises(ValueError): - self.instrument.attenuation.set(v) - self.instrument.attenuation.set(curr_val)
+ self.instrument.attenuation.set(v) + self.instrument.attenuation.set(curr_val) diff --git a/_modules/qcodes/instrument_drivers/yokogawa/GS200.html b/_modules/qcodes/instrument_drivers/yokogawa/GS200.html index b55d4c6718a..f951e99bfb7 100644 --- a/_modules/qcodes/instrument_drivers/yokogawa/GS200.html +++ b/_modules/qcodes/instrument_drivers/yokogawa/GS200.html @@ -178,12 +178,12 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

Returns: Rounded integer - """ - return round(float(val))
+ """ + return round(float(val)) -
[docs]class GS200Exception(Exception): - pass
+
[docs]class GS200Exception(Exception):
+ pass
[docs]class GS200_Monitor(InstrumentChannel): """ @@ -264,19 +264,19 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

[docs] def off(self): """Turn measurement off""" - self.write(':SENS 0') - self._enabled = False
+ self.write(':SENS 0')
+ self._enabled = False
[docs] def on(self): """Turn measurement on""" - self.write(':SENS 1') - self._enabled = True
+ self.write(':SENS 1') + self._enabled = True
[docs] def state(self): """Check measurement state""" state = int(self.ask(':SENS?')) - self._enabled = bool(state) - return state
+ self._enabled = bool(state) + return state def _get_measurement(self): """ Check that measurements are enabled and then take a measurement """ @@ -319,8 +319,8 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

self.measure.label = 'Source Current' self.measure.unit = 'I' else: - self.measure.label = 'Source Voltage' - self.measure.unit = 'V'
+ self.measure.label = 'Source Voltage' + self.measure.unit = 'V'
[docs]class GS200(VisaInstrument): """ @@ -463,19 +463,19 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

[docs] def on(self): """Turn output on""" - self.write('OUTPUT 1') - self.measure._output = True
+ self.write('OUTPUT 1')
+ self.measure._output = True
[docs] def off(self): """Turn output off""" - self.write('OUTPUT 0') - self.measure._output = False
+ self.write('OUTPUT 0') + self.measure._output = False
[docs] def state(self): """Check state""" state = int(self.ask('OUTPUT?')) - self.measure._output = bool(state) - return state
+ self.measure._output = bool(state) + return state
[docs] def ramp_voltage(self, ramp_to: float, step: float, delay: float) -> None: """ @@ -486,8 +486,8 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

step (float): The ramp steps in Volt delay (float): The time between finishing one step and starting another in seconds. """ - self._assert_mode("VOLT") - self._ramp_source(ramp_to, step, delay)
+ self._assert_mode("VOLT")
+ self._ramp_source(ramp_to, step, delay)
[docs] def ramp_current(self, ramp_to: float, step: float, delay: float) -> None: """ @@ -498,8 +498,8 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

step (float): The ramp steps in Ampere delay (float): The time between finishing one step and starting another in seconds. """ - self._assert_mode("CURR") - self._ramp_source(ramp_to, step, delay)
+ self._assert_mode("CURR")
+ self._ramp_source(ramp_to, step, delay) def _ramp_source(self, ramp_to: float, step: float, delay: float) -> None: """ @@ -671,8 +671,8 @@

Source code for qcodes.instrument_drivers.yokogawa.GS200

only happen if the set value is smaller then the present range. """ self._assert_mode(mode) - self._cached_range_value = float(self.ask(":SOUR:RANG?")) - return self._cached_range_value
+ self._cached_range_value = float(self.ask(":SOUR:RANG?")) + return self._cached_range_value diff --git a/_modules/qcodes/loops.html b/_modules/qcodes/loops.html index 266be493724..46db93f1795 100644 --- a/_modules/qcodes/loops.html +++ b/_modules/qcodes/loops.html @@ -281,8 +281,8 @@

Source code for qcodes.loops

         self.then_actions = ()
         self.bg_task = None
         self.bg_final_task = None
-        self.bg_min_delay = None
-        self.progress_interval = progress_interval
+ self.bg_min_delay = None + self.progress_interval = progress_interval def __getitem__(self, item): """ @@ -465,8 +465,8 @@

Source code for qcodes.loops

             '__class__': full_class(self),
             'sweep_values': self.sweep_values.snapshot(update=update),
             'delay': self.delay,
-            'then_actions': _actions_snapshot(self.then_actions, update)
-        }
+ 'then_actions': _actions_snapshot(self.then_actions, update) + } def _attach_then_actions(loop, actions, overwrite): diff --git a/_modules/qcodes/measure.html b/_modules/qcodes/measure.html index 9f0e1c67196..69b3a14743f 100644 --- a/_modules/qcodes/measure.html +++ b/_modules/qcodes/measure.html @@ -188,8 +188,8 @@

Source code for qcodes.measure

                                 set_cmd=None, get_cmd=None)
 
 
[docs] def __init__(self, *actions): - super().__init__() - self._dummyLoop = Loop(self.dummy_parameter[0]).each(*actions)
+ super().__init__()
+ self._dummyLoop = Loop(self.dummy_parameter[0]).each(*actions) def run_temp(self, **kwargs): """ @@ -313,8 +313,8 @@

Source code for qcodes.measure

     def snapshot_base(self, update=False):
         return {
             '__class__': full_class(self),
-            'actions': _actions_snapshot(self._dummyLoop.actions, update)
-        }
+ 'actions': _actions_snapshot(self._dummyLoop.actions, update) + } diff --git a/_modules/qcodes/plots/pyqtgraph.html b/_modules/qcodes/plots/pyqtgraph.html index 57363bd234a..b3efe53fac5 100644 --- a/_modules/qcodes/plots/pyqtgraph.html +++ b/_modules/qcodes/plots/pyqtgraph.html @@ -268,8 +268,8 @@

Source code for qcodes.plots.pyqtgraph

 
         if not show_window:
             self.win.hide()
-
-        self.plots.append(self)
+ + self.plots.append(self) def set_relative_window_position(self, fig_x_position, fig_y_position): if fig_x_position is not None or fig_y_position is not None: @@ -763,8 +763,8 @@

Source code for qcodes.plots.pyqtgraph

 
                     if (rangesetter is not None
                         and arrmin is not None
-                        and arrmax is not None):
-                        rangesetter(arrmin, arrmax)
+ and arrmax is not None): + rangesetter(arrmin, arrmax) diff --git a/_modules/qcodes/plots/qcmatplotlib.html b/_modules/qcodes/plots/qcmatplotlib.html index 5b21d3d44c6..ee444feb9cb 100644 --- a/_modules/qcodes/plots/qcmatplotlib.html +++ b/_modules/qcodes/plots/qcmatplotlib.html @@ -232,8 +232,8 @@

Source code for qcodes.plots.qcmatplotlib

             else:
                 # Arg is single element, add to subplot
                 self[k].add(arg, **kwargs)
-
-        self.tight_layout()
+ + self.tight_layout() def __getitem__(self, key): """ @@ -628,8 +628,8 @@

Source code for qcodes.plots.qcmatplotlib

                                 new_label)
                         else:
                             subplot.qcodes_colorbar.formatter = tx
-                            subplot.qcodes_colorbar.set_label(new_label)
-                            subplot.qcodes_colorbar.update_ticks()
+ subplot.qcodes_colorbar.set_label(new_label) + subplot.qcodes_colorbar.update_ticks() diff --git a/_modules/qcodes/station.html b/_modules/qcodes/station.html index d5a078b0fd8..6bafe02fd54 100644 --- a/_modules/qcodes/station.html +++ b/_modules/qcodes/station.html @@ -225,8 +225,8 @@

Source code for qcodes.station

             self.add_component(item, update_snapshot=update_snapshot)
 
         self.monitor = monitor
-
-        self.default_measurement = []
+ + self.default_measurement = [] def snapshot_base(self, update=False): """ @@ -336,8 +336,8 @@

Source code for qcodes.station

     def __getitem__(self, key):
         """Shortcut to components dict."""
         return self.components[key]
-
-    delegate_attr_dicts = ['components']
+ + delegate_attr_dicts = ['components'] diff --git a/_notebooks/Datasaving examples.html b/_notebooks/Datasaving examples.html index a85588968de..79fd10ce83e 100644 --- a/_notebooks/Datasaving examples.html +++ b/_notebooks/Datasaving examples.html @@ -229,24 +229,10 @@

Start a loop and generate data from dummy instrumentsstation.add_component(MockParabola(name='MockParabola', server_name=None)) -
root - WARNING - Error getting or interpreting *IDN?: ''
-
-
-
'MockParabola'
-
-
loop = qc.Loop(station.MockParabola.x[-100:100:20]).each(station.MockParabola.skewed_parabola)
 data_l = loop.run(name='MockParabola_run', formatter=qc.data.gnuplot_format.GNUPlotFormat())
 
-
DataSet:
-   location = 'data/2017-03-10/#017_MockParabola_run_15-44-02'
-   <Type>   | <array_id>                   | <array.name>    | <array.shape>
-   Setpoint | MockParabola_x_set           | x               | (10,)
-   Measured | MockParabola_skewed_parabola | skewed_parabola | (10,)
-started at 2017-03-10 15:44:02
-
-
-
DataSet:
-   location = 'data/2017-03-10/#018_MockParabola_run_15-44-07'
-   <Type>   | <array_id>                   | <array.name>    | <array.shape>
-   Setpoint | MockParabola_x_set           | x               | (10,)
-   Setpoint | MockParabola_y_set           | y               | (10, 15)
-   Measured | MockParabola_skewed_parabola | skewed_parabola | (10, 15)
-started at 2017-03-10 15:44:07
-
-
-
test_closed_file (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Cannot close file, data_set has no open hdf5 file
-root - WARNING - Cannot close file, data_set has no open hdf5 file
-ok
-test_dataset_closing (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_dataset_finalize_closes_file (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_dataset_flush_after_write (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_dataset_with_missing_attrs (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_double_closing_gives_warning (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_full_write_read_1D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_full_write_read_2D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_incremental_write (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_loop_writing (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Error getting or interpreting *IDN?: ''
-ok
-test_loop_writing_2D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Error getting or interpreting *IDN?: ''
-ok
-test_metadata_write_read (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_read_writing_dicts_withlists_to_hdf5 (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_reading_into_existing_data_array (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_str_to_bool (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_writing_metadata (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok
-test_writing_unsupported_types_to_hdf5 (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - List of type "<class 'qcodes.data.data_set.DataSet'>" for "list_of_dataset":"[DataSet:
-   location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09'
-   <Type> | <array_id> | <array.name> | <array.shape>, DataSet:
-   location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09'
-   <Type> | <array_id> | <array.name> | <array.shape>]" not supported, storing as string
-root - WARNING - Type "<class 'qcodes.data.data_set.DataSet'>" for "nested_dataset":"DataSet:
-   location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09'
-   <Type> | <array_id> | <array.name> | <array.shape>" not supported, storing as string
-root - WARNING - List of mixed type for "<class 'list'>":"list_of_mixed_type" not supported, storing as string
-
-
-
DataSet:
-   location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#010_MockLoop_hdf5_test_15-44-09'
-   <Type>   | <array_id>                        | <array.name>    | <array.shape>
-   Setpoint | Loop_writing_test_x_set           | x               | (10,)
-   Measured | Loop_writing_test_skewed_parabola | skewed_parabola | (10,)
-started at 2017-03-10 15:44:09
-DataSet:
-   location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#011_MockLoop_hdf5_test_15-44-09'
-   <Type>   | <array_id>                           | <array.name>    | <array.shape>
-   Setpoint | Loop_writing_test_2D_x_set           | x               | (10,)
-   Setpoint | Loop_writing_test_2D_y_set           | y               | (10, 10)
-   Measured | Loop_writing_test_2D_skewed_parabola | skewed_parabola | (10, 10)
-started at 2017-03-10 15:44:09
-
-
-
ok
-
-----------------------------------------------------------------------
-Ran 17 tests in 0.348s
-
-OK
-
-
diff --git a/_notebooks/Tutorial.html b/_notebooks/Tutorial.html index 1c5b86e2919..ab1ef41be9e 100644 --- a/_notebooks/Tutorial.html +++ b/_notebooks/Tutorial.html @@ -228,9 +228,6 @@

Importing# from qcodes.instrument_drivers.Keysight.Keysight_33500B import Keysight_33500B -
User schema at /Users/jhn/qcodesrc_schema.json not found.User settings won't be validated
-
-

Instantiation of instruments

@@ -417,13 +414,13 @@

Defining the Loop

Output of the loop

-
-
A loop returns a dataset.
-
The representation of the dataset shows what arrays it contains and
-
-

where it is saved. -| The dataset initially starts out empty (filled with NAN’s) and get’s -filled while the Loop get’s executed.

+
    +
  • A loop returns a dataset.
  • +
  • The representation of the dataset shows what arrays it contains and +where it is saved.
  • +
  • The dataset initially starts out empty (filled with NAN’s) and get’s +filled while the Loop get’s executed.
  • +

Once the measurement is done, take a look at the file in finder/explorer (the dataset.location should give you the relative path). Note also the snapshot that captures the settings of all instruments at the start of diff --git a/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html b/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html index 799bfc179a2..fcd4ad3b1aa 100644 --- a/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html +++ b/_notebooks/benchmarking/Agilent 34411A versus Keysight 34465A.html @@ -38,7 +38,7 @@ - + @@ -444,7 +444,7 @@

2D Sweep - +

diff --git a/_notebooks/driver_examples/QCodes example with SR830.html b/_notebooks/driver_examples/QCodes example with SR830.html index 97ee3981ca0..4da2ac5b106 100644 --- a/_notebooks/driver_examples/QCodes example with SR830.html +++ b/_notebooks/driver_examples/QCodes example with SR830.html @@ -110,14 +110,11 @@
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -126,7 +123,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.html b/_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.html index 9709149aa5d..caf518d1899 100644 --- a/_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.html +++ b/_notebooks/driver_examples/QCodes_example_with_SR86x_with_buffered_readout.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html b/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html index b6ef2493ffc..c31c78844e8 100644 --- a/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html +++ b/_notebooks/driver_examples/Qcodes example ATS_ONWORK.html @@ -37,7 +37,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -679,7 +680,7 @@

    Qcodes example ATS_ONWORK - + diff --git a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html index 65212add274..45878958ed5 100644 --- a/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html +++ b/_notebooks/driver_examples/Qcodes example with Agilent 34400A.html @@ -38,7 +38,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -419,7 +420,7 @@

    Qcodes example with Agilent 34400A - +

    diff --git a/_notebooks/driver_examples/Qcodes example with Decadac.html b/_notebooks/driver_examples/Qcodes example with Decadac.html index 7483b267a3e..c594854411e 100644 --- a/_notebooks/driver_examples/Qcodes example with Decadac.html +++ b/_notebooks/driver_examples/Qcodes example with Decadac.html @@ -37,7 +37,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -246,7 +247,7 @@

    Qcodes example with Decadac - + diff --git a/_notebooks/driver_examples/Qcodes example with Ithaco.html b/_notebooks/driver_examples/Qcodes example with Ithaco.html index 0cea518afb7..a49e5d2c121 100644 --- a/_notebooks/driver_examples/Qcodes example with Ithaco.html +++ b/_notebooks/driver_examples/Qcodes example with Ithaco.html @@ -38,7 +38,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -455,7 +456,7 @@

    Qcodes example with Ithaco - + diff --git a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html index e790547a924..7ffa9738f78 100644 --- a/_notebooks/driver_examples/Qcodes example with Keithley 2600.html +++ b/_notebooks/driver_examples/Qcodes example with Keithley 2600.html @@ -106,10 +106,8 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -126,7 +123,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html index c18ef207862..7f7225d4e6f 100644 --- a/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html +++ b/_notebooks/driver_examples/Qcodes example with Keysight 33500B.html @@ -37,7 +37,7 @@ - + @@ -106,10 +106,8 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -127,7 +124,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -312,7 +313,7 @@

    Error handling - + 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 2f62f6e3614..d0c7da4490b 100644 --- a/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html +++ b/_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).html @@ -38,7 +38,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -323,7 +324,7 @@

    Qcodes example with Mercury IPS (Magnet) - + diff --git a/_notebooks/driver_examples/Qcodes example with QDac.html b/_notebooks/driver_examples/Qcodes example with QDac.html index 8b35436533b..cb15de05a6a 100644 --- a/_notebooks/driver_examples/Qcodes example with QDac.html +++ b/_notebooks/driver_examples/Qcodes example with QDac.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with QDac_channels.html b/_notebooks/driver_examples/Qcodes example with QDac_channels.html index b6feff228ce..b8ec7e2e756 100644 --- a/_notebooks/driver_examples/Qcodes example with QDac_channels.html +++ b/_notebooks/driver_examples/Qcodes example with QDac_channels.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html index 94048a40319..179848a049f 100644 --- a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html +++ b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -132,7 +129,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • 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 080845c8bf0..e445ff91b32 100644 --- a/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html +++ b/_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -126,7 +123,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with TPS2012.html b/_notebooks/driver_examples/Qcodes example with TPS2012.html index fa0735b40f6..4002a0586a9 100644 --- a/_notebooks/driver_examples/Qcodes example with TPS2012.html +++ b/_notebooks/driver_examples/Qcodes example with TPS2012.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -126,7 +123,11 @@
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html index 999854b2912..f1ca7b265b4 100644 --- a/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html +++ b/_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.html @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -128,7 +125,11 @@
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • diff --git a/_notebooks/driver_examples/Qcodes example with Triton.html b/_notebooks/driver_examples/Qcodes example with Triton.html index 3f2d36780d0..03984cbb43a 100644 --- a/_notebooks/driver_examples/Qcodes example with Triton.html +++ b/_notebooks/driver_examples/Qcodes example with Triton.html @@ -37,7 +37,7 @@ - + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -299,7 +300,7 @@

    Qcodes example with Triton - + diff --git a/_notebooks/driver_examples/Qcodes example with Yokogawa.html b/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html similarity index 84% rename from _notebooks/driver_examples/Qcodes example with Yokogawa.html rename to _notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html index 6c690b99f0b..7c4421b9d13 100644 --- a/_notebooks/driver_examples/Qcodes example with Yokogawa.html +++ b/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.html @@ -8,7 +8,7 @@ - <no title> — QCoDeS 0.1.7 documentation + Qcodes example with Yokogawa GS200/GS210 — QCoDeS 0.1.7 documentation @@ -91,7 +91,7 @@ -
  • Benchmarking
  • @@ -669,10 +670,10 @@

    Individual demodulated samples - + - + diff --git a/_notebooks/driver_examples/Qcodes example with AMI430.html b/_notebooks/driver_examples/Qcodes_example_with_AMI430.html similarity index 97% rename from _notebooks/driver_examples/Qcodes example with AMI430.html rename to _notebooks/driver_examples/Qcodes_example_with_AMI430.html index 0232a169482..7d612835067 100644 --- a/_notebooks/driver_examples/Qcodes example with AMI430.html +++ b/_notebooks/driver_examples/Qcodes_example_with_AMI430.html @@ -37,8 +37,8 @@ - - + + @@ -106,14 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -122,7 +119,11 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -180,7 +181,7 @@
  • - View page source + View page source
  • @@ -314,7 +315,7 @@

    QCoDeS example with AMI430print("offset = {}. An offset indicates that there is a fixed delay is added to a ramp request".format(offset)) -_notebooks/driver_examples/Qcodes%20example%20with%20AMI430_files/Qcodes%20example%20with%20AMI430_6_0.png +../../_images/Qcodes_example_with_AMI430_6_0.png diff --git a/_notebooks/driver_examples/Qcodes example with HP8753D.html b/_notebooks/driver_examples/Qcodes_example_with_HP8753D.html similarity index 97% rename from _notebooks/driver_examples/Qcodes example with HP8753D.html rename to _notebooks/driver_examples/Qcodes_example_with_HP8753D.html index 6b8bec5fd47..011a1799e64 100644 --- a/_notebooks/driver_examples/Qcodes example with HP8753D.html +++ b/_notebooks/driver_examples/Qcodes_example_with_HP8753D.html @@ -37,8 +37,8 @@ - - + + @@ -106,18 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D -
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -126,7 +119,15 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D +
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes
  • Benchmarking
  • @@ -184,7 +185,7 @@
  • - View page source + View page source
  • @@ -330,7 +331,7 @@

    Acquiring traces while sweepingplot -_notebooks/driver_examples/Qcodes%20example%20with%20HP8753D_files/Qcodes%20example%20with%20HP8753D_9_0.png +../../_images/Qcodes_example_with_HP8753D_9_0.png @@ -344,10 +345,10 @@

    Acquiring traces while sweeping - + - + diff --git a/_notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.html b/_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.html similarity index 94% rename from _notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.html rename to _notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.html index 3ee0f9da34f..5237465cfee 100644 --- a/_notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.html +++ b/_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.html @@ -37,8 +37,8 @@ - - + + @@ -106,20 +106,11 @@
  • QCoDeS example with SR830
  • Lets capture by sending triggers. We use the IVVI to send triggers.
  • Qcodes example ATS_ONWORK
  • -
  • QCoDeS example with AMI430
  • Qcodes example with Agilent 34400A
  • Qcodes example with Decadac
  • -
  • Qcodes example with HP8753D
  • Qcodes example with Ithaco
  • Qcodes example with Keithley 2600
  • Qcodes example with Keysight 33500B
  • -
  • Example Notebook for Keysight Infiniium Oscilloscopes -
  • Qcodes example with Mercury IPS (Magnet)
  • Qcodes example with QDac
  • Qcodes example with QDac_channels
  • @@ -128,7 +119,17 @@
  • QCoDeS Example with Tektronix TPS2012
  • QCoDeS Example with Tektronix AWG5014
  • Qcodes example with Triton
  • +
  • Qcodes example with Yokogawa GS200/GS210
  • QCoDeS Example with ZI UHF-LI
  • +
  • QCoDeS example with AMI430
  • +
  • Qcodes example with HP8753D
  • +
  • Example Notebook for Keysight Infiniium Oscilloscopes +
  • Benchmarking
  • @@ -186,7 +187,7 @@
  • - View page source + View page source
  • @@ -294,7 +295,7 @@

    Data Acquisition
    plot = qc.MatPlot(data.arrays['MSO_chan4_trace'])
     
    -_notebooks/driver_examples/Qcodes%20example%20with%20Keysight%20Infiniium%20Oscilloscope_files/Qcodes%20example%20with%20Keysight%20Infiniium%20Oscilloscope_17_0.png +../../_images/Qcodes_example_with_Keysight_Infiniium_Oscilloscope_17_0.png @@ -309,10 +310,10 @@

    Data Acquisition - + - + diff --git a/_sources/_notebooks/Datasaving examples.rst.txt b/_sources/_notebooks/Datasaving examples.rst.txt index 1b86b4e0758..7c42262f8ba 100644 --- a/_sources/_notebooks/Datasaving examples.rst.txt +++ b/_sources/_notebooks/Datasaving examples.rst.txt @@ -46,20 +46,6 @@ Start a loop and generate data from dummy instruments from qcodes.tests.instrument_mocks import MockParabola station.add_component(MockParabola(name='MockParabola', server_name=None)) - -.. parsed-literal:: - - root - WARNING - Error getting or interpreting *IDN?: '' - - - - -.. parsed-literal:: - - 'MockParabola' - - - .. code:: ipython3 loop = qc.Loop(station.MockParabola.x[-100:100:20]).each(station.MockParabola.skewed_parabola) @@ -67,17 +53,6 @@ Start a loop and generate data from dummy instruments - -.. parsed-literal:: - - DataSet: - location = 'data/2017-03-10/#017_MockParabola_run_15-44-02' - | | | - Setpoint | MockParabola_x_set | x | (10,) - Measured | MockParabola_skewed_parabola | skewed_parabola | (10,) - started at 2017-03-10 15:44:02 - - .. code:: ipython3 reload(hdf5_format) @@ -87,18 +62,6 @@ Start a loop and generate data from dummy instruments data_l = loop.run(name='MockParabola_run', formatter=h5fmt) - -.. parsed-literal:: - - DataSet: - location = 'data/2017-03-10/#018_MockParabola_run_15-44-07' - | | | - Setpoint | MockParabola_x_set | x | (10,) - Setpoint | MockParabola_y_set | y | (10, 15) - Measured | MockParabola_skewed_parabola | skewed_parabola | (10, 15) - started at 2017-03-10 15:44:07 - - .. code:: ipython3 from importlib import reload @@ -124,64 +87,3 @@ Run the tests for the dataformat suite = unittest.defaultTestLoader.loadTestsFromTestCase(tst) result = unittest.TextTestRunner(verbosity=2).run(suite) - - -.. parsed-literal:: - - test_closed_file (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Cannot close file, data_set has no open hdf5 file - root - WARNING - Cannot close file, data_set has no open hdf5 file - ok - test_dataset_closing (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_dataset_finalize_closes_file (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_dataset_flush_after_write (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_dataset_with_missing_attrs (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_double_closing_gives_warning (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_full_write_read_1D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_full_write_read_2D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_incremental_write (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_loop_writing (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Error getting or interpreting *IDN?: '' - ok - test_loop_writing_2D (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - Error getting or interpreting *IDN?: '' - ok - test_metadata_write_read (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_read_writing_dicts_withlists_to_hdf5 (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_reading_into_existing_data_array (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_str_to_bool (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_writing_metadata (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... ok - test_writing_unsupported_types_to_hdf5 (qcodes.tests.test_hdf5formatter.TestHDF5_Format) ... root - WARNING - List of type "" for "list_of_dataset":"[DataSet: - location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09' - | | | , DataSet: - location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09' - | | | ]" not supported, storing as string - root - WARNING - Type "" for "nested_dataset":"DataSet: - location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#016_test_missing_attr_15-44-09' - | | | " not supported, storing as string - root - WARNING - List of mixed type for "":"list_of_mixed_type" not supported, storing as string - - -.. parsed-literal:: - - DataSet: - location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#010_MockLoop_hdf5_test_15-44-09' - | | | - Setpoint | Loop_writing_test_x_set | x | (10,) - Measured | Loop_writing_test_skewed_parabola | skewed_parabola | (10,) - started at 2017-03-10 15:44:09 - DataSet: - location = '/Users/unga/src/Qcodes/qcodes/unittest_data/2017-03-10/#011_MockLoop_hdf5_test_15-44-09' - | | | - Setpoint | Loop_writing_test_2D_x_set | x | (10,) - Setpoint | Loop_writing_test_2D_y_set | y | (10, 10) - Measured | Loop_writing_test_2D_skewed_parabola | skewed_parabola | (10, 10) - started at 2017-03-10 15:44:09 - - -.. parsed-literal:: - - ok - - ---------------------------------------------------------------------- - Ran 17 tests in 0.348s - - OK - diff --git a/_sources/_notebooks/Tutorial.rst.txt b/_sources/_notebooks/Tutorial.rst.txt index 2bb0ff77ffa..69807c1ef60 100644 --- a/_sources/_notebooks/Tutorial.rst.txt +++ b/_sources/_notebooks/Tutorial.rst.txt @@ -37,12 +37,6 @@ Importing # real instruments are imported in a similar way, e.g. # from qcodes.instrument_drivers.Keysight.Keysight_33500B import Keysight_33500B - -.. parsed-literal:: - - User schema at /Users/jhn/qcodesrc_schema.json not found.User settings won't be validated - - Instantiation of instruments ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -264,11 +258,11 @@ condition that, if it returns truthy, breaks (this level of) the loop Output of the loop ^^^^^^^^^^^^^^^^^^ -| A loop returns a dataset. -| The representation of the dataset shows what arrays it contains and -where it is saved. -| The dataset initially starts out empty (filled with NAN's) and get's -filled while the Loop get's executed. +- A loop returns a dataset. +- The representation of the dataset shows what arrays it contains and + where it is saved. +- The dataset initially starts out empty (filled with NAN's) and get's + filled while the Loop get's executed. Once the measurement is done, take a look at the file in finder/explorer (the dataset.location should give you the relative path). Note also the diff --git a/_sources/_notebooks/driver_examples/Qcodes example with Yokogawa.rst.txt b/_sources/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst.txt similarity index 98% rename from _sources/_notebooks/driver_examples/Qcodes example with Yokogawa.rst.txt rename to _sources/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst.txt index 57c7b84b5cd..c8c5cda244b 100644 --- a/_sources/_notebooks/driver_examples/Qcodes example with Yokogawa.rst.txt +++ b/_sources/_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst.txt @@ -1,4 +1,7 @@ +Qcodes example with Yokogawa GS200/GS210 +======================================== + .. code:: ipython3 import numpy as np diff --git a/_sources/_notebooks/driver_examples/Qcodes example with AMI430.rst.txt b/_sources/_notebooks/driver_examples/Qcodes_example_with_AMI430.rst.txt similarity index 99% rename from _sources/_notebooks/driver_examples/Qcodes example with AMI430.rst.txt rename to _sources/_notebooks/driver_examples/Qcodes_example_with_AMI430.rst.txt index 0fd841dab5a..dba5bea60ab 100644 --- a/_sources/_notebooks/driver_examples/Qcodes example with AMI430.rst.txt +++ b/_sources/_notebooks/driver_examples/Qcodes_example_with_AMI430.rst.txt @@ -143,7 +143,7 @@ downs occuring before ramp ups. -.. image:: Qcodes%20example%20with%20AMI430_files/Qcodes%20example%20with%20AMI430_6_0.png +.. image:: Qcodes_example_with_AMI430_files/Qcodes_example_with_AMI430_6_0.png .. parsed-literal:: diff --git a/_sources/_notebooks/driver_examples/Qcodes example with HP8753D.rst.txt b/_sources/_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst.txt similarity index 99% rename from _sources/_notebooks/driver_examples/Qcodes example with HP8753D.rst.txt rename to _sources/_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst.txt index 4d9f6c26923..cd96ec2a133 100644 --- a/_sources/_notebooks/driver_examples/Qcodes example with HP8753D.rst.txt +++ b/_sources/_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst.txt @@ -167,6 +167,6 @@ Acquiring traces while sweeping -.. image:: Qcodes%20example%20with%20HP8753D_files/Qcodes%20example%20with%20HP8753D_9_0.png +.. image:: Qcodes_example_with_HP8753D_files/Qcodes_example_with_HP8753D_9_0.png diff --git a/_sources/_notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.rst.txt b/_sources/_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst.txt similarity index 95% rename from _sources/_notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.rst.txt rename to _sources/_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst.txt index 25cb73f9b0d..5062f3a8cc7 100644 --- a/_sources/_notebooks/driver_examples/Qcodes example with Keysight Infiniium Oscilloscope.rst.txt +++ b/_sources/_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst.txt @@ -122,5 +122,5 @@ The data looks as expected (hopefully) -.. image:: Qcodes%20example%20with%20Keysight%20Infiniium%20Oscilloscope_files/Qcodes%20example%20with%20Keysight%20Infiniium%20Oscilloscope_17_0.png +.. image:: Qcodes_example_with_Keysight_Infiniium_Oscilloscope_files/Qcodes_example_with_Keysight_Infiniium_Oscilloscope_17_0.png diff --git a/_sources/api/generated/qcodes.instrument_drivers.Spectrum.rst.txt b/_sources/api/generated/qcodes.instrument_drivers.Spectrum.rst.txt index 06e20f076de..daf61ac67e2 100644 --- a/_sources/api/generated/qcodes.instrument_drivers.Spectrum.rst.txt +++ b/_sources/api/generated/qcodes.instrument_drivers.Spectrum.rst.txt @@ -8,18 +8,6 @@ Subpackages qcodes.instrument_drivers.Spectrum.py_header -Submodules ----------- - -qcodes\.instrument\_drivers\.Spectrum\.M4i module -------------------------------------------------- - -.. automodule:: qcodes.instrument_drivers.Spectrum.M4i - :members: - :undoc-members: - :show-inheritance: - - Module contents --------------- diff --git a/_sources/api/generated/qcodes.instrument_drivers.rst.txt b/_sources/api/generated/qcodes.instrument_drivers.rst.txt index 5b2627048ed..5fb9dcfa6eb 100644 --- a/_sources/api/generated/qcodes.instrument_drivers.rst.txt +++ b/_sources/api/generated/qcodes.instrument_drivers.rst.txt @@ -19,7 +19,6 @@ Subpackages qcodes.instrument_drivers.agilent qcodes.instrument_drivers.american_magnetics qcodes.instrument_drivers.ithaco - qcodes.instrument_drivers.keysight qcodes.instrument_drivers.oxford qcodes.instrument_drivers.rigol qcodes.instrument_drivers.rohde_schwarz diff --git a/_static/doctools.js b/_static/doctools.js index 24992e64433..e1b2fa75010 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -204,7 +204,7 @@ var Documentation = { * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 */ fixFirefoxAnchorBug : function() { - if (document.location.hash) + if (document.location.hash && $.browser.mozilla) window.setTimeout(function() { document.location.href += ''; }, 10); diff --git a/_static/websupport.js b/_static/websupport.js index 53f6a4525cd..a95bc3a6614 100644 --- a/_static/websupport.js +++ b/_static/websupport.js @@ -301,7 +301,7 @@ li.hide(); // Determine where in the parents children list to insert this comment. - for(i=0; i < siblings.length; i++) { + for(var i=0; i < siblings.length; i++) { if (comp(comment, siblings[i]) <= 0) { $('#cd' + siblings[i].id) .parent() diff --git a/api/generated/qcodes.ArrayParameter.html b/api/generated/qcodes.ArrayParameter.html index d94d8fde1d8..4d467dc28f8 100644 --- a/api/generated/qcodes.ArrayParameter.html +++ b/api/generated/qcodes.ArrayParameter.html @@ -190,7 +190,7 @@

    qcodes.ArrayParameter

    -class qcodes.ArrayParameter[source]
    +class qcodes.ArrayParameter(name: str, shape: typing.Sequence[int], instrument: typing.Union[_ForwardRef('Instrument'), NoneType] = None, label: typing.Union[str, NoneType] = None, unit: typing.Union[str, NoneType] = None, setpoints: typing.Union[typing.Sequence, NoneType] = None, setpoint_names: typing.Union[typing.Sequence[str], NoneType] = None, setpoint_labels: typing.Union[typing.Sequence[str], NoneType] = None, setpoint_units: typing.Union[typing.Sequence[str], NoneType] = None, docstring: typing.Union[str, NoneType] = None, snapshot_get: bool = True, snapshot_value: bool = False, metadata: bool = None)[source]

    A gettable parameter that returns an array of values. Not necessarily part of an instrument.

    Subclasses should define a .get method, which returns an array. @@ -255,8 +255,9 @@

    qcodes.ArrayParameter
    -__init__()[source]
    -
    +__init__(name: str, shape: typing.Sequence[int], instrument: typing.Union[_ForwardRef('Instrument'), NoneType] = None, label: typing.Union[str, NoneType] = None, unit: typing.Union[str, NoneType] = None, setpoints: typing.Union[typing.Sequence, NoneType] = None, setpoint_names: typing.Union[typing.Sequence[str], NoneType] = None, setpoint_labels: typing.Union[typing.Sequence[str], NoneType] = None, setpoint_units: typing.Union[typing.Sequence[str], NoneType] = None, docstring: typing.Union[str, NoneType] = None, snapshot_get: bool = True, snapshot_value: bool = False, metadata: bool = None)[source] +

    Initialize self. See help(type(self)) for accurate signature.

    +

    Methods

    @@ -265,8 +266,8 @@

    qcodes.ArrayParameter

    - - + + diff --git a/api/generated/qcodes.BreakIf.html b/api/generated/qcodes.BreakIf.html index 9a4c7b6a1a2..faaa5fd4fc5 100644 --- a/api/generated/qcodes.BreakIf.html +++ b/api/generated/qcodes.BreakIf.html @@ -196,7 +196,7 @@

    qcodes.BreakIf

    - @@ -212,7 +212,8 @@

    qcodes.BreakIf
    __init__(condition)[source]
    -
    +

    Initialize self. See help(type(self)) for accurate signature.

    +

    Methods

    __init__
    __init__(name: str, …)Initialize self.
    get_delay()
    Parameters:condition (callable) – a callable taking no arguments. +
    Parameters:condition (callable) – a callable taking no arguments. Can be a simple function that returns truthy when it’s time to quit May also be constructed by deferred operations on Parameter.
    @@ -222,7 +223,7 @@

    qcodes.BreakIf

    - + diff --git a/api/generated/qcodes.ChannelList.html b/api/generated/qcodes.ChannelList.html index e22c5ed8a20..e52a9d31ab7 100644 --- a/api/generated/qcodes.ChannelList.html +++ b/api/generated/qcodes.ChannelList.html @@ -200,7 +200,7 @@

    qcodes.ChannelList

    - +
    __init__(condition)Initialize self.
    snapshot([update]) Snapshots breakif actionParameters:
    Parameters:status (string) – ‘on or ‘off’
    Parameters:status (string) – ‘on or ‘off’
    @@ -555,7 +555,7 @@

    Submodules -Parameters:status (string) – ‘on or ‘off’ +Parameters:status (string) – ‘on or ‘off’ @@ -573,7 +573,7 @@

    Submodules -Parameters:status (string) – ‘on’ or ‘off’ +Parameters:status (string) – ‘on’ or ‘off’ diff --git a/api/generated/qcodes.instrument_drivers.signal_hound.html b/api/generated/qcodes.instrument_drivers.signal_hound.html index b344f2d2f2e..9b384597bf6 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 = {'saUSBCommErr': -11, 'saCompressionWarning': 2, 'saFrequencyRangeErr': -99, 'saInvalidScaleErr': -94, 'saDeviceNotFoundErr': -8, 'saBandwidthErr': -91, 'saTrackingGeneratorNotFound': -10, 'saNotConfiguredErr': -6, 'saNullPtrErr': -1, 'saInternetErr': -12, 'saInvalidDeviceErr': -2, 'saParameterClamped': 3, 'saDeviceNotOpenErr': -3, 'saBandwidthClamped': 4, 'saTooManyDevicesErr': -5, 'saNoCorrections': 1, 'saDeviceNotIdleErr': -9, 'saExternalReferenceNotFound': -89, 'saOvenColdErr': -20, 'saInvalidDetectorErr': -95, 'saDeviceNotConfiguredErr': -6, 'saUnknownErr': -666, 'saInvalidParameterErr': -4, 'saInvalidModeErr': -7, 'saNoError': 0}
    +saStatus = {'saBandwidthClamped': 4, 'saBandwidthErr': -91, 'saCompressionWarning': 2, 'saDeviceNotConfiguredErr': -6, 'saDeviceNotFoundErr': -8, 'saDeviceNotIdleErr': -9, 'saDeviceNotOpenErr': -3, 'saExternalReferenceNotFound': -89, 'saFrequencyRangeErr': -99, 'saInternetErr': -12, 'saInvalidDetectorErr': -95, 'saInvalidDeviceErr': -2, 'saInvalidModeErr': -7, 'saInvalidParameterErr': -4, 'saInvalidScaleErr': -94, 'saNoCorrections': 1, 'saNoError': 0, 'saNotConfiguredErr': -6, 'saNullPtrErr': -1, 'saOvenColdErr': -20, 'saParameterClamped': 3, 'saTooManyDevicesErr': -5, 'saTrackingGeneratorNotFound': -10, 'saUSBCommErr': -11, 'saUnknownErr': -666}
    -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: 'saDeviceNotConfiguredErr', -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 19ae1f7bacb..8839a4fbcdf 100644 --- a/api/generated/qcodes.instrument_drivers.stanford_research.html +++ b/api/generated/qcodes.instrument_drivers.stanford_research.html @@ -274,7 +274,7 @@

    Submodules
    -static byte_to_bits(x)[source]
    +static byte_to_bits()[source]

    Convert an integer to a list of bits

    @@ -495,7 +495,24 @@

    Submodules
    get_idn()[source]
    -
    +

    Parse a standard VISA ‘*IDN?’ response into an ID dict.

    +

    Even though this is the VISA standard, it applies to various other +types as well, such as IPInstruments, so it is included here in the +Instrument base class.

    +

    Override this if your instrument does not support ‘*IDN?’ or +returns a nonstandard IDN string. This string is supposed to be a +comma-separated list of vendor, model, serial, and firmware, but +semicolon and colon are also common separators so we accept them here +as well.

    +

    +++ + + + +
    Returns:A dict containing vendor, model, serial, and firmware.
    +

    @@ -588,7 +605,7 @@

    Submodules

    qcodes.instrument_drivers.stanford_research.SR860 module

    -class qcodes.instrument_drivers.stanford_research.SR860.SR860(name: str, address: str, reset: bool = False, **kwargs: str) → None[source]
    +class qcodes.instrument_drivers.stanford_research.SR860.SR860(name: str, address: str, reset: bool = False, **kwargs) → None[source]

    Bases: qcodes.instrument_drivers.stanford_research.SR86x.SR86x

    The SR860 instrument is almost equal to the SR865, except for the max frequency

    @@ -598,7 +615,7 @@

    Submodules

    qcodes.instrument_drivers.stanford_research.SR865 module

    -class qcodes.instrument_drivers.stanford_research.SR865.SR865(name: str, address: str, reset: bool = False, **kwargs: str) → None[source]
    +class qcodes.instrument_drivers.stanford_research.SR865.SR865(name: str, address: str, reset: bool = False, **kwargs) → None[source]

    Bases: qcodes.instrument_drivers.stanford_research.SR86x.SR86x

    The SR865 instrument is almost equal to the SR860, except for the max frequency

    @@ -694,7 +711,7 @@

    Submodules Parameters:
      -
    • (str) (name) –
    • +
    • (str) (name) –
    • (SR86x) (instrument) – base class adds this as a kwarg.
    diff --git a/api/generated/qcodes.instrument_drivers.tektronix.html b/api/generated/qcodes.instrument_drivers.tektronix.html index b7dfc1aaa05..07c54694d2a 100644 --- a/api/generated/qcodes.instrument_drivers.tektronix.html +++ b/api/generated/qcodes.instrument_drivers.tektronix.html @@ -254,8 +254,8 @@

    Submodules Parameters:
      -
    • name (string) – name of the instrument
    • -
    • address (string) – GPIB or ethernet address as used by VISA
    • +
    • name (string) – name of the instrument
    • +
    • address (string) – GPIB or ethernet address as used by VISA
    • timeout (float) – visa timeout, in secs. long default (180) to accommodate large waveforms
    • num_channels (int) – number of channels on the device
    • @@ -269,12 +269,12 @@

      Submodules
      -AWG_FILE_FORMAT_CHANNEL = {'CHANNEL_STATE_N': 'h', 'DIGITAL_OFFSET_N': 'd', 'MARKER2_HIGH_N': 'd', 'DIGITAL_HIGH_N': 'd', 'MARKER1_OFFSET_N': 'd', 'EXTERNAL_ADD_N': 'h', 'MARKER1_METHOD_N': 'h', 'DELAY_IN_TIME_N': 'd', 'DIGITAL_AMPLITUDE_N': 'd', 'MARKER2_LOW_N': 'd', 'PHASE_N': 'd', 'MARKER2_METHOD_N': 'h', 'ANALOG_METHOD_N': 'h', 'DIGITAL_METHOD_N': 'h', 'MARKER1_SKEW_N': 'd', 'ANALOG_DIRECT_OUTPUT_N': 'h', 'MARKER1_AMPLITUDE_N': 'd', 'DIGITAL_LOW_N': 'd', 'ANALOG_OFFSET_N': 'd', 'ANALOG_HIGH_N': 'd', 'MARKER1_LOW_N': 'd', 'ANALOG_AMPLITUDE_N': 'd', 'ANALOG_LOW_N': 'd', 'CHANNEL_SKEW_N': 'd', 'MARKER1_HIGH_N': 'd', 'PHASE_DELAY_INPUT_METHOD_N': 'h', 'OUTPUT_WAVEFORM_NAME_N': 's', 'MARKER2_OFFSET_N': 'd', 'DELAY_IN_POINTS_N': 'd', 'DC_OUTPUT_LEVEL_N': 'd', 'MARKER2_SKEW_N': 'd', 'ANALOG_FILTER_N': 'h', 'MARKER2_AMPLITUDE_N': 'd'}
      +AWG_FILE_FORMAT_CHANNEL = {'ANALOG_AMPLITUDE_N': 'd', 'ANALOG_DIRECT_OUTPUT_N': 'h', 'ANALOG_FILTER_N': 'h', 'ANALOG_HIGH_N': 'd', 'ANALOG_LOW_N': 'd', 'ANALOG_METHOD_N': 'h', 'ANALOG_OFFSET_N': 'd', 'CHANNEL_SKEW_N': 'd', 'CHANNEL_STATE_N': 'h', 'DC_OUTPUT_LEVEL_N': 'd', 'DELAY_IN_POINTS_N': 'd', 'DELAY_IN_TIME_N': 'd', 'DIGITAL_AMPLITUDE_N': 'd', 'DIGITAL_HIGH_N': 'd', 'DIGITAL_LOW_N': 'd', 'DIGITAL_METHOD_N': 'h', 'DIGITAL_OFFSET_N': 'd', 'EXTERNAL_ADD_N': 'h', 'MARKER1_AMPLITUDE_N': 'd', 'MARKER1_HIGH_N': 'd', 'MARKER1_LOW_N': 'd', 'MARKER1_METHOD_N': 'h', 'MARKER1_OFFSET_N': 'd', 'MARKER1_SKEW_N': 'd', 'MARKER2_AMPLITUDE_N': 'd', 'MARKER2_HIGH_N': 'd', 'MARKER2_LOW_N': 'd', 'MARKER2_METHOD_N': 'h', 'MARKER2_OFFSET_N': 'd', 'MARKER2_SKEW_N': 'd', 'OUTPUT_WAVEFORM_NAME_N': 's', 'PHASE_DELAY_INPUT_METHOD_N': 'h', 'PHASE_N': 'd'}
      -AWG_FILE_FORMAT_HEAD = {'EVENT_INPUT_POLARITY': 'h', 'TRIGGER_INPUT_THRESHOLD': 'd', 'INTERLEAVE': 'h', 'REFERENCE_CLOCK_FREQUENCY_SELECTION': 'h', 'HOLD_REPETITION_RATE': 'h', 'EVENT_INPUT_THRESHOLD': 'd', 'JUMP_TIMING': 'h', 'REPETITION_RATE': 'd', 'ZEROING': 'h', 'REFERENCE_SOURCE': 'h', 'RUN_MODE': 'h', 'INTERNAL_TRIGGER_RATE': 'd', 'COUPLING': 'h', 'TRIGGER_INPUT_POLARITY': 'h', 'INTERLEAVE_ADJ_AMPLITUDE': 'd', 'CLOCK_SOURCE': 'h', 'WAIT_VALUE': 'h', 'EXTERNAL_REFERENCE_TYPE': 'h', 'INTERLEAVE_ADJ_PHASE': 'd', 'TRIGGER_INPUT_SLOPE': 'h', 'SAMPLING_RATE': 'd', 'REFERENCE_MULTIPLIER_RATE': 'h', 'EVENT_INPUT_IMPEDANCE': 'h', 'TRIGGER_INPUT_IMPEDANCE': 'h', 'TRIGGER_SOURCE': 'h', 'RUN_STATE': 'h', 'DIVIDER_RATE': 'h'}
      +AWG_FILE_FORMAT_HEAD = {'CLOCK_SOURCE': 'h', 'COUPLING': 'h', 'DIVIDER_RATE': 'h', 'EVENT_INPUT_IMPEDANCE': 'h', 'EVENT_INPUT_POLARITY': 'h', 'EVENT_INPUT_THRESHOLD': 'd', 'EXTERNAL_REFERENCE_TYPE': 'h', 'HOLD_REPETITION_RATE': 'h', 'INTERLEAVE': 'h', 'INTERLEAVE_ADJ_AMPLITUDE': 'd', 'INTERLEAVE_ADJ_PHASE': 'd', 'INTERNAL_TRIGGER_RATE': 'd', 'JUMP_TIMING': 'h', 'REFERENCE_CLOCK_FREQUENCY_SELECTION': 'h', 'REFERENCE_MULTIPLIER_RATE': 'h', 'REFERENCE_SOURCE': 'h', 'REPETITION_RATE': 'd', 'RUN_MODE': 'h', 'RUN_STATE': 'h', 'SAMPLING_RATE': 'd', 'TRIGGER_INPUT_IMPEDANCE': 'h', 'TRIGGER_INPUT_POLARITY': 'h', 'TRIGGER_INPUT_SLOPE': 'h', 'TRIGGER_INPUT_THRESHOLD': 'd', 'TRIGGER_SOURCE': 'h', 'WAIT_VALUE': 'h', 'ZEROING': 'h'}
      @@ -1186,8 +1186,8 @@

      Submodules Parameters:
        -
      • name (string) – name of the instrument
      • -
      • address (string) – GPIB address (Note: 520 cannot be controlled +
      • name (string) – name of the instrument
      • +
      • address (string) – GPIB address (Note: 520 cannot be controlled via ethernet)
      • reset (bool) – resets to default values, default=false
      • numpoints (int) – sets the number of datapoints
      • @@ -1450,8 +1450,8 @@

        Submodules Parameters:
          -
        • name (string) – name of the instrument
        • -
        • address (string) – GPIB or ethernet address as used by VISA
        • +
        • name (string) – name of the instrument
        • +
        • address (string) – GPIB or ethernet address as used by VISA
        • timeout (float) – visa timeout, in secs. long default (180) to accommodate large waveforms
        • num_channels (int) – number of channels on the device
        • @@ -1600,7 +1600,24 @@

          Submodules
          ask(cmd)[source]
          -

      +

      Write a command string to the hardware and return a response.

      +

      Subclasses that transform cmd should override this method, and in +it call super().ask(new_cmd). Subclasses that define a new +hardware communication should instead override ask_raw.

      + +++ + + + + + + + +
      Parameters:cmd – the string to send to the instrument
      Returns:response (str, normally)
      Raises:Exception – wraps any underlying exception with extra context, +including the command and the instrument.
      +
      @@ -1624,7 +1641,24 @@

      Submodules
      get_idn()[source]
      -

      +

      Parse a standard VISA ‘*IDN?’ response into an ID dict.

      +

      Even though this is the VISA standard, it applies to various other +types as well, such as IPInstruments, so it is included here in the +Instrument base class.

      +

      Override this if your instrument does not support ‘*IDN?’ or +returns a nonstandard IDN string. This string is supposed to be a +comma-separated list of vendor, model, serial, and firmware, but +semicolon and colon are also common separators so we accept them here +as well.

      + +++ + + + +
      Returns:A dict containing vendor, model, serial, and firmware.
      +
      @@ -1635,7 +1669,22 @@

      Submodules
      write(cmd)[source]
      -

      +

      Write a command string with NO response to the hardware.

      +

      Subclasses that transform cmd should override this method, and in +it call super().write(new_cmd). Subclasses that define a new +hardware communication should instead override write_raw.

      + +++ + + + + + +
      Parameters:cmd – the string to send to the instrument
      Raises:Exception – wraps any underlying exception with extra context, +including the command and the instrument.
      +
      @@ -1741,7 +1790,24 @@

      Submodules
      get_idn()[source]
      -
      +

      Parse a standard VISA ‘*IDN?’ response into an ID dict.

      +

      Even though this is the VISA standard, it applies to various other +types as well, such as IPInstruments, so it is included here in the +Instrument base class.

      +

      Override this if your instrument does not support ‘*IDN?’ or +returns a nonstandard IDN string. This string is supposed to be a +comma-separated list of vendor, model, serial, and firmware, but +semicolon and colon are also common separators so we accept them here +as well.

      + +++ + + + +
      Returns:A dict containing vendor, model, serial, and firmware.
      +
      diff --git a/api/generated/qcodes.instrument_drivers.yokogawa.html b/api/generated/qcodes.instrument_drivers.yokogawa.html index 216d4d6678d..9bee7049a91 100644 --- a/api/generated/qcodes.instrument_drivers.yokogawa.html +++ b/api/generated/qcodes.instrument_drivers.yokogawa.html @@ -305,7 +305,7 @@

      Submodules Parameters: diff --git a/api/generated/qcodes.measure.Measure.html b/api/generated/qcodes.measure.Measure.html index 64d11242a5a..13eac257957 100644 --- a/api/generated/qcodes.measure.Measure.html +++ b/api/generated/qcodes.measure.Measure.html @@ -196,7 +196,7 @@

      qcodes.measure.Measure -Parameters:*actions (any) – sequence of actions to perform. Any action that is +Parameters:*actions (any) – sequence of actions to perform. Any action that is valid in a Loop can be used here. If an action is a gettable Parameter, its output will be included in the DataSet. Scalars returned by an action will be saved as length-1 arrays, @@ -207,7 +207,8 @@

      qcodes.measure.Measure
      __init__(*actions)[source]
      -

      +

      Initialize self. See help(type(self)) for accurate signature.

      +

      Methods

      @@ -217,7 +218,7 @@

      qcodes.measure.Measure

      - + @@ -235,7 +236,7 @@

      qcodes.measure.MeasureDecorate a snapshot dictionary with metadata.

      - +
      __init__(*actions)Initialize self.
      get_data_set(*args, **kwargs)
      snapshot_base([update])override this with the primary information for a subclass
      diff --git a/api/generated/qcodes.new_data.html b/api/generated/qcodes.new_data.html index 55a78a5c5d3..d31317d0bc9 100644 --- a/api/generated/qcodes.new_data.html +++ b/api/generated/qcodes.new_data.html @@ -197,7 +197,7 @@

      qcodes.new_data Parameters:
        -
      • location (str or callable or False, optional) –

        If you provide a string, +

      • location (str or callable or False, optional) –

        If you provide a string, it must be an unused location in the io manager. Can also be:

        • a callable location provider with one required parameter @@ -225,7 +225,7 @@

          qcodes.new_dataFormatter, optional) – sets the file format/structure to write (and read) with. Default DataSet.default_formatter which is initially GNUPlotFormat().

        • -
        • write_period (float or None, optional) – seconds +
        • write_period (float or None, optional) – seconds between saves to disk.
        diff --git a/api/generated/qcodes.plots.pyqtgraph.QtPlot.html b/api/generated/qcodes.plots.pyqtgraph.QtPlot.html index 49cad7c04f2..2371e697d76 100644 --- a/api/generated/qcodes.plots.pyqtgraph.QtPlot.html +++ b/api/generated/qcodes.plots.pyqtgraph.QtPlot.html @@ -225,7 +225,8 @@

        qcodes.plots.pyqtgraph.QtPlot
        __init__(*args, figsize=(1000, 600), interval=0.25, window_title='', theme=((60, 60, 60), 'w'), show_window=True, remote=True, fig_x_position=None, fig_y_position=None, **kwargs)[source]
        -
        +

        Initialize self. See help(type(self)) for accurate signature.

        +

        Methods

        @@ -235,7 +236,7 @@

        qcodes.plots.pyqtgraph.QtPlot

        - + @@ -244,7 +245,7 @@

        qcodes.plots.pyqtgraph.QtPlot

        - + @@ -255,7 +256,7 @@

        qcodes.plots.pyqtgraph.QtPlot

        - + @@ -264,7 +265,7 @@

        qcodes.plots.pyqtgraph.QtPlot

        - + @@ -289,7 +290,7 @@

        qcodes.plots.pyqtgraph.QtPlot

        - +
        __init__(*args[, figsize, interval, …])Initialize self.
        add(*args[, updater]) Add one trace to this plot.add_to_plot([subplot])Add a trace the plot itself (typically called by self.add, which incorporates args into kwargs, so the subclass doesn’t need to worry about this).
        add_updater(updater, plot_config) Add an updater to the plot.clear() Clears the plot window and removes all subplots and traces so that the window can be reused.
        expand_trace(args, kwargs)
        expand_trace(kwargs) Complete the x, y (and possibly z) data definition for a trace.
        fixUnitScaling(…)get_default_title() Get the default title, which for a plot is just a list of DataSet locations.
        get_label(data_array)
        get_label() Look for a label in data_array falling back on name.
        halt()update_plot()Update the plot itself (typically called by self.update).
        diff --git a/api/generated/qcodes.plots.qcmatplotlib.MatPlot.html b/api/generated/qcodes.plots.qcmatplotlib.MatPlot.html index 97f1699ac18..f8dbda25244 100644 --- a/api/generated/qcodes.plots.qcmatplotlib.MatPlot.html +++ b/api/generated/qcodes.plots.qcmatplotlib.MatPlot.html @@ -220,7 +220,8 @@

        qcodes.plots.qcmatplotlib.MatPlot
        __init__(*args, figsize=None, interval=1, subplots=None, num=None, **kwargs)[source]
        -
        +

        Initialize self. See help(type(self)) for accurate signature.

        +

        Methods

        @@ -230,7 +231,7 @@

        qcodes.plots.qcmatplotlib.MatPlot

        - + @@ -244,16 +245,16 @@

        qcodes.plots.qcmatplotlib.MatPlot

        - + - + - + diff --git a/api/generated/qcodes.station.Station.html b/api/generated/qcodes.station.Station.html index 0f8ac00601b..66063881ff4 100644 --- a/api/generated/qcodes.station.Station.html +++ b/api/generated/qcodes.station.Station.html @@ -203,7 +203,7 @@

        qcodes.station.Station

        __init__(*args[, figsize, interval, …])Initialize self.
        add(*args[, updater]) Add one trace to this plot.clear([subplots, figsize]) Clears the plot window and removes all subplots and traces so that the window can be reused.
        default_figsize(subplots)
        default_figsize() Provides default figsize for given subplots.
        expand_trace(args, kwargs)
        expand_trace(kwargs) Complete the x, y (and possibly z) data definition for a trace.
        get_default_title() Get the default title, which for a plot is just a list of DataSet locations.
        get_label(data_array)
        get_label() Look for a label in data_array falling back on name.
        halt()Parameters:
        • *components (list[Any]) – components to add immediately to the Station. can be added later via self.add_component
        • -
        • monitor (None) – Not implememnted, the object that monitors the system continuously
        • +
        • monitor (None) – Not implememnted, the object that monitors the system continuously
        • default (bool) – is this station the default, which gets used in Loops and elsewhere that a Station can be specified, default true
        • update_snapshot (bool) – immediately update the snapshot @@ -230,7 +230,8 @@

          qcodes.station.Station
          __init__(*components, monitor=None, default=True, update_snapshot=True, **kwargs)[source]
          -
          +

          Initialize self. See help(type(self)) for accurate signature.

          +

          Methods

          @@ -240,7 +241,7 @@

          qcodes.station.Station

          - + diff --git a/api/public.html b/api/public.html index e1101c31551..d823c780513 100644 --- a/api/public.html +++ b/api/public.html @@ -313,16 +313,16 @@

          Instrument

          - + - + - + diff --git a/examples/index.html b/examples/index.html index 5bbc5192838..98c53c04698 100644 --- a/examples/index.html +++ b/examples/index.html @@ -119,14 +119,11 @@
        • QCoDeS example with SR830
        • Lets capture by sending triggers. We use the IVVI to send triggers.
        • Qcodes example ATS_ONWORK
        • -
        • QCoDeS example with AMI430
        • Qcodes example with Agilent 34400A
        • Qcodes example with Decadac
        • -
        • Qcodes example with HP8753D
        • Qcodes example with Ithaco
        • Qcodes example with Keithley 2600
        • Qcodes example with Keysight 33500B
        • -
        • Example Notebook for Keysight Infiniium Oscilloscopes
        • Qcodes example with Mercury IPS (Magnet)
        • Qcodes example with QDac
        • Qcodes example with QDac_channels
        • @@ -135,7 +132,11 @@
        • QCoDeS Example with Tektronix TPS2012
        • QCoDeS Example with Tektronix AWG5014
        • Qcodes example with Triton
        • +
        • Qcodes example with Yokogawa GS200/GS210
        • QCoDeS Example with ZI UHF-LI
        • +
        • QCoDeS example with AMI430
        • +
        • Qcodes example with HP8753D
        • +
        • Example Notebook for Keysight Infiniium Oscilloscopes
        • Benchmarking
            @@ -336,14 +337,8 @@

            DriversLets capture by sending triggers. We use the IVVI to send triggers.
          • Qcodes example ATS_ONWORK
          • -
          • QCoDeS example with AMI430
          • Qcodes example with Agilent 34400A
          • Qcodes example with Decadac
          • -
          • Qcodes example with HP8753D -
          • Qcodes example with Ithaco
          • Qcodes example with Keithley 2600
          • -
          • Example Notebook for Keysight Infiniium Oscilloscopes -
          • Qcodes example with Mercury IPS (Magnet)
          • Qcodes example with QDac
            • Basic QDac Usage diff --git a/objects.inv b/objects.inv index c92a50b9533..9b417058236 100644 Binary files a/objects.inv and b/objects.inv differ diff --git a/searchindex.js b/searchindex.js index e1a6a26c104..ceaed66181f 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Creating Simulated PyVISA Instruments","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/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_with_SR86x_with_buffered_readout","_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 HP8753D","_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 Keysight Infiniium Oscilloscope","_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 RTO 1000 series Oscilloscope","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with Yokogawa","_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/Creating Simulated PyVISA Instruments.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_with_SR86x_with_buffered_readout.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 HP8753D.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 Keysight Infiniium Oscilloscope.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 RTO 1000 series Oscilloscope.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with Yokogawa.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__:[37,1,1,""]},"qcodes.BreakIf":{__init__:[38,1,1,""]},"qcodes.ChannelList":{__init__:[39,1,1,""]},"qcodes.CombinedParameter":{__init__:[40,1,1,""]},"qcodes.Config":{__init__:[41,1,1,""],config_file_name:[41,2,1,""],current_config:[41,2,1,""],current_config_path:[41,2,1,""],current_schema:[41,2,1,""],cwd_file_name:[41,2,1,""],default_file_name:[41,2,1,""],env_file_name:[41,2,1,""],home_file_name:[41,2,1,""],schema_cwd_file_name:[41,2,1,""],schema_default_file_name:[41,2,1,""],schema_env_file_name:[41,2,1,""],schema_file_name:[41,2,1,""],schema_home_file_name:[41,2,1,""]},"qcodes.DataArray":{__init__:[42,1,1,""]},"qcodes.DataSet":{__init__:[43,1,1,""],background_functions:[43,2,1,""]},"qcodes.DiskIO":{__init__:[44,1,1,""]},"qcodes.FormatLocation":{__init__:[45,1,1,""]},"qcodes.Formatter":{__init__:[46,1,1,""]},"qcodes.Function":{__init__:[47,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[48,1,1,""]},"qcodes.IPInstrument":{__init__:[49,1,1,""]},"qcodes.Instrument":{__init__:[50,1,1,""],functions:[50,2,1,""],name:[50,2,1,""],parameters:[50,2,1,""],submodules:[50,2,1,""]},"qcodes.InstrumentChannel":{__init__:[51,1,1,""],functions:[51,2,1,""],name:[51,2,1,""],parameters:[51,2,1,""]},"qcodes.Loop":{__init__:[52,1,1,""]},"qcodes.ManualParameter":{__init__:[53,1,1,""]},"qcodes.MultiParameter":{__init__:[54,1,1,""]},"qcodes.Parameter":{__init__:[55,1,1,""]},"qcodes.StandardParameter":{__init__:[56,1,1,""]},"qcodes.SweepFixedValues":{__init__:[57,1,1,""]},"qcodes.SweepValues":{__init__:[58,1,1,""]},"qcodes.Task":{__init__:[59,1,1,""]},"qcodes.VisaInstrument":{__init__:[60,1,1,""],visa_handle:[60,2,1,""]},"qcodes.Wait":{__init__:[61,1,1,""]},"qcodes.instrument_drivers":{Advantech:[64,4,0,"-"],AlazarTech:[65,4,0,"-"],HP:[66,4,0,"-"],Harvard:[67,4,0,"-"],Keysight:[68,4,0,"-"],Lakeshore:[69,4,0,"-"],QDev:[70,4,0,"-"],QuTech:[71,4,0,"-"],Spectrum:[72,4,0,"-"],ZI:[74,4,0,"-"],agilent:[75,4,0,"-"],american_magnetics:[76,4,0,"-"],devices:[63,4,0,"-"],ithaco:[77,4,0,"-"],oxford:[78,4,0,"-"],rigol:[79,4,0,"-"],rohde_schwarz:[80,4,0,"-"],signal_hound:[81,4,0,"-"],stanford_research:[82,4,0,"-"],tektronix:[83,4,0,"-"],test:[63,4,0,"-"],weinschel:[84,4,0,"-"],yokogawa:[85,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[64,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[64,0,1,""],DAQNaviException:[64,5,1,""],DAQNaviWarning:[64,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[64,2,1,""],check:[64,1,1,""],close:[64,1,1,""],get_idn:[64,1,1,""],port_count:[64,1,1,""],read_pin:[64,1,1,""],read_port:[64,1,1,""],write_pin:[64,1,1,""],write_port:[64,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[65,4,0,"-"],ATS:[65,4,0,"-"],ATS_acquisition_controllers:[65,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[65,0,1,""],AlazarParameter:[65,0,1,""],AlazarTech_ATS:[65,0,1,""],Buffer:[65,0,1,""],TrivialDictionary:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[65,2,1,""],handle_buffer:[65,1,1,""],post_acquire:[65,1,1,""],pre_acquire:[65,1,1,""],pre_start_capture:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[65,1,1,""],channels:[65,2,1,""],clear_buffers:[65,1,1,""],config:[65,1,1,""],dll_path:[65,2,1,""],find_boards:[65,6,1,""],get_board_info:[65,6,1,""],get_idn:[65,1,1,""],get_sample_rate:[65,1,1,""],signal_to_volt:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[65,1,1,""],free_mem:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[65,1,1,""],fit:[65,1,1,""],handle_buffer:[65,1,1,""],post_acquire:[65,1,1,""],pre_acquire:[65,1,1,""],pre_start_capture:[65,1,1,""],update_acquisitionkwargs:[65,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[66,4,0,"-"],HP8753D:[66,4,0,"-"],HP_83650A:[66,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[66,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[66,0,1,""],HP8753DTrace:[66,0,1,""],HPIntParser:[66,3,1,""],TraceNotReady:[66,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[66,1,1,""],reset:[66,1,1,""],run_N_times:[66,1,1,""],run_continously:[66,1,1,""],startup:[66,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[66,1,1,""],prepare_trace:[66,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[66,0,1,""],parsestr:[66,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[66,1,1,""],print_modstatus:[66,1,1,""],reset:[66,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[67,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[67,5,1,""],DacChannel:[67,0,1,""],DacReader:[67,0,1,""],DacSlot:[67,0,1,""],Decadac:[67,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[67,2,1,""],ask:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[67,2,1,""],DAC_SLOT_CLASS:[67,2,1,""],__repr__:[67,1,1,""],_ramp_state:[67,2,1,""],_ramp_time:[67,2,1,""],connect_message:[67,1,1,""],get_idn:[67,1,1,""],ramp_all:[67,1,1,""],set_all:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[68,4,0,"-"],KeysightAgilent_33XXX:[68,4,0,"-"],Keysight_33500B:[68,4,0,"-"],Keysight_33500B_channels:[68,4,0,"-"],Keysight_34465A:[68,4,0,"-"],Keysight_E8267D:[68,4,0,"-"],M3201A:[68,4,0,"-"],M3300A:[68,4,0,"-"],N51x1:[68,4,0,"-"],test_suite:[68,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[68,0,1,""],InfiniiumChannel:[68,0,1,""],RawTrace:[68,0,1,""],TraceNotReady:[68,5,1,""],TraceSetPointsChanged:[68,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[68,1,1,""],prepare_curvedata:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[68,0,1,""],SyncChannel:[68,0,1,""],WaveformGenerator_33XXX:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[68,0,1,""],Keysight_33500B_Channels:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[68,0,1,""],Keysight_34465A:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[68,1,1,""],prepare:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[68,2,1,""],flush_error_queue:[68,1,1,""],model:[68,2,1,""],ranges:[68,2,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[68,0,1,""],parse_on_off:[68,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[68,1,1,""],on:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[68,0,1,""],M3300A_DIG:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[68,0,1,""],TestKeysight_M3300A:[68,0,1,""],TestSD_Module:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_PXI_trigger:[68,1,1,""],test_channel_amplitude:[68,1,1,""],test_channel_frequency:[68,1,1,""],test_channel_offset:[68,1,1,""],test_channel_phase:[68,1,1,""],test_channel_wave_shape:[68,1,1,""],test_chassis_and_slot:[68,1,1,""],test_chassis_number:[68,1,1,""],test_clock_frequency:[68,1,1,""],test_open_close:[68,1,1,""],test_serial_number:[68,1,1,""],test_slot_number:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_PXI_trigger:[68,1,1,""],test_channel_amplitude:[68,1,1,""],test_channel_frequency:[68,1,1,""],test_channel_offset:[68,1,1,""],test_channel_phase:[68,1,1,""],test_channel_wave_shape:[68,1,1,""],test_chassis_and_slot:[68,1,1,""],test_chassis_number:[68,1,1,""],test_clock_frequency:[68,1,1,""],test_open_close:[68,1,1,""],test_serial_number:[68,1,1,""],test_slot_number:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_chassis_and_slot:[68,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[69,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[69,0,1,""],SensorChannel:[69,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[70,4,0,"-"],QDac_channels:[70,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[70,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[70,1,1,""],max_status_age:[70,2,1,""],print_overview:[70,1,1,""],printslopes:[70,1,1,""],read:[70,1,1,""],read_state:[70,1,1,""],snapshot_base:[70,1,1,""],voltage_range_status:[70,2,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[70,0,1,""],QDacChannel:[70,0,1,""],QDacMultiChannelParameter:[70,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[70,1,1,""],max_status_age:[70,2,1,""],print_overview:[70,1,1,""],printslopes:[70,1,1,""],read:[70,1,1,""],read_state:[70,1,1,""],snapshot_base:[70,1,1,""],voltage_range_status:[70,2,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[70,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[71,4,0,"-"],D5a:[71,4,0,"-"],F1d:[71,4,0,"-"],IVVI:[71,4,0,"-"],S5i:[71,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[71,1,1,""],get_filter_value:[71,1,1,""],get_mode:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[71,2,1,""],Halfrange:[71,2,1,""],adjust_parameter_validator:[71,1,1,""],ask:[71,1,1,""],get_all:[71,1,1,""],get_idn:[71,1,1,""],get_pol_dac:[71,1,1,""],read:[71,1,1,""],round_dac:[71,1,1,""],set_dacs_zero:[71,1,1,""],set_pol_dacrack:[71,1,1,""],write:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[71,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[73,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[73,4,0,"-"],spcerr:[73,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[73,3,1,""],GIGA_B:[73,3,1,""],KILO:[73,3,1,""],KILO_B:[73,3,1,""],MEGA:[73,3,1,""],MEGA_B:[73,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[74,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[74,0,1,""],Scope:[74,0,1,""],Sweep:[74,0,1,""],ZIUHFLI:[74,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[74,1,1,""],get:[74,1,1,""],names:[74,2,1,""],post_trigger_actions:[74,2,1,""],prepare_scope:[74,1,1,""],setpoint_names:[74,2,1,""],setpoints:[74,2,1,""],shapes:[74,2,1,""],units:[74,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[74,1,1,""],get:[74,1,1,""],names:[74,2,1,""],setpoint_names:[74,2,1,""],setpoints:[74,2,1,""],shapes:[74,2,1,""],units:[74,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[74,7,1,""],add_signal_to_sweeper:[74,1,1,""],close:[74,1,1,""],print_sweeper_settings:[74,1,1,""],remove_signal_from_sweeper:[74,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[75,4,0,"-"],E8267C:[75,4,0,"-"],E8527D:[75,4,0,"-"],HP33210A:[75,4,0,"-"],test_suite:[75,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[75,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[75,1,1,""],display_clear:[75,1,1,""],init_measurement:[75,1,1,""],reset:[75,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[75,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[75,7,1,""],rad_to_deg:[75,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[75,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[75,1,1,""],off:[75,1,1,""],on:[75,1,1,""],parse_on_off:[75,1,1,""],rad_to_deg:[75,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[75,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[75,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[75,2,1,""],setUpClass:[75,6,1,""],test_firmware_version:[75,1,1,""],test_frequency:[75,1,1,""],test_on_off:[75,1,1,""],test_phase:[75,1,1,""],test_power:[75,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[76,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[76,0,1,""],AMI430_3D:[76,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[76,2,1,""],set_field:[76,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[63,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[63,1,1,""],get_raw:[63,1,1,""],set_raw:[63,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[77,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[77,0,1,""],Ithaco_1211:[77,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[77,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[77,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[78,4,0,"-"],IPS120:[78,4,0,"-"],kelvinox:[78,4,0,"-"],mercuryiPS:[78,4,0,"-"],triton:[78,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[78,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[78,1,1,""],get_all:[78,1,1,""],get_idn:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],set_remote_status:[78,1,1,""],set_to_fast:[78,1,1,""],set_to_slow:[78,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[78,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[78,1,1,""],examine:[78,1,1,""],get_all:[78,1,1,""],get_changed:[78,1,1,""],get_idn:[78,1,1,""],heater_off:[78,1,1,""],heater_on:[78,1,1,""],hold:[78,1,1,""],identify:[78,1,1,""],leave_persistent_mode:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],run_to_field:[78,1,1,""],run_to_field_wait:[78,1,1,""],set_persistent:[78,1,1,""],to_setpoint:[78,1,1,""],to_zero:[78,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[78,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[78,1,1,""],get_all:[78,1,1,""],get_idn:[78,1,1,""],identify:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],rotate_Nvalve:[78,1,1,""],set_mix_chamber_heater_mode:[78,1,1,""],set_mix_chamber_heater_power_range:[78,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[78,0,1,""],MercuryiPSArray:[78,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[78,1,1,""],rtos:[78,1,1,""],to_zero:[78,1,1,""],write:[78,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[78,1,1,""],set:[78,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[78,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[78,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[79,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[79,0,1,""],clean_string:[79,3,1,""],is_number:[79,3,1,""],parse_multiple_outputs:[79,3,1,""],parse_single_output:[79,3,1,""],parse_string_output:[79,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{RTO1000:[80,4,0,"-"],SGS100A:[80,4,0,"-"],SMR40:[80,4,0,"-"],ZNB20:[80,4,0,"-"],ZNB:[80,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[80,0,1,""],ScopeChannel:[80,0,1,""],ScopeTrace:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get:[80,1,1,""],prepare_trace:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[80,1,1,""],on:[80,1,1,""],parse_on_off:[80,1,1,""],set_IQ_state:[80,1,1,""],set_pulsemod_source:[80,1,1,""],set_pulsemod_state:[80,1,1,""],set_status:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[80,1,1,""],do_get_power:[80,1,1,""],do_get_pulse_delay:[80,1,1,""],do_get_status:[80,1,1,""],do_get_status_of_ALC:[80,1,1,""],do_get_status_of_modulation:[80,1,1,""],do_set_frequency:[80,1,1,""],do_set_power:[80,1,1,""],do_set_pulse_delay:[80,1,1,""],do_set_status:[80,1,1,""],do_set_status_of_ALC:[80,1,1,""],do_set_status_of_modulation:[80,1,1,""],get_all:[80,1,1,""],off:[80,1,1,""],off_modulation:[80,1,1,""],on:[80,1,1,""],on_modulation:[80,1,1,""],reset:[80,1,1,""],set_ext_trig:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[80,0,1,""],FrequencySweepMagPhase:[80,0,1,""],ZNB:[80,0,1,""],ZNBChannel:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[80,1,1,""],set_sweep:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[80,1,1,""],set_sweep:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[80,1,1,""],clear_channels:[80,1,1,""],display_grid:[80,1,1,""],initialise:[80,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[81,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[81,0,1,""],constants:[81,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[81,1,1,""],abort:[81,1,1,""],check_for_error:[81,1,1,""],closeDevice:[81,1,1,""],configure:[81,1,1,""],default_server_name:[81,6,1,""],dll_path:[81,2,1,""],get_power_at_freq:[81,1,1,""],get_spectrum:[81,1,1,""],initialisation:[81,1,1,""],openDevice:[81,1,1,""],prepare_for_measurement:[81,1,1,""],preset:[81,1,1,""],saStatus:[81,2,1,""],saStatus_inverted:[81,2,1,""],safe_reload:[81,1,1,""],sweep:[81,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[81,2,1,""],TG_THRU_0DB:[81,2,1,""],TG_THRU_20DB:[81,2,1,""],sa124_MAX_FREQ:[81,2,1,""],sa124_MIN_FREQ:[81,2,1,""],sa44_MAX_FREQ:[81,2,1,""],sa44_MIN_FREQ:[81,2,1,""],saDeviceTypeNone:[81,2,1,""],saDeviceTypeSA124A:[81,2,1,""],saDeviceTypeSA124B:[81,2,1,""],saDeviceTypeSA44:[81,2,1,""],saDeviceTypeSA44B:[81,2,1,""],sa_AUDIO:[81,2,1,""],sa_AUDIO_AM:[81,2,1,""],sa_AUDIO_CW:[81,2,1,""],sa_AUDIO_FM:[81,2,1,""],sa_AUDIO_LSB:[81,2,1,""],sa_AUDIO_USB:[81,2,1,""],sa_AUTO_ATTEN:[81,2,1,""],sa_AUTO_GAIN:[81,2,1,""],sa_AVERAGE:[81,2,1,""],sa_BYPASS:[81,2,1,""],sa_IDLE:[81,2,1,""],sa_IQ:[81,2,1,""],sa_IQ_SAMPLE_RATE:[81,2,1,""],sa_LIN_FULL_SCALE:[81,2,1,""],sa_LIN_SCALE:[81,2,1,""],sa_LOG_FULL_SCALE:[81,2,1,""],sa_LOG_SCALE:[81,2,1,""],sa_LOG_UNITS:[81,2,1,""],sa_MAX_ATTEN:[81,2,1,""],sa_MAX_GAIN:[81,2,1,""],sa_MAX_IQ_DECIMATION:[81,2,1,""],sa_MAX_RBW:[81,2,1,""],sa_MAX_REF:[81,2,1,""],sa_MAX_RT_RBW:[81,2,1,""],sa_MIN_IQ_BANDWIDTH:[81,2,1,""],sa_MIN_MAX:[81,2,1,""],sa_MIN_RBW:[81,2,1,""],sa_MIN_RT_RBW:[81,2,1,""],sa_MIN_SPAN:[81,2,1,""],sa_POWER_UNITS:[81,2,1,""],sa_REAL_TIME:[81,2,1,""],sa_SWEEPING:[81,2,1,""],sa_TG_SWEEP:[81,2,1,""],sa_VOLT_UNITS:[81,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[82,4,0,"-"],SIM928:[82,4,0,"-"],SR560:[82,4,0,"-"],SR830:[82,4,0,"-"],SR860:[82,4,0,"-"],SR865:[82,4,0,"-"],SR86x:[82,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[82,1,1,""],byte_to_bits:[82,7,1,""],check_module_errors:[82,1,1,""],find_modules:[82,1,1,""],get_module_idn:[82,1,1,""],get_module_status:[82,1,1,""],get_voltage:[82,1,1,""],reset_module:[82,1,1,""],set_smooth:[82,1,1,""],set_voltage:[82,1,1,""],write_module:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[82,0,1,""],VoltageParameter:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[82,0,1,""],SR830:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[82,1,1,""],prepare_buffer_readout:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[82,0,1,""],SR86xBuffer:[82,0,1,""],SR86xBufferReadout:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_samples:[82,1,1,""],get_capture_data:[82,1,1,""],start_capture:[82,1,1,""],stop_capture:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[82,1,1,""],prepare_readout:[82,1,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[83,4,0,"-"],AWG5200:[83,4,0,"-"],AWG520:[83,4,0,"-"],AWGFileParser:[83,4,0,"-"],Keithley_2000:[83,4,0,"-"],Keithley_2400:[83,4,0,"-"],Keithley_2600:[83,4,0,"-"],Keithley_2600_channels:[83,4,0,"-"],Keithley_2700:[83,4,0,"-"],TPS2012:[83,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[83,0,1,""],parsestr:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[83,2,1,""],AWG_FILE_FORMAT_HEAD:[83,2,1,""],all_channels_off:[83,1,1,""],all_channels_on:[83,1,1,""],change_folder:[83,1,1,""],clear_message_queue:[83,1,1,""],create_and_goto_dir:[83,1,1,""],delete_all_waveforms_from_list:[83,1,1,""],force_event:[83,1,1,""],force_trigger:[83,1,1,""],force_trigger_event:[83,1,1,""],generate_awg_file:[83,1,1,""],generate_channel_cfg:[83,1,1,""],generate_sequence_cfg:[83,1,1,""],get_all:[83,1,1,""],get_current_folder_name:[83,1,1,""],get_error:[83,1,1,""],get_filenames:[83,1,1,""],get_folder_contents:[83,1,1,""],get_sq_mode:[83,1,1,""],get_sqel_loopcnt:[83,1,1,""],get_sqel_trigger_wait:[83,1,1,""],get_sqel_waveform:[83,1,1,""],get_state:[83,1,1,""],goto_root:[83,1,1,""],is_awg_ready:[83,1,1,""],load_awg_file:[83,1,1,""],make_and_save_awg_file:[83,1,1,""],make_send_and_load_awg_file:[83,1,1,""],newlinestripper:[83,1,1,""],pack_waveform:[83,1,1,""],run:[83,1,1,""],send_DC_pulse:[83,1,1,""],send_awg_file:[83,1,1,""],send_waveform_to_list:[83,1,1,""],set_current_folder_name:[83,1,1,""],set_sqel_event_jump_target_index:[83,1,1,""],set_sqel_event_jump_type:[83,1,1,""],set_sqel_event_target_index:[83,1,1,""],set_sqel_goto_state:[83,1,1,""],set_sqel_goto_target_index:[83,1,1,""],set_sqel_loopcnt:[83,1,1,""],set_sqel_loopcnt_to_inf:[83,1,1,""],set_sqel_trigger_wait:[83,1,1,""],set_sqel_waveform:[83,1,1,""],start:[83,1,1,""],stop:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[83,1,1,""],clear_waveforms:[83,1,1,""],delete_all_waveforms_from_list:[83,1,1,""],force_logicjump:[83,1,1,""],force_trigger:[83,1,1,""],get_all:[83,1,1,""],get_current_folder_name:[83,1,1,""],get_filenames:[83,1,1,""],get_folder_contents:[83,1,1,""],get_jumpmode:[83,1,1,""],get_state:[83,1,1,""],goto_root:[83,1,1,""],load_and_set_sequence:[83,1,1,""],make_directory:[83,1,1,""],resend_waveform:[83,1,1,""],return_self:[83,1,1,""],send_pattern:[83,1,1,""],send_sequence2:[83,1,1,""],send_sequence:[83,1,1,""],send_waveform:[83,1,1,""],set_current_folder_name:[83,1,1,""],set_jumpmode:[83,1,1,""],set_sequence:[83,1,1,""],set_setup_filename:[83,1,1,""],start:[83,1,1,""],stop:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[83,0,1,""],parse_output_bool:[83,3,1,""],parse_output_string:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[83,1,1,""],display_clear:[83,1,1,""],display_normal:[83,1,1,""],exit_key:[83,1,1,""],get_idn:[83,1,1,""],reset:[83,1,1,""],write:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[83,0,1,""],Keithley_2600:[83,0,1,""],LuaSweepParameter:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[83,1,1,""],reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[83,1,1,""],display_clear:[83,1,1,""],display_normal:[83,1,1,""],exit_key:[83,1,1,""],get_idn:[83,1,1,""],reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[83,1,1,""],prepareSweep:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[83,0,1,""],bool_to_str:[83,3,1,""],parsebool:[83,3,1,""],parseint:[83,3,1,""],parsestr:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[83,1,1,""],reset:[83,1,1,""],set_defaults:[83,1,1,""],set_mode:[83,1,1,""],set_mode_volt_dc:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[83,0,1,""],TPS2012:[83,0,1,""],TPS2012Channel:[83,0,1,""],TraceNotReady:[83,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[83,1,1,""],get:[83,1,1,""],prepare_curvedata:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[83,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[63,0,1,""],test_instrument:[63,3,1,""],test_instruments:[63,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[63,2,1,""],setUpClass:[63,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[84,4,0,"-"],test_suite:[84,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[84,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[84,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[84,2,1,""],test_attenuation:[84,1,1,""],test_firmware_version:[84,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[85,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[85,0,1,""],GS200Exception:[85,5,1,""],GS200_Monitor:[85,0,1,""],float_round:[85,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[85,1,1,""],on:[85,1,1,""],ramp_current:[85,1,1,""],ramp_voltage:[85,1,1,""],state:[85,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[85,1,1,""],on:[85,1,1,""],state:[85,1,1,""],update_measurement_enabled:[85,1,1,""]},"qcodes.measure":{Measure:[87,0,1,""]},"qcodes.measure.Measure":{__init__:[87,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[89,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[89,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[90,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[90,1,1,""]},"qcodes.station":{Station:[91,0,1,""]},"qcodes.station.Station":{"default":[91,2,1,""],__init__:[91,1,1,""],delegate_attr_dicts:[91,2,1,""]},"qcodes.utils":{command:[92,4,0,"-"],deferred_operations:[93,4,0,"-"],helpers:[94,4,0,"-"],metadata:[95,4,0,"-"],validators:[96,4,0,"-"]},qcodes:{ArrayParameter:[37,0,1,""],BreakIf:[38,0,1,""],ChannelList:[39,0,1,""],CombinedParameter:[40,0,1,""],Config:[41,0,1,""],DataArray:[42,0,1,""],DataSet:[43,0,1,""],DiskIO:[44,0,1,""],FormatLocation:[45,0,1,""],Formatter:[46,0,1,""],Function:[47,0,1,""],GNUPlotFormat:[48,0,1,""],IPInstrument:[49,0,1,""],Instrument:[50,0,1,""],InstrumentChannel:[51,0,1,""],Loop:[52,0,1,""],ManualParameter:[53,0,1,""],MultiParameter:[54,0,1,""],Parameter:[55,0,1,""],StandardParameter:[56,0,1,""],SweepFixedValues:[57,0,1,""],SweepValues:[58,0,1,""],Task:[59,0,1,""],VisaInstrument:[60,0,1,""],Wait:[61,0,1,""],combine:[62,3,1,""],instrument_drivers:[63,4,0,"-"],load_data:[86,3,1,""],new_data:[88,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":24,"001_":24,"001_13":45,"001_testsweep_11":11,"001_unicorn_2016":10,"002_":17,"002_rainbow_2016":10,"00370000e":23,"003_":26,"005_rainbow_2016":10,"006_":32,"007_":32,"009_testsweep_15":15,"009_unicorn_2050":10,"01084000e":23,"010_mockloop_hdf5_test_15":5,"011_":[22,36],"011_mockloop_hdf5_test_15":5,"012_":36,"012_hp8753d_tutorial_14":22,"013_":16,"013_n_1000_setget_11":14,"014_n_1000_setget_11":14,"015_":30,"015_n_1000_setget_11":14,"016_":30,"016_n_1000_setget_11":14,"016_test_missing_attr_15":5,"01763000e":23,"017_mockparabola_run_15":5,"017_n_1000_setget_11":14,"018_mockparabola_run_15":5,"018_n_1000_setget_11":14,"018_testsweep_12":12,"019_n_1000_setget_11":14,"019_testsweep_12":12,"020_n_1000_setget_11":14,"020_testsweep_12":12,"021_testsweep_12":12,"025_":15,"026_":15,"027_":15,"028_":15,"029_":15,"02s":[17,31],"030_":15,"031_":15,"032_":15,"033_":15,"034_":15,"035_":15,"036_":15,"03d":33,"04s":26,"06s":12,"073_":31,"076_":31,"076_n_100_setget_16":13,"077_":31,"077_n_100_setget_16":13,"078_":31,"078_n_100_setget_16":13,"079_":31,"079_n_100_setget_16":13,"07s":[4,15],"080_":31,"080_n_100_setget_16":13,"081_n_100_setget_16":13,"082_n_100_setget_16":13,"083_":31,"083_n_100_setget_16":13,"0848e":8,"084_":[13,31],"085_":[13,31],"086_":[13,31],"087_":[13,31],"088_":[13,31],"089_":[13,31],"08s":35,"090_":[13,31],"091_":13,"092_n_1000_setget_16":13,"093_n_1000_setget_16":13,"094_n_1000_setget_16":13,"095_n_1000_setget_16":13,"096_n_1000_setget_16":13,"097_n_1000_setget_16":13,"098_n_1000_setget_16":13,"0994e":24,"099_n_1000_setget_16":13,"09s":[24,30],"0x1c10ee73a58":15,"0x278d4c91780":36,"0x7ebf668":8,"0x7ebf6a0":8,"0x7ecd5c0":8,"0x7ed0668":23,"0x7edd2e8":8,"0x7f26d30":8,"0x7f920ec0eef0":116,"0x7fd834e99ea0":0,"0x818a908":18,"0x8d11978":8,"1000k44":30,"100_":13,"100e":13,"100e3":[22,30,31],"100e6":68,"100k":26,"100khz":26,"100x100":12,"101_":13,"102_":13,"103_":13,"104_":13,"105_":13,"106_":13,"107_":13,"108_n_100_setget_16":13,"109_n_100_setget_16":13,"10e":[26,32,35,36],"10e3":35,"10e6":[18,36],"10kohm":35,"10mhz":81,"10v":[35,55],"110_n_100_setget_16":13,"111_n_100_setget_16":13,"112_n_100_setget_16":13,"113_n_100_setget_16":13,"114_n_100_setget_16":13,"115_n_100_setget_16":13,"116_":13,"117_":13,"118_":13,"119_":13,"11s":25,"1206e":24,"120_":13,"121_":13,"122_":13,"123_":13,"124_":13,"125_":13,"126_":13,"127_":13,"128_":13,"129_":13,"12e9":3,"12f":3,"12s":17,"130_":13,"131_":13,"132_":13,"133_":13,"134_":13,"135_":13,"136_":13,"137_":13,"138_":13,"139_":13,"13_testsweep":0,"13_testsweep_002":0,"140_":13,"141_":13,"142_":13,"143_":13,"144_":13,"145_":13,"146_":13,"147_":13,"148_":13,"149_":13,"14s":14,"150_":13,"151_":13,"152_":13,"153_":13,"154_":13,"155_":13,"156_":13,"157_":13,"158_":13,"159_":13,"15_rainbow_test":45,"15g":48,"15s":[13,31],"160_":13,"161_":13,"16243e":8,"162_":13,"163_":13,"164_":13,"165_":13,"166_":13,"167_":13,"168_":13,"169_":13,"16_13":10,"16bit":26,"16s":[16,31],"170_":13,"171_":13,"172_":13,"173_":13,"174_":13,"175_":13,"176_":13,"177_":13,"178_":13,"179_":13,"180_":13,"181_":13,"182_":13,"183_":13,"184_":13,"185_":13,"186_":13,"187_":13,"188_":13,"189_":13,"190_":13,"191_":13,"192_":13,"193_":13,"194_":13,"195_":13,"196_":13,"197_n_1000_setget_16":13,"198_n_1000_setget_16":13,"199_n_1000_setget_16":13,"1ct":32,"1e3":[25,36],"1e6":[31,36],"1e9":22,"1ma":35,"1ms":112,"1vpp":26,"20000000e":33,"200_n_1000_setget_16":13,"200e3":31,"200uw":78,"2012b":[32,83],"201_n_1000_setget_16":13,"202_n_1000_setget_16":13,"203_n_1000_setget_16":13,"204_n_1000_setget_16":13,"205_":13,"206_":13,"207_":13,"208_":13,"209_":13,"20e":36,"20ma":64,"20mw":78,"20uw":78,"210_":13,"211_":13,"212_":13,"23160746e":36,"23s":22,"24196735e":36,"250khz":81,"25e":[29,32],"25gb":18,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"2614b":[3,8,13,24,83],"2635b":3,"2636b":3,"27041e":8,"28539f77dfd3":2,"2d_test":11,"2e3":25,"2min":31,"2mw":78,"2uw":78,"30_alazartest":18,"33500b":[68,103,112],"33522b":25,"33xxx":68,"34400a":112,"34401a":8,"34410a":8,"34411a":112,"34460a":68,"34461a":68,"34465a":[15,68,103,105,112],"34470a":68,"348s":5,"352161306002045e":27,"36s":31,"39759855e":36,"3x2":9,"42637000e":23,"4271e":8,"44s":32,"44xx":102,"4634e":8,"4port":31,"50e":[25,32],"52608e":28,"541_13":10,"54972e":24,"56s":31,"57s":19,"5e9":31,"60s":19,"62s":19,"69014000e":23,"6955e":24,"6a5acd":33,"6e6":31,"8133a":[66,103],"83650a":103,"844e846b99a2":15,"8753d":[22,66],"91t928108":35,"93s":12,"94851000e":23,"95535000e":23,"96216000e":23,"98941000e":23,"99618000e":23,"9e3":31,"\u03bca":[28,29],"\u03bcv":7,"abstract":119,"boolean":[71,83,105,116],"break":[3,4,11,38,82,83,107,108],"byte":[65,71,82,83],"case":[2,3,9,18,33,36,47,52,55,63,65,90,108,115,119,120],"catch":3,"char":70,"class":[1,4,5,9,10,20,23,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,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,87,89,90,91,92,93,94,95,96,108,111,112,120],"default":[1,2,3,4,6,9,11,28,29,31,37,41,42,43,45,47,48,49,52,54,55,60,63,65,66,67,68,70,71,77,78,80,82,83,86,88,89,90,91,100,101,106,108,111,118],"enum":[2,3,4,20,23,36,55,83,111,116],"export":78,"final":[11,15,18,22,24,33,36,46,47,55,119],"float":[3,4,14,43,47,55,57,63,66,67,68,71,74,76,78,79,80,82,83,85,88,90,105],"function":[0,1,3,4,7,8,9,10,11,15,18,19,22,23,24,26,32,33,38,40,43,50,51,53,55,57,59,62,64,65,68,71,74,75,78,79,80,81,82,83,84,93,94,96,105,106,108,111,114,119,120],"goto":[33,83],"import":[0,1,2,3,4,5,6,7,8,9,10,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,34,35,36,83,105,108,112,116,119,120],"int":[1,3,9,14,15,33,36,37,42,47,49,54,55,57,63,66,67,68,70,71,74,78,80,82,83,111],"long":[3,4,31,37,54,55,83,108],"m\u00e6lkeb\u00f8tt":8,"new":[1,2,3,4,9,11,18,24,36,42,45,46,47,48,83,86,88,90,107,114,116,119,120],"null":[64,116],"public":[82,97,108],"return":[0,1,3,6,9,11,14,15,19,20,22,24,28,29,31,33,36,37,38,39,45,47,54,55,57,63,64,65,66,67,68,70,71,74,77,78,79,80,81,82,83,85,86,87,88,111,119,120],"short":[42,119],"static":[49,50,60,74,75,82],"super":[3,4,9,68,120],"switch":[12,31,36,76,78,83,116,119],"true":[2,3,7,8,15,20,21,22,23,26,28,29,31,35,36,37,39,42,48,49,54,55,60,67,68,70,71,76,80,81,82,83,89,91,116,119],"try":[0,2,3,11,14,15,19,20,25,28,31,35,55,108,119],"var":48,"while":[1,11,20,23,32,35,64,83,112,119],AND:83,ATS:[18,63],Adding:108,And:[3,9,30,31,36,116,120],Are:[88,119],Axes:1,BUS:[14,25],BUT:108,But:[0,2,3,4,31,36,61,111],Doing:31,For:[1,2,3,4,6,9,11,19,25,30,31,32,33,36,37,45,48,54,55,60,64,65,67,71,74,80,82,83,89,108,113,115,116,119,120],Has:[3,68],IPS:[78,112],Its:[116,119],NOT:[3,36,45,63,74,108],Not:[2,3,22,37,54,64,91,108,112,116],ONE:[17,82,108],One:[1,2,36,74,114,119,120],POS:[15,25,71],PRs:108,SRS:103,THE:[36,112],THERE:112,TPS:[32,103,104],That:[3,57,58,83,112,120],The:[0,1,2,3,6,12,13,14,15,16,18,19,21,22,24,25,26,28,29,30,31,32,33,35,36,37,39,40,42,45,47,48,49,52,54,55,57,59,60,62,63,64,65,67,68,70,71,74,78,80,81,82,83,85,89,90,108,110,112,115,116,119,120],Then:[4,16,26,31,33,36,108,115,120],There:[1,3,4,11,21,24,32,33,68,108,111,116],These:[3,28,29,36,48,65,81,112,119],Tis:68,Use:[37,43,54,55,65,83,108,114,116],Used:79,Useful:[53,55],Uses:45,Using:[112,118],Will:[42,54,116],With:[19,31,119],_10:31,_11:[31,36],_13:[16,26],_14:[22,24],_15:[15,17,30],_16:[13,32],__call__:[15,45],__class__:[0,7,8,11,18],__del__:65,__doc__:[36,37,47,54,55],__enter__:[20,23],__exit__:[20,23],__file__:4,__getattr__:[39,70],__init__:[3,4,9,20,23,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,67,87,89,90,91,120],__iter__:[57,58],__name__:36,__next__:58,__repr__:67,_alazar:65,_assigned_fg:15,_ats_dll:3,_attenu:63,_bdaqctrl:64,_call:15,_check_for_error:20,_check_respons:20,_coil_const:19,_count:9,_current_r:19,_current_ramp_limit:19,_display_settext:3,_error_queu:20,_expect_error:20,_get:120,_get_cmd:78,_get_temp_channel:34,_handl:3,_indic:9,_instrument:[3,15,20],_instrument_list:120,_irang:3,_measured_param:3,_mode:83,_parent:3,_poll:20,_ramp_stat:67,_ramp_tim:67,_raw:3,_read_cmd:78,_recv:78,_response_queu:20,_return_handl:15,_run_loop:15,_run_wrapp:15,_save_v:[3,37,54],_scale_param:9,_send:78,_set:120,_set_async:120,_set_both:120,_setget:[13,14],_step:82,_syncoutput:15,_t0:67,_trace:31,_val:9,_vrang:3,_win32:64,_write_cmd:78,_write_respons:70,a118e754f9e:20,abil:[80,101],abl:[19,68,119,120],abort:[14,81],abort_measur:14,about:[3,4,18,20,29,30,31,35,36,83,108,111,113,114,116,120],abov:[1,3,4,31,33,64,83,119],abridg:3,abs:[19,38],absolut:[36,44,83,108],accept:[3,43,44,46,47,48,59,78,119],acces:[11,33],access:[1,36,39,64,82],accommod:83,accompani:108,accord:[83,115],accordingli:15,account:[55,63,67,108],accur:46,achiev:33,acknowledg:49,acquir:[4,13,15,16,17,18,24,26,30,31,36,65,74,82,112,119],acquire_point:26,acquire_sample_r:26,acquisiion:65,acquisit:[14,18,31,36,65,74,81,82,108,112,119],acquisition_conrol:65,acquisition_control:[18,65],acquisition_controller_acquisit:18,acquisition_mod:82,acquisitioncontrol:65,acquisiton:[18,65],acquist:65,across:[28,29,35,119],act:[42,55,63],action:[1,6,7,9,15,20,34,38,42,52,74,83,87,91,97,111,112,114,119,120],action_indic:[7,15,42],activ:[1,7,30,78,80,111,115],active_children:10,active_loop:7,activeloop:[7,52,111],actual:[1,3,12,19,35,63,65,71,80,108,119],acut:0,adapt:[57,58],adaptivesweep:[58,111],adawpt:58,adc:71,add:[1,2,3,4,5,7,10,11,14,15,16,17,22,24,31,32,36,43,45,49,50,60,68,70,71,74,75,80,81,82,83,88,89,90,91,101,102,105,108,111,116],add_arrai:[42,43,88],add_channel:[31,80],add_compon:[5,24,91],add_funct:[50,51,108],add_paramet:[3,4,11,50,51,108,119,120],add_post_trigger_act:74,add_signal_to_sweep:[36,74],add_submodul:[3,50],add_subplot:33,added:[1,19,31,37,42,43,74,83,88,89,90,91,108,119],adding:[1,10,36,112],addit:[1,3,33,49,50,55,60,77,78,82,114,116,119],addition:[1,36,74],address:[3,4,8,19,26,27,29,34,39,49,60,66,67,68,69,70,71,75,76,78,79,80,82,83,84,85,108,119],adjust:[19,22,26,31,71,119],adjust_parameter_valid:71,adopt:114,adriaan:81,advanc:55,advantag:1,advantech:[63,103],advantech_pcie_1751:64,aeroflex:[3,4,84],affect:[36,44,74,108],after:[1,7,11,15,48,52,55,59,65,74,78,83,101,108,116,119],again:[7,18,35,115,119],against:111,aggeg:0,aggreag:0,aggreg:[40,62,112,120],agi:[8,12,20,23],agil:[8,23,25,63,68,103,108,112],agilent1:[8,20,23],agilent2:[8,20,23],agilent_2:8,agilent_34400a:[8,12,20,23,63],agilent_34401a:75,agilent_34410a:75,agilent_34411a:75,agilent_e8527d:[75,108],agilent_hp33210a:75,agilent_volt:12,agreement:24,agument:38,ahead:[36,57,58],aid:119,aim:1,airbnb:108,aka:108,akin:119,ala:114,alazar1:18,alazar:[3,18,65,103],alazar_driv:65,alazar_nam:[18,65],alazar_serv:18,alazargetboardbysystemid:3,alazarparamet:[3,18,65],alazarstartcaptur:65,alazartech:[3,18,63],alazartech_at:[3,18,65],alazartech_ats9870:[3,18,65],alazartest:18,alexcjohnson:108,alia:[53,67,75,84],all:[1,2,3,4,9,10,11,13,18,21,24,26,28,29,30,31,33,36,37,39,40,42,45,46,47,48,50,51,54,55,57,60,62,63,64,65,67,68,70,71,74,75,78,79,80,81,82,83,89,90,91,106,108,111,112,114,115,116,119,120],all_channels_off:83,all_channels_on:83,alloc:[18,65],alloc_buff:[18,65],allocated_buff:[18,65],allow:[1,3,4,19,22,26,28,29,39,49,55,57,58,60,71,74,78,80,82,83,88,108,119],almost:[82,119],alon:[19,42],along:[1,19,37,54,55,81,89,90,108,111,119],alongsid:9,alpha:[33,71],alreadi:[37,42,46,54],also:[1,2,3,4,7,11,18,19,31,32,33,36,38,42,44,46,48,55,57,61,65,67,77,78,82,83,88,105,108,111,114,115,116,119],altern:33,although:[3,33,66,74,108,115],alwai:[1,2,3,4,6,11,16,32,36,48,54,67,70,74,82,83,108,119],always_nest:48,amen:108,american:[19,76],american_magnet:[19,63],ami430:[63,103,106,112],ami430_2d:76,ami430_3d:[19,76],ammet:119,amodel:[7,10],among:[45,120],amp:[3,19,24,77,82],amper:[76,85],amplifi:[3,11,77,82],amplitud:[7,9,10,16,28,29,30,36,65,80,83,120],anaconda3:[15,20],anaconda:[114,115],analog:70,analog_amplitude_n:83,analog_direct_output_n:83,analog_filter_n:83,analog_high_n:83,analog_low_n:83,analog_method_n:83,analog_offset_n:83,analys:80,analysi:[108,119],analyz:[22,66,114],angl:19,angle_deg:75,angle_rad:75,ani:[0,2,3,4,9,10,11,18,19,20,23,27,28,29,31,33,37,40,42,44,45,46,47,48,49,52,54,55,57,58,59,60,62,65,67,74,82,83,87,91,108,111,114,119,120],anoth:[9,11,12,33,45,57,85,114,119],answer:[67,71],anymor:4,anyth:[3,11,14,21,30,83,111],anywai:9,ap_tim:14,apertur:[12,14],api:[1,4,97,99,114,116,119],app:26,apparatu:111,appear:[68,83],append:[19,20,33,42,57,120],appli:[19,21,28,29,43,47,55,83],applic:3,appropri:[1,65,119],approv:108,aqcuisit:30,aquir:22,arang:[3,4],arbitrari:[47,48,54,75,79,83,111,114],architectur:[114,120],arctan:33,arg:[1,2,3,15,20,37,47,54,55,57,59,68,70,78,89,90,120],arg_count:15,arg_pars:47,argument:[0,1,3,6,10,11,15,38,42,43,46,47,54,59,74,76,111],arithmet:30,arm:74,around:[31,33,42,81,108,119],arrai:[0,1,5,7,9,11,12,13,14,15,16,17,18,22,23,24,26,30,31,32,33,36,37,42,43,46,54,65,74,79,80,82,83,87,88,90,101,111,112,119,120],array_count:9,array_id:[0,1,5,7,9,11,12,13,14,15,16,17,18,22,24,26,30,31,32,36,42,46,120],arraycount:9,arraygett:6,arraymeasur:68,arrayparamet:[3,13,66,68,80,82,83,97,112],arriv:119,arrow:115,ask:[3,14,20,34,36,67,71,78,82,83,108,119],ask_modul:82,asopc:65,asopc_typ:[18,65],asrl10:27,asrl1:32,asrl2:60,asrl4:[12,78],asrl6:[15,28,29],asrl7:14,asrl:71,asrln:67,assert:[4,19,35,82,83],assertalmostequ:68,assign:[15,28,29,70,83,108],associ:119,assum:[3,22,31,33,58,70,115,119],assumpt:[36,83],async:118,asynchron:11,atob:78,ats9870:[3,18,63],ats_acquisition_control:[18,63],ats_contr:18,ats_inst:18,ats_onwork:112,atsapi:[3,65],atsdriv:18,attach:[1,3,39,43,50,51,52,63,68,70,80,82,83],attempt:67,attent:[108,112],attenu:[3,4,28,29,84],attn:[3,4],attribut:[1,3,36,42,43,46,74,91,108,119],author:108,auto:[35,36,45,80],auto_rang:35,autom:[4,114],automat:[1,3,9,31,36,45,64,70,80,85,102,106,108,114,116],autorang:15,autoreload:2,autoscal:31,aux_in1:16,aux_in2:16,aux_in3:16,aux_in4:16,aux_out1:16,aux_out2:16,aux_out3:16,aux_out4:16,auxiliari:108,auxoutputchannel:74,avail:[1,3,4,22,25,30,33,36,63,64,68,70,71,75,80,83,97,99,114,119],avanc:118,averag:[22,31,36,65,81,83,112],averageandraw:[6,7,10],averagegett:[7,10],avg:[31,81],avoid:[14,19,26,30],awar:108,awg1:33,awg5014:[63,102,104,112],awg5200:[63,106],awg520:63,awg:[4,11,68,83,112],awg_fil:83,awg_file_format_channel:83,awg_file_format_head:83,awgfil:33,awgfilepars:[33,63],awgfilepath:83,ax1:33,ax2:33,ax3:33,ax4:33,axes:[1,27,31,78],axes_api:1,axi:[1,19,31,36,37,42,48,54,55,74,119],axs:36,babi:120,back:[4,11,19,31,33,35,58,67,78,83,108,114,115,116,119,120],backend:[1,60],background:[7,20,23,119],background_color:89,background_funct:43,backslash:108,backward:[44,71],bad:2,bad_valu:4,bandwidth:[18,31,36,74,80],bar:[108,116],bare:[49,57],base0:120,base1:120,base2:120,base:[1,9,13,15,19,39,42,43,44,45,46,50,51,58,60,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,108,112,116,119,120],base_loc:[2,7,44],baseplot:89,baseserv:120,basi:54,basic:[3,4,32,48,65,71,114],basicconfig:[15,22],baud:[67,82],bdaqctrl:64,bear:108,becam:7,becaus:[1,2,3,32,35,42,43,46,64,65,68,108,115,119,120],becom:[18,33,78,111,119],been:[3,9,19,26,32,33,55,68,74,81,82,83,119,120],befor:[2,3,4,11,12,15,16,19,22,26,30,31,32,36,45,49,52,55,59,63,64,65,66,74,78,82,83,108,116,119],beforehand:63,begin:7,begin_tim:67,behav:108,behavior:[7,10,18,20,23,27,108,119],behaviour:[24,55,74],behind:36,being:[2,11,18,33,35,42,81,83],belong:[3,37,54,55,80],below:[1,2,3,4,11,13,33,108,111,112],ben:19,benchmark:[12,106],best:108,beta:[32,65,68,75,78,80,81,82,83],better:[3,14,30,47,106,108,119],between:[1,3,25,35,43,46,49,55,57,74,83,85,88,89,90],beyond:83,bid:64,bidirect:55,binari:[13,64,83],binascii:32,bind:36,biodaq:64,bip:71,bit:[14,30,64,65,80,82,83],bits_per_sampl:[18,65],black:89,blame:[28,29,83],blank:[48,108],blind:11,block:[11,20,48,71,120],board:[3,18,28,29,65],board_id:[3,18,65],board_kind:[18,65],bodi:108,boil:3,boilerpl:[3,47],bold:111,bonu:112,bool:[3,37,39,42,49,54,55,67,68,70,71,76,77,80,82,83,85,88,91],bool_to_str:83,bore:26,born:108,bot:[104,105],both:[1,3,9,12,31,36,44,68,80,82,83,108,111,114,116,119,120],bottom:[71,89],bound:[3,11,119],bracket:108,branch:108,breakif:[11,97,119],brittl:119,broader:114,broadli:3,broken:[2,55],brows:[115,120],buf:65,buffer:[17,18,64,65,82,104,112],buffer_acq_mod:16,buffer_list:3,buffer_npt:16,buffer_paus:16,buffer_reset:16,buffer_sr:16,buffer_start:16,buffer_timeout:[18,65],buffer_trig_mod:16,buffers_per_acquisit:[18,65],bug:[26,109],build:[33,36,74,83,102,103,108,115,119],build_sweep:[36,74],built:[1,9,36,82],builtin:47,bunch:36,burden:119,burst:112,busi:64,button:[83,108],bwlimit1:18,bwlimit2:18,bwlimit:[18,65],bwmode:36,byref:15,byte_to_bit:82,byte_to_value_dict:[3,65],bytecod:4,c_amp_in:[3,77],c_set:9,cabl:[83,119],calc_set_point:83,calcul:[19,74,80,111,119],calibr:[63,65],california:4,call:[2,3,9,10,15,19,20,22,24,31,32,33,37,40,42,43,45,46,47,49,54,55,59,60,62,64,65,67,70,71,74,81,82,83,85,88,108,119],call_by_str:15,call_by_str_parsed_out:15,call_cmd:47,callabl:[11,20,38,40,43,45,52,55,59,61,62,74,88,104,119],callsig:33,came:65,camp1:23,camp:[8,23],can:[0,1,2,3,4,9,10,14,16,19,24,25,26,28,29,30,31,33,35,36,37,38,41,42,43,45,47,48,52,54,55,57,58,61,64,65,66,67,68,71,74,78,79,80,83,87,88,89,90,91,108,111,112,113,114,115,116,119,120],cancel:[28,83],cannot:[5,19,31,37,54,64,82,83,119],canva:1,capabl:[21,111,114,119],capit:108,captur:[11,31,65,82,112],capture_config:[17,82],capture_data:82,capture_sampl:[17,82],card:[3,18,64,65,68,103],care:[2,3],careful:71,cartesian:[19,119],cartesian_measur:19,cast:[14,33,47],caus:[28,29,82],caution:[83,112],caveat:119,cdll:3,cell:[30,33],center:[31,81],certain:[11,19,36,65,78],cesr:82,cffi:64,ch01:29,ch01_i:28,ch01_irang:28,ch01_slope:[15,28],ch01_sync:15,ch01_sync_delai:15,ch01_sync_dur:15,ch01_v:[14,15,28],ch01_vrang:28,ch02:[28,29],ch02_slope:28,ch02_sync:28,ch02_v:[15,28],ch0_offset:21,ch0_voltag:21,ch1:[11,30,83],ch1_amplitud:25,ch1_amplitude_unit:25,ch1_burst_mod:25,ch1_burst_ncycl:25,ch1_burst_phas:25,ch1_burst_polar:25,ch1_burst_stat:25,ch1_curvedata:32,ch1_databuff:16,ch1_displai:16,ch1_frequenc:25,ch1_function_typ:25,ch1_offset:25,ch1_output:25,ch1_posit:32,ch1_ramp_symmetri:25,ch1_ratio:16,ch1_scale:32,ch1_state:32,ch1_trigger_count:25,ch1_trigger_delai:25,ch1_trigger_slop:25,ch1_trigger_sourc:25,ch1_trigger_tim:25,ch1_voltag:21,ch2:[11,32,83],ch2_curvedata:32,ch2_databuff:16,ch2_displai:16,ch2_offset:33,ch2_posit:32,ch2_ratio:16,ch2_scale:32,ch2_state:32,ch3_state:33,ch41_v:12,ch42_v:12,ch4:26,ch_name:3,cha0:63,chain:119,chan0:[7,10,63],chan0_set:7,chan1:[7,10,36,38],chan1_set:7,chan2:[7,10,36],chan:70,chan_alia:34,chan_go:15,chan_list:39,chan_reset_1:15,chan_reset_2:15,chan_reset_3:15,chan_typ:39,chanc:65,chandata:36,chang:[1,3,4,11,18,21,28,29,32,36,37,41,44,54,55,71,74,82,83,107,108,112,114,115,116,119],change_autozero:83,change_displai:83,change_fold:83,channel4:26,channel:[7,8,11,12,16,18,20,21,23,24,26,30,32,33,39,50,51,60,64,65,67,68,69,70,71,74,78,80,82,83,85,104,105,111,112,113,119],channel_a:65,channel_cfg:83,channel_rang:[18,65],channel_range1:18,channel_range2:18,channel_select:[18,65],channel_skew_n:83,channel_state_n:83,channelbuff:82,channelis:[24,70,83],channelist:39,channellist:[70,97],channum:[68,70,74,80],charact:[37,48,49,54,55,60,78,80,108],characterist:119,chassi:68,chatoor:108,check:[3,4,19,35,61,64,78,80,82,85,89,90,108,113,117,119,120],check_error:15,check_for_error:81,check_module_error:82,check_schema:2,checklist:108,chime:108,chnum:33,choic:[31,65],choos:[33,71,74,80,83,119],chore:108,chosen:[35,74],chx:11,circuit:22,clariti:3,classic:14,classmethod:[63,65,68,75,81],clean:[30,79,83,101,108],clean_str:79,cleanup:[46,106],clear:[15,16,31,32,33,60,68,82,83],clear_buff:65,clear_channel:[31,80],clear_error:75,clear_message_queu:[32,33,83],clear_waveform:83,clearli:108,clever:109,cli:114,click:[1,115],clim:1,clip:119,clock:[3,18,65,83],clock_edg:[18,65],clock_edge_ris:18,clock_frequ:68,clock_sourc:[3,18,65,83],clone:108,close:[1,4,5,12,19,21,24,28,29,31,32,33,34,36,64,74,78,106,108],close_ev:1,close_fil:46,closedevic:81,cls:2,cmd:[15,66,67,70,82,83],cmd_str:15,coars:67,code:[1,3,4,47,55,66,67,75,82,91,109,114,119],codebas:[4,114],coil:[19,76],coil_const:[19,76],col:80,cold:78,collect:[9,57,65,111,114,119],colloqui:[3,83],colon:[78,108],color:[1,33,36,89],colorbar:[1,42],colormap:116,column:[1,48,119],com2:60,com4:17,com:[75,82,84,108,110,112,115],combin:[40,43,48,55,81,86,88,97,105,111,112,118,119],combined_set:0,combinedparamet:[0,97],come:[48,108,119],comma:[78,83],command:[1,3,4,13,14,15,18,32,33,36,47,55,64,67,68,70,71,75,78,80,82,83,97,108,111,114,119],comment:[3,48,64,108],commit:[65,113,114],common:[3,78,80,83,111,119],commonli:[68,75,80,83],commun:[3,19,49,60,65,67,71,78,82,111,113,119],communc:19,compani:3,compar:[12,30,31,108],compat:[52,59,71,82,83,114,119],compatibil:83,compens:83,complain:[11,119],complet:[1,15,33,42,43,64,83,119,120],complex:[31,55,80,108,119],compliant:108,complic:[47,119],compon:[8,54,65,91,114,119],composit:[15,119],comprehens:[108,112],comput:[1,24,74,78,108,115,119],con:103,concaten:[70,108],concept:120,conclus:14,concret:4,concurr:119,conda:115,condit:[3,11,38,55,64,78,83,119],config:[3,18,65,83,97,105,108,112,118],config_file_nam:41,configur:[4,18,36,41,64,65,81,83,100,112,114,118,119],conflict:[64,119],confusingli:120,congratul:112,connect:[3,4,12,13,14,15,16,17,18,19,20,22,24,25,26,28,29,30,31,32,33,35,36,60,65,67,68,71,74,78,82,83,91,111,119],connect_messag:[3,4,67,68,70],consequ:119,consid:[3,11,24,30,83,108],consist:[11,28,29,31,71,81,83,87,108,119],consol:4,consolid:114,constant:[6,11,19,36,71,74,76,81],constitut:4,construct:[3,6,31,38,42,49,55,120],constructor:[3,37,42,54,71,89,90],consult:[82,119],cont:82,cont_meas_off:31,cont_meas_on:31,conta:74,contact:106,contain:[3,4,6,7,11,24,31,33,39,42,43,45,48,64,65,67,68,70,74,75,78,80,82,83,91,108,111,116,119,120],content:[42,112],context:119,contian:65,contin:[66,83],contini:31,continu:[4,33,36,52,83,91,108,112],contrast:108,contribut:[3,26,109,113],contributor:108,control:[2,3,10,18,20,21,23,24,27,28,29,31,33,36,65,67,69,71,76,78,80,83,103,114,116,119,120],controlthermometri:78,conveni:[82,83,91,115,119],convent:[3,4],convers:[83,108],convert:[3,4,19,42,44,65,70,78,82,83,119],coordin:19,copi:[2,4,20,42,57,71,74,119],core:[0,1,7,8,10,15,16,17,18,20,22,23,27,30,31,32,34,36,108,112,113,114,116],corner:[10,18,20,23,27],correct:[1,3,19,21,30,33,36,46,82,105],correctli:[4,19,35],correspond:[1,12,16,21,24,33,48,65,67,71,74,80,82,83],cosmet:[101,102],cost:71,could:[10,15,33,108,119],count:[9,15,47,64,70,83,120],counter:[10,11,45,64],coupl:[3,18,30,36,65,80,83],coupling1:18,coupling2:18,cours:[30,108,119],cov:108,cover:[108,120],coverag:[108,114],coveragerc:108,cpld:65,cpld_version:[18,65],cpu:31,crash:[65,114],creat:[1,5,8,9,10,11,18,20,22,23,24,39,42,46,52,54,55,57,63,65,67,68,71,74,75,78,83,84,87,88,111,112,115,116,119,120],create_and_goto_dir:83,creation:[3,11,120],critic:[2,116],cryo:103,ctwrapper:15,ctype:3,cumbersom:70,curernt:120,curr:[3,8,13,23,24,35,77,82],current:[2,3,7,8,13,19,23,24,28,29,31,32,33,35,36,41,43,44,45,64,68,70,74,76,77,78,82,83,85,86,88,91,108,116,119,120],current_config:[2,41],current_config_path:41,current_field:19,current_r:[19,76],current_ramp_limit:[19,76],current_rang:35,current_schema:[2,41],current_target:19,current_to_field:19,current_valu:15,currentparamet:[3,8,23,77],curv:[13,68,83,112],custom:[9,41,44,66,112],customawgfil:83,customis:70,cutoff_hi:82,cutoff_lo:82,cwd:41,cwd_file_nam:[2,41],cycl:[3,8,18,20,23,24,25,68,119],cylindirc:19,cylindr:19,cylindrical_measur:19,d5a:63,d5a_modul:71,d5mux:71,d_bdaq_c_interfac:64,dac1:6,dac2:6,dac3:6,dac:[6,11,63,67,71,105],dac_ch1:11,dac_ch1_set:11,dac_ch2:11,dac_channel_class:67,dac_commands_v_13:70,dac_delai:71,dac_idn:11,dac_slot_class:67,dac_step:71,dac_verbose_channel:11,dacchannel:67,dacexcept:67,dacn:71,dacnam:71,dacread:67,dacslot:67,dacx:71,dai:108,dancer:108,daqnavi:64,daqnaviexcept:64,daqnaviwarn:64,dark:89,dat:48,data1:31,data2:[5,10,32],data:[0,1,2,3,6,7,9,12,13,14,15,16,17,18,20,22,23,24,30,31,32,36,42,43,44,45,46,48,52,54,55,64,65,68,70,71,74,80,82,83,86,88,89,90,97,105,108,111,112,114,119,120],data_arrai:7,data_buff:15,data_hd:30,data_l:5,data_ld:30,data_set:[2,5,7,11,15,46,83,100],data_v:55,dataarrai:[0,1,7,9,23,37,43,46,54,88,97,111,119],dataflow:65,dataformat:112,dataformatt:108,datamanag:[111,119],datamin:119,datamod:[0,7,9,10,12,18,23,36,120],datapoint:[26,83],datasav:112,dataserv:[10,43,111,119],dataset:[0,1,2,5,6,7,9,10,11,12,13,14,15,16,17,18,22,23,24,26,30,31,32,36,42,45,46,48,54,68,83,86,87,88,97,111,118,120],date:[10,11,45,65],datetim:45,daunt:108,dbm:[4,22,31,80],dc_channel_numb:83,dc_output_level_n:83,dclimit:30,ddl:64,deacadac:67,deadlin:20,dealt:119,debug:[2,5,22,26,30,32,36,116,119,120],debugmod:15,deca:21,decadac:[63,104,106,112],decadec:67,decid:[2,89,119,120],decim:[18,65],declar:64,decor:4,decoupl:108,decreas:12,deem:74,deeper:20,def:[0,1,2,3,4,9,11,14,15,17,19,20,23,78,120],default_current_ramp_limit:76,default_figs:1,default_file_nam:41,default_fmt:116,default_formatt:[43,86,88],default_io:[43,86,88],default_parameter_nam:106,default_server_nam:81,defaultcolormap:116,defaulttestload:5,defer:38,deferred_oper:97,defin:[0,2,3,10,31,33,36,37,47,54,68,71,77,78,82,83,108,111,112,116,119,120],definit:[4,10,36,47,80,119],deg:[16,36],deg_to_rad:75,degre:[25,36,55],del:3,delai:[0,1,7,11,15,17,18,19,29,35,36,52,55,56,58,61,71,80,85,119,120],delay_in_points_n:83,delay_in_time_n:83,deleg:42,delegate_attr_dict:91,delet:[3,83,108],delete_all_waveforms_from_list:[33,83],deliber:35,demand:119,demo:112,demod1:[36,74],demod1_harmon:36,demod1_i:36,demod1_ord:36,demod1_phaseshift:36,demod1_phi:36,demod1_r:36,demod1_sampl:36,demod1_sampler:36,demod1_signalin:36,demod1_sinc:36,demod1_stream:36,demod1_timeconst:36,demod1_trigg:36,demod1_x:36,demod:36,demodul:[74,112],demodulation_acquisitioncontrol:[18,65],demodulation_frequ:[18,65],demonstr:9,denot:[37,48,54,88],depend:[1,3,18,28,29,36,48,80,99,106,108,112,115,119],deploi:[13,83],deprec:[17,42,83,102],deprecationwarn:83,depth:26,deriv:111,descipt:41,describ:[2,3,9,11,37,52,54,74,108,116,119],descript:[2,42,83,108,116,119],descriptor:71,design:[75,83,84,119],desir:[11,19,82],desktop:15,destruct:119,detail:[1,82,108,119],detect:[80,105],determin:[46,90],dev2235:36,dev:[2,13,14],develop:[4,68,74,109,113,114],devic:[4,60,64,68,71,74,78,80,83,103,119],device_clear:60,device_descript:64,device_id:74,dft:[18,65],dg4000:63,dg4062:79,dg4102:79,dg4162:79,dg4202:79,diagon:111,dialogu:4,dict:[37,41,42,45,46,49,50,51,54,55,60,67,78,82,83,85,88,104,119],dictionari:[3,33,65,82,83,91,116,119],did:[3,10,12,115],didact:11,diff:83,differ:[1,3,9,24,31,37,43,54,74,80,83,108,111,114,119,120],differenti:42,difficult:108,difficulti:108,dig:[36,68,105],digit:[3,11,64,68,70,83,103],digital_amplitude_n:83,digital_high_n:83,digital_low_n:83,digital_method_n:83,digital_offset_n:83,dilut:78,dim:22,dimens:[9,37,42,48,54,119],dimension:[1,42,43,78],dio:64,dir:[2,83],direct:[37,53,54,68,81,108],directli:[1,3,6,9,19,28,29,33,36,43,52,78,83,112,119],directori:[2,3,43,44,83,86,88,108,115,116],disabl:[18,39,43],disadvantag:119,disambigu:10,disappear:119,disc:83,disconnect:119,discov:63,discret:119,discuss:[108,113],disk:[43,44,46,83,88,119],diskio:[7,43,45,86,88,97,111],displai:[0,1,2,3,7,8,10,12,14,15,16,17,18,20,22,23,26,27,30,31,32,34,36,80,83],display_clear:[12,14,15,75,83],display_format:22,display_grid:[31,80],display_norm:83,display_refer:22,display_scal:22,display_settext:[3,24],display_sij_split:31,display_single_window:31,display_text:[8,12,14],display_text_2:8,dissip:119,distribut:114,div:32,dived:63,divid:[55,63,103,104],divider_r:83,divis:[32,63],division_valu:63,divsion:63,dll:[64,65,81,112,119],dll_path:[3,65,81],dma:64,dmm:[11,12,14,15,75,105,106],dmm_data_buff:15,dmm_volt:14,dmm_voltag:11,do_acquisit:65,do_get_frequ:80,do_get_pow:80,do_get_pulse_delai:80,do_get_statu:80,do_get_status_of_alc:80,do_get_status_of_modul:80,do_set_frequ:80,do_set_pow:80,do_set_pulse_delai:80,do_set_statu:80,do_set_status_of_alc:80,do_set_status_of_modul:80,doc:[2,7,71,108,112,115],docstr:[3,9,37,47,54,55,83,108],document:[1,19,37,47,54,55,65,83,100,101,103,108,114,119],doe:[1,4,11,19,27,31,35,36,42,45,48,52,53,60,63,64,68,71,75,78,80,82,83,84,108,119],doesn:[3,4,9,10,33,42,64,68,83,108],dofastsweep:[13,24,83],doing:[18,31,108,119],domain:[36,78],domin:114,dominik:108,don:[1,3,32,46,57,58,67,68,70,83,108,119,120],done:[1,7,11,33,36,78,101,119,120],dot:[2,108,116],doubl:[45,83],doubt:[36,108],dovog:108,down:[3,19,24,33,108],download:[36,82,112,115],dramat:119,drive:7,driver:[4,6,9,11,16,19,22,24,26,28,29,31,32,33,36,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,101,102,103,104,105,106,108,114,118,119],driver_vers:[18,65],drivertestcas:[63,68,75,84],drop:35,due:[3,7,28,29,30,36,67,119,120],dummi:[6,11,18,87,112,120],dummy_set:18,dummyinstru:[6,11],dump:[8,65],duplic:[3,83],dur:36,durat:[29,36],dure:[1,15,55,57,61,65,68,83,99,119,120],dut:[22,31],dynam:[28,29,64,112],e1cb66:33,e8267:75,e8267c:[63,103],e8527d:[63,68,108],each:[0,1,3,4,5,7,9,11,12,13,14,15,16,18,20,21,22,23,24,25,28,29,31,32,33,36,37,42,43,46,47,48,49,52,54,55,57,64,65,67,70,71,74,75,82,83,84,89,90,91,108,111,114,119,120],eachot:120,earli:32,easi:[4,6,18,108,111,114,115],easier:[74,106,108,119],easiest:2,easili:[1,10,11,83,114],echo:67,edg:[18,30,32],edit:81,editor:108,ee82e:33,effect:[30,65,83,116],effort:3,eight:[28,29],either:[1,3,24,28,29,36,46,64,68,76,79,83,90,119],elaps:[15,20,23],electron:[3,114],elem1m1ch1:83,elem1m1ch2:83,elem1m2ch1:83,elem1m2ch2:83,elem2m1ch1:83,elem2m1ch2:83,elem2m2ch1:83,elem2m2ch2:83,element:[1,33,83,90,116,119],element_no:83,elemnum:33,elif:20,elnum:33,elpi:108,els:[2,15,21,31,64,83,108],elsewher:91,emac:108,email:[108,113],embed:1,emoji:108,empti:[2,9,11,20,33,67],enabl:[18,22,26,36,55,85],enable_record_head:[18,65],encapsul:119,enco:15,encod:[15,47,55,64],encount:64,encourag:[3,36,108],end:[3,45,57,60,64,65,80,83,108,114,119],endpoint:[12,83],engin:18,enough:[4,11,64,78,108,111],ensur:[22,30,32,81,82,108,119],ensure_ascii:8,enter:[37,54,119],entir:[16,18,25,35,80,82,91,119],entri:[2,46,52,54,83,97],entrypoint:99,enumer:36,env:[2,15,41,115,116],env_file_nam:[2,41],envelop:30,environ:[2,114,115,116],eom:4,equal:[82,116],equitim:82,equival:[9,83,114],err:81,error:[0,2,3,4,5,15,19,20,28,35,42,52,55,64,65,68,71,82,83,105,112,116,120],error_cod:71,errorcod:64,errormsg:64,esr:82,essenti:[11,75,82],establish:19,etc:[1,3,9,21,24,31,37,42,47,54,108,119],ethernet:[3,4,49,83],etr_5v:18,eumer:58,evalu:59,even:[4,9,14,19,28,29,44,46,55,57,58,60,70,83,108,119],event:[33,36,64,67,82,83,112],event_input_imped:83,event_input_polar:83,event_input_threshold:83,everi:[1,3,40,43,52,62,65,74,113,119,120],everybodi:[108,113],everyon:108,everyth:[33,36,45,97,108],exactli:[6,15,30,108],examin:[22,78],exampl:[0,1,2,7,9,37,38,42,45,54,55,58,60,65,68,82,83,103,108,111,114,115,117,120],exce:108,exceed:[33,64],excel:4,except:[2,3,15,19,35,64,66,67,68,82,83,85,92],exec_funct:15,exec_str:15,execut:[11,15,30,36,47,59,63,64,68,71,74,75,80,83,84,111,114,119],executor:120,exemplifi:36,exept:36,exercis:108,exis:31,exist:[3,11,31,33,45,46,58,64,83,86,88,108,114,119],exit:83,exit_kei:83,exp:35,expand:109,expect:[2,3,15,20,26,36,37,46,52,54,64,70,82,83,108,120],experi:[10,11,41,112,114,115,119],experiment:[114,119],expir:15,explain:[108,116],explan:82,explanatori:22,explicit:[33,55,57],explicitli:[37,42,54,108,119],explor:[11,83],exponenti:66,expos:[70,80,116],express:[55,119],ext:[15,25],ext_trigg:16,extend:[33,48,57,80],extens:[48,83],extern:[18,25,80,81,83],external_add_n:83,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:83,external_startcaptur:[18,65],external_trigger_coupl:[18,65],external_trigger_rang:[18,65],extra:[9,14,37,54,55,85,108,119],extra_schema_path:2,extract:78,extrem:119,f008:78,f1d:63,fact:108,factor:[3,8,28,29,36],factori:[66,83],fail:[2,106,108,119],failur:3,falcon:108,fall:83,fals:[2,7,8,9,15,20,21,23,26,28,29,31,35,36,37,42,43,54,55,56,66,67,68,70,71,75,76,79,80,82,83,88,116,119],faq:118,fast:[70,78,83,112,119],faster:[31,33,106,108],fastest:[33,36],fastsweep:24,feasibl:[4,114],feat:108,featur:[1,3,4,21,26,81,103,104,105,106,109,114],feed:[3,77,82],feedback:[58,119],feel:[26,108],fetch:[8,14,78],few:[25,31,47,68,74,108,113],fewer:[28,29],ff4500:33,ff8c00:33,fft:74,field:[19,37,47,48,54,55,76,78,114,120],field_limit:[19,76],field_measur:19,field_target:19,field_target_cartesian:19,field_target_cylindr:19,field_target_spher:19,field_valu:78,field_vector:19,fieldvector:19,fifo:18,fifo_only_stream:[18,65],fig:[1,19,31,33,36],fig_x_po:89,fig_x_posit:89,fig_y_po:89,fig_y_posit:89,figsiz:[1,11,89,90],figur:[1,15,33,36,89,90,108,119],figure_api:1,file:[2,5,10,11,41,43,45,46,48,64,71,78,83,86,88,108,112,115,118,119],file_path:83,filen:41,filenam:[33,83],filepath:33,filestructur:83,fill:[9,11,16,52,83,119],filter:[22,36,74],filter_slop:16,filw:83,find:[20,26,45,65,108,113,115,116],find_board:[18,65],find_modul:82,findal:78,finder:11,fine:[71,119],finish:[1,7,11,13,14,22,31,36,65,85,101,119],finit:[28,29,70,71],fire:[28,29],firmwar:[3,4,7,8,11,12,13,14,15,16,17,18,19,22,24,25,26,30,31,32,35,65,67,78,80,82,104],first:[1,2,4,7,9,11,14,15,19,25,26,31,33,37,42,48,54,55,59,66,76,83,89,90,108,119,120],first_delai:15,fit:[22,33,65,108],five:81,fix:[19,30,36,42,47,57,78,104,105,106,107,108,119,120],fixabl:108,fixtur:4,flag:[28,29,71,81],flake8:108,flavor:119,flexibl:[36,111,114],float_round:85,flow:[28,29,35],flush:[25,82,83],flush_error_queu:[25,68],fmt:[2,10,11,45],fmt_counter:45,fmt_date:45,fmt_time:45,fname:83,focus:108,folder:[3,4,44,48,83],follow:[1,3,4,6,11,12,19,22,25,33,55,67,83,108,115,116,119,120],foo:[108,116,120],footer:108,forc:[7,10,18,20,23,27,31,33,83],force_ev:83,force_logicjump:83,force_reload:83,force_trigg:[32,83],force_trigger_ev:83,foreground:[106,119],foreground_color:89,foreign:64,fork:108,form:[3,4,13,47,65,78,80],format:[3,11,12,13,14,15,19,24,28,29,31,33,35,36,43,45,47,48,64,80,83,86,88,112,114,119],formatloc:[2,10,11,88,97,111],formatt:[5,7,43,86,88,97,103,111,116,119],former:[13,14],formerli:[3,4,84],forward:[18,44,65],foul:33,found:[3,4,11,31,33,46,59,64,71,83,108,112],four:[3,21,26,64,67,79],fourier:65,fraction:89,framework:[108,114,119],free:26,free_mem:65,freedom:55,freeli:119,freq:[31,81],frequenc:[3,11,16,22,31,36,65,66,68,80,81,82,83,120],frequency_set:31,frequencysweep:80,frequencysweepmagphas:80,frequent:108,fridg:[78,114],friendli:74,from:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,35,36,37,42,43,45,46,47,48,52,54,55,64,65,66,68,70,71,74,75,77,78,80,82,83,85,86,87,90,91,105,108,110,111,112,114,115,119,120],fron:8,front:[36,83],frontend:116,full:[0,2,25,28,35,36,43,48,83,86,88,114],full_nam:[0,11,42],full_trac:31,fulli:[30,31,36,108],fullrang:71,fun:70,func:[3,15,59],func_nam:20,functool:22,fundament:119,further:[79,111,114],furthermor:[1,19,74],futur:[83,108,120],gain:[77,82],garbag:65,gate:[7,10,11,25,38,67,111,119,120],gate_frequ:120,gate_frequency_set:120,gather:10,gather_paramet:10,gave:33,gcc:64,gee:36,gener:[3,4,11,19,25,26,30,32,33,43,45,57,64,66,68,71,74,75,79,80,81,82,83,84,103,108,111,112,114,115,119],generate_awg_fil:83,generate_channel_cfg:83,generate_sequence_cfg:83,get:[0,2,3,4,5,6,7,9,10,11,12,15,18,19,20,21,22,23,24,27,28,29,30,32,34,35,36,37,42,46,53,54,55,63,65,68,70,71,74,77,78,80,82,83,91,108,112,116,119,120],get_al:[71,78,80,83],get_board_info:65,get_buffers_en:71,get_capture_data:[17,82],get_chang:78,get_cmd:[3,4,11,55,56,65,78,120],get_compon:19,get_current_folder_nam:83,get_data_set:[0,1,11,12,13,14,15,22],get_error:83,get_filenam:83,get_filter_valu:71,get_folder_cont:83,get_funct:65,get_idn:[3,18,64,65,67,68,71,77,78,82,83],get_instrument_valu:63,get_jumpmod:83,get_latest:[32,36,37,38,54,55],get_mod:71,get_module_idn:82,get_module_statu:82,get_pars:[3,4,55,56],get_pol_dac:71,get_power_at_freq:81,get_processed_data:[18,65],get_raw:[36,63,66,82,83],get_remote_set:71,get_sample_r:65,get_spectrum:81,get_sq_mod:83,get_sqel_loopcnt:83,get_sqel_trigger_wait:83,get_sqel_waveform:83,get_stat:83,get_voltag:82,getattr:3,getcwd:33,getlogg:[5,26,32,33,36],gettabl:[3,9,37,54,55,77,82,87,111,119],getter:[4,15,111],getx:120,ghz:22,giga:73,giga_b:73,gimm:25,git:[7,20,112,114],github:[108,110,111,112,114,115],giulioungaretti:108,give:[1,4,9,11,19,22,26,52,67,83,108,119],given:[0,1,19,28,29,39,49,64,65,67,79,108,119,120],global:[3,10,21,31,112],glori:4,gnuplot:[48,114],gnuplot_format:[5,7],gnuplotformat:[5,7,43,86,88,97,111,119],goal:108,goe:[4,35],going:[3,6,26,71],golden:3,gone:35,good:[2,3,11,32,36,80,108],googl:[7,108],got:[14,108],goto_root:83,goto_st:[33,83],goto_to_index_no:83,gotten:[25,28,29,33,119],gpib0:[8,16,17,20,22,23,35],gpib:[3,4,83,85],gradual:21,grai:89,graph:[11,22,37,54,55],graphicswindow:89,great:108,greatest:119,green:115,grid:[31,80],ground:80,group:[1,3,50,64,80,108,114,119],grow:113,gs200:[35,63,102],gs200_monitor:85,gs200except:85,gs210:35,guarante:2,gui:[1,2,15,23,36,108,114,116],guid:[1,65,108,113,115],guidelin:108,h5fmt:5,hack:[108,116],had:[10,33,64],half:36,halfrang:71,halt:61,halt_bg:18,han:33,hand:33,handl:[3,4,9,37,42,43,47,54,64,65,70,71,89,106,111,112],handle_buff:65,handle_clos:1,handler:5,hang:108,happen:[3,28,29,33,42,59,119],happi:108,hard:[83,108],harder:[108,119],hardwar:[19,28,29,33,67,71,80,83,108,111,119],harmon:16,harvard:[21,63],has:[1,3,5,7,9,11,16,19,21,24,25,26,28,29,32,33,35,36,37,42,48,54,55,64,65,68,74,76,82,83,108,116,119,120],hasattr:[15,20],hasn:[3,64],have:[1,2,3,4,6,9,10,11,19,22,24,26,28,29,31,32,33,36,37,42,46,48,53,54,55,58,63,64,65,66,67,68,71,74,75,77,80,81,82,83,84,90,108,111,113,114,115,119,120],haz:101,hdf5:[5,103,119],hdf5_format:5,hdf5format:5,head:83,header:[18,25,64,108],heater:78,heater_off:78,heater_on:78,heatmap:[89,90,116],height:[89,90],helium:[78,106],help:[2,3,33,36,37,43,46,47,49,54,55,60,83,108,114,119],helper:[2,5,33,74,97,116],henc:67,here:[1,3,4,7,9,10,16,18,24,28,29,30,31,36,42,70,74,78,82,87,108,115,119],hesit:108,hewlett:[8,22,66],hidden:26,hierarchi:109,high:[3,11,80,83,108,119],high_definition_st:30,higher:[19,116,119],highest:[45,119],highlevel:15,hislip0:14,histori:[83,108],hkey_current_usersoftwareoxford:78,hold:[3,14,16,24,27,36,66,68,78,80,82,83,111,119,120],hold_repetition_r:83,holdoff:36,home:[2,41,108,116],home_file_nam:[2,41],hopefulli:26,horisont:[32,36],horizont:[32,112],horizontal_scal:32,host:[28,29],hotfix:108,hound:81,how:[2,3,6,9,11,19,22,31,33,36,37,46,48,52,54,55,57,58,82,89,108,110,111,112,113,119,120],howev:[4,19,30,31,68,108],hp33210a:63,hp8133a:63,hp8753d:[63,112],hp8753d_tutori:22,hp8753dtrace:66,hp_83650a:63,hpintpars:66,htm:71,html:[1,4,60],http:[1,4,60,71,82,108,110,112,115],huge:[37,54],human:[3,11,65,102],i3d:19,iPS:103,id1:48,id2:48,id3:48,idea:[3,11,80,108,113],ideal:108,ident:[3,9,24,74,83,120],identifi:[37,43,46,48,50,54,55,67,78,82],idl:[34,83],idn:[3,4,5,7,8,11,16,18,22,24,34,67,70,71,78],idn_dict:4,idn_param:67,idr:78,iff:83,igh:78,ignor:[31,37,54,59,65,83],ignore_kwarg:15,igor:114,illustr:[1,22],ilm200:63,ilm:[78,106],imaginari:31,imm:[14,25,82],immedi:[11,12,25,28,29,39,44,65,74,91,108,119],impact:119,imped:[3,4,11,18,36,65,80],impedance1:18,impedance2:18,imper:108,implememnt:91,implement:[10,18,19,26,46,49,57,58,64,65,74,78,80,81,83],implicit:108,implicitli:119,importlib:5,impos:119,improv:[107,108],imprrov:104,inc:[8,13,19,24],inch:90,includ:[3,9,12,37,45,54,55,57,60,64,75,82,83,87,89,90,108,111,112,113,114,119,120],inclus:83,inconsist:119,inconsistensi:83,inconsit:32,incorrect:[4,108],incorrectli:65,increas:[9,19,30,108],increment:[48,55,105,119],ind:36,inde:[19,22,35,108],indend:36,indendet:26,indent:[8,108],independ:[46,119],index0:9,index1:9,index:[1,9,70,71,83,90,119],indic:[0,1,19,42,83,119,120],individu:[1,19,31,39,43,57,71,76,112],inf:[15,25,28,29],infer:42,infin:83,infiniium:[63,112],infiniiumchannel:68,infinit:[33,83],infinium:26,info:[2,3,7,15,23,27,36,45,65,83,113,116],inform:[3,11,18,37,45,49,54,55,60,65,81,83,89,106,108,114,116,119],inherit:[15,65,80,83],inifit:[28,29],init:67,init_measur:[14,15,75],init_s_param:[31,80],initi:[1,3,11,17,42,43,46,63,64,78,83,86,88,114,119],initial_valu:[1,3,9,53],initialis:[4,15,68,80,81,83,112],initialz:71,inlin:26,inner:[0,1,9,42,48,119],input:[2,3,15,19,20,26,33,47,55,63,64,71,78,80,82,83,108,111,112,119],input_config:16,input_coupl:16,input_imped:3,input_shield:16,insert:[3,26,45,116],insid:[3,9,12,37,39,43,52,54,83,86,88,108,114,115,119],inspect:[2,19],inst0:[3,12,13,15,24,25,26,30,31,33,80],instal:[36,60,64,68,71,74,82,85,99,106,108,110,114],instanc:[1,2,3,11,37,43,47,54,55,63,65,67,68,71,74,75,77,82,83,84,119],instant:64,instantan:[28,29],instanti:[3,4,18,22,24,36,43,70,76,108,112,119],instdict:33,instead:[0,1,11,36,42,120],institut:3,instr:[3,4,8,12,13,14,15,16,17,20,22,23,24,25,26,27,28,29,30,31,32,33,35,67,78,80],instruct:[4,19,114,115],instrument:[0,7,9,12,13,15,16,18,19,20,22,23,24,25,28,29,30,31,33,34,35,36,37,39,42,47,49,51,53,54,55,56,60,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,97,104,106,108,109,112,114,118],instrument_cod:55,instrument_driv:[3,4,8,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,108],instrument_i:76,instrument_mock:[5,6,11],instrument_nam:[11,18,42],instrument_testcas:63,instrument_x:76,instrument_z:76,instrumentchannel:[3,39,67,68,69,70,74,80,82,83,85,97],instrumentrefparamet:104,instrumentserv:[119,120],instrumentstriton:78,insuffici:119,integ:[3,9,37,42,45,54,64,82,83,85,90,116,119],integr:[1,4,8,20,23,24,81,108,119],integration_tim:8,intellig:[78,119],intend:[19,37,54,58,119],inter:71,inter_delai:[11,17,55,71],interact:[1,3,82,108,112,119],interdepend:119,interest:[36,108,119],interfac:[3,4,36,64,83,112,119],interleav:[18,83],interleave_adj_amplitud:83,interleave_adj_phas:83,interleave_sampl:[18,65],intermedi:108,intern:[3,16,19,25,36,42,55,65,68,74,82,83],internal_clock:[3,18],internal_trigger_r:83,interpret:[5,10,11,24,119],interrupt:[64,117],interv:[89,90],introduct:118,inv:25,invalid:3,invalidate_trac:66,invert:[3,8,23,77,80,82],invit:108,invok:[3,36],involv:[112,114,119],io_manag:[43,86,88,119],iomanag:111,ion:36,ipinstru:[3,76,78,97,111],ips120:[63,106],ipython:[0,1,2,7,8,10,15,16,17,18,20,22,23,27,30,31,32,34,36,114],iq_arrai:9,iqarrai:9,irang:[3,29,70],irrespect:[28,29,30,83],irrevers:119,is_awg_readi:83,is_numb:79,is_setpoint:[7,42],is_typ:2,isobu:78,issu:[19,83,101,102,105,108,111],issue_warning_on:15,ital:111,item:[9,34,37,45,54,57,70],iter:[39,57,58,111],iter_error:2,ithaco1:8,ithaco:[3,8,63,112],ithaco_1211:[3,8,23,63],its:[1,3,4,9,11,12,21,28,29,33,36,42,47,55,64,65,82,83,87,90,108,111,119,120],itself:[26,39,45,55,65,83,108,119],iv_sweep:[13,24],ivert:8,ivvi:[63,103,105,106,112],javascript:[0,1,2,7,8,10,15,16,17,18,20,22,23,27,30,31,32,34,36,108],jen:108,jhn:[11,31],jhnsrcqcodesqcodesinstrumentparamet:36,job:[119,120],join:[2,33,108,113],jorgenschaef:108,json:[2,7,8,11,31,37,49,50,54,55,60,82,83,103,114,116,119],json_config:2,jsonschema:2,jtar_index_no:83,jtar_stat:83,jump:[11,21,33,71,83],jump_log:83,jump_tim:83,jump_to:[33,83],jumplog:83,junk:10,jupyt:[1,11,114,115,117],just:[0,3,6,7,10,11,12,14,24,26,32,33,36,47,48,61,67,71,108,111,115,118,119,120],keep:[19,46,65,67,104,108,114,116,119],kei:[1,3,10,33,43,57,65,82,83,88,91,116,119],keightlei:104,keith:[8,13,20,23,24,102],keith_smua_curr:13,keith_smua_iv_sweep:13,keith_smua_volt_set:13,keithlei:[3,8,13,83,103,112],keithley1:[8,20,23],keithley2:[8,20,23],keithley_2000:63,keithley_2400:63,keithley_2600:[3,8,13,20,23,24,63],keithley_2600_channel:[3,13,24,63],keithley_2614b:[3,83],keithley_2700:63,keithley_smua:24,keithley_smua_iv_sweep:24,keithley_smub:24,keithleychannel:[3,83],kelvinox:[63,106],kept:116,kernel:[116,117],keysight:[11,63,103,104,105,106,112],keysight_33500b:[11,25,63],keysight_33500b_channel:63,keysight_34465a:[12,14,15,63],keysight_e8267d:63,keysight_m3201a:68,keysight_volt:12,keysightagilent_33xxx:63,keysightchannel:68,keyword:[45,47,59],khz:[3,22,30,31,32],kilo:73,kilo_b:73,kind:[0,36,83,120],kmstring:3,knob:[3,119],know:[11,57,58,108,113,120],known:[3,4,42,84],knownmodel:3,kwarg:[1,2,3,4,9,15,17,18,20,47,49,50,51,53,56,58,59,60,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,88,89,90,91,120],lab:[36,74,114],label1:48,label2:48,label3:48,label:[0,1,3,7,8,9,11,18,33,36,37,40,42,45,48,54,55,62,63,65,66,83,108,119,120],lack:67,lakeshor:63,lambda:[6,11,19,65],languag:48,larg:[4,7,33,55,83,108],larger:55,last:[1,2,7,15,20,36,55,65,70,74,83,108,119],last_saved_index:46,latenc:[11,12],later:[3,22,36,37,43,44,45,54,88,91,108,119,120],latest:[4,30,65,115,119],latest_cal_d:[18,65],latter:[13,14,90],launch:[74,115],lazi:112,lead:[78,108],leak:65,learn:[4,36,114],least:[36,108,111,119],leav:[37,49,54,83],leave_persistent_mod:78,left:[1,89,115],legacy_mp:[2,116],legend:31,len:[3,14,15,17,36,64,83,120],length:[9,12,25,33,36,54,64,74,83,87,119,120],less:[4,22,55,108,119],lest:33,let:[1,4,19,22,24,30,31,35,42,89,108,112,116,120],letter:108,leve:3,level:[2,3,11,15,18,22,26,30,42,48,78,82,83,85,106,108,116,119,120],levelnam:5,levelv:3,lib:[2,15,20,105],librari:[15,33,64,68,108,116],life:[68,108],like:[3,4,10,11,19,30,31,33,36,37,42,46,47,54,57,58,65,68,75,78,80,83,108,111,114,116,119],limit:[1,4,18,19,28,29,32,35,64,76,108,119,120],limiti:[8,24],limitv:[8,24],lin:[22,36,81],linalg:19,line2d:[15,36],line:[3,4,6,8,11,15,20,23,24,36,48,68,89,90,108,113,114],linear:[0,22,31,80,120],linearli:[36,111],liner:108,link:[42,58,64,65,111,115],linkag:109,linspac:[0,14,33,120],linux:115,list:[1,5,9,11,13,14,18,29,39,40,43,45,47,50,57,62,64,65,68,70,71,74,78,80,82,83,88,91,97,99,101,103,108,111,112,119,120],list_of_dataset:5,list_of_mixed_typ:5,listcomp:15,liter:108,littl:[108,119],live:[1,86,110,112,119,120],load:[2,3,9,33,41,46,64,81,83,86,101,112,114,116,120],load_and_set_sequ:83,load_awg_fil:83,load_data:[11,43,97],load_ext:2,loaded_data:11,loadlibrari:3,loadtestsfromtestcas:5,loc:45,loc_fmt:10,loc_provid:[2,10,11,45],loc_provider_junk:10,loc_record:[10,88],local:[0,9,12,13,14,26,33,36,37,43,47,49,54,55,60,67,68,78,83,85,108,114,119,120],localnod:3,locat:[0,1,2,5,7,9,12,13,14,15,16,17,18,20,22,23,24,26,28,29,30,31,32,36,43,44,45,46,68,83,86,88,112,115,116,119,120],location_provid:[2,11,45,88,111],lock:[11,36,39,71,78,82],lockin:[3,16,77,82],lockin_ch1_databuff:16,log:[2,5,6,15,22,26,32,33,36,74,81,114,116,120],logger:[5,26,32,33],logic:[50,83,108],logic_jump:83,loglevel:[2,116],logo:101,lograng:57,logview:108,longer:[31,45,48,52],look:[3,6,11,26,28,29,30,32,36,45,60,65,108,116,119,120],loop:[0,1,7,9,10,13,14,15,18,20,22,23,31,32,36,37,38,42,43,46,48,54,55,59,61,65,83,87,91,97,101,111,112,118,120],loop_indic:15,loop_result:9,loop_writing_test_2d_skewed_parabola:5,loop_writing_test_2d_x_set:5,loop_writing_test_2d_y_set:5,loop_writing_test_skewed_parabola:5,loop_writing_test_x_set:5,loopcount:83,lose:14,lost:64,lot:[3,19,42,83,108],loudli:11,love:[108,113],low:[3,11,15,22,31,36,83,119,120],lower:[42,119],lowest:[45,82],lua:[13,24,83],luasweepparamet:83,m1s:[33,83],m2s:[33,83],m3201a:63,m3300a:[63,103],m3300a_awg:68,m3300a_dig:68,m4i:[63,102,103,105],mac:[7,10,18,20,23,27],machin:[13,83,108],made:[2,4,36,68,74,116],mag:22,magic:33,magnet:[19,76,78,103,106,112,114,120],magnitud:[19,31,80,119],magnitur:31,mai:[3,4,11,21,24,28,29,30,31,32,33,36,38,43,46,47,57,58,83,89,90,99,108,111,116,119],mail:113,main:[1,83,119],mainfram:82,mainli:11,maintain:[3,77,82,108,109,113,119],major:4,majorana:116,make:[3,4,6,9,10,11,12,13,16,18,19,20,22,23,24,27,28,29,30,36,42,47,48,52,65,66,70,71,78,82,83,108,111,112,114,115,119],make_and_save_awg_fil:[33,83],make_directori:83,make_send_and_load_awg_fil:[33,83],manag:[3,20,43,45,46,71,78,82,88,119],mandatori:[16,83,108],mani:[1,3,4,9,36,42,43,48,57,58,65,68,105,108,119],manner:33,manual:[19,24,31,36,68,71,75,77,78,80,82,83,112,114,119,120],manualparamet:[0,1,3,9,18,97,120],map:[3,14,47,53,55,65,82,90,119],mark:[82,119],marker1:83,marker1_amplitude_n:83,marker1_high_n:83,marker1_low_n:83,marker1_method_n:83,marker1_offset_n:83,marker1_skew_n:83,marker2:83,marker2_amplitude_n:83,marker2_high_n:83,marker2_low_n:83,marker2_method_n:83,marker2_offset_n:83,marker2_skew_n:83,marker:[33,83],mashup:101,mass:83,master:[108,112,115],match:[4,30,33,36,45,47,48,54,55,64,78,80,82,83,119],math:19,matlab:1,matplot:[0,2,11,16,17,18,22,24,26,30,31,32,97,104,112],matplotlib:[0,2,5,6,10,12,13,15,16,17,18,19,20,21,22,23,26,27,30,31,32,33,34,36,90,112,116],matter:[4,33,108],maunual:2,max:[25,26,48,55,71,81,82],max_delai:56,max_frequ:82,max_sampl:[18,65],max_status_ag:70,max_subplot_column:1,max_val:67,max_val_ag:[55,56],max_work:120,maxim:[28,29,83],maximum:[19,55,67,76,81,116,119],mayb:[42,52,108],mea:[16,17],mean:[2,3,9,13,14,19,30,31,36,52,55,83,108,116,119,120],meaning:3,meaningless:108,meant:[47,74],meassur:31,measur:[0,1,3,5,7,9,10,12,13,14,15,16,17,18,19,20,23,24,26,30,31,32,37,42,43,48,52,54,55,58,59,63,68,74,77,80,82,85,91,97,105,112,118],measured_param:[3,77,82],measured_v:1,measured_val_2:1,measured_valu:58,measurerange_i:[13,24],measurerange_v:24,mechan:71,media:83,mega:73,mega_b:73,member:114,memori:[43,64,65,83,88,116,119],memory_s:[18,65],memrori:33,mention:[3,108],mercuri:[103,112],mercuryip:[27,63],mercuryipsarrai:78,merg:108,merger:3,merlin:7,messag:[5,15,25,32,33,67,68,70,71,82,83],message_len:71,messagebas:15,messur:31,met:[55,99],meta:[6,36,114,118,119],meta_fil:8,meta_serv:120,meta_server_nam:120,metadat:[50,58],metadata:[3,11,23,37,42,46,49,50,54,55,60,63,82,97,103,112,114,119],metadata_fil:48,meter:[3,7,10,11,24,78,83,106],method:[1,2,3,9,10,11,13,14,19,28,29,33,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,63,65,68,70,74,75,78,82,83,84,87,89,90,91,108,119,120],methodnam:[63,68,75,84],mhz:[31,36],microsoft:108,might:[21,24,65,108,119],millisecond:82,mimic:111,mimick:119,min:[25,71],min_val:67,min_valu:9,mind:65,mini:[22,48],minim:36,minimum:[55,67,71],minu:116,minut:3,mirror:119,misc:97,misinterpret:33,mismatch:64,miss:[108,120],mistak:108,mix:[3,5,108],mixer:71,mock:[6,19,108],mockgat:[7,10],mockinstru:111,mockmet:[7,10],mockparabola:5,mockparabola_run:5,mockparabola_skewed_parabola:5,mockparabola_x_set:5,mockparabola_y_set:5,mocksourc:[7,10],mode:[0,3,7,8,9,12,13,14,18,19,21,24,30,35,36,43,64,65,66,70,74,78,80,81,83,112,119,120],model:[3,7,8,10,11,13,18,22,23,24,30,65,68,69,76,78,79,80,82,83,108,111,116,119],model_336:63,modif:116,modifi:[1,29,55,57,74,108],modified_rang:46,modul:[2,3,4,11,15,20,99,108,116],modular:[114,119],mohm:[13,30],moment:[68,83],monitor:[10,52,61,85,91,111,114,119],more:[1,4,7,11,22,26,28,29,31,33,36,43,47,48,55,65,68,74,83,100,105,108,111,112,114,115,119],most:[1,2,3,4,9,15,20,21,30,31,36,54,55,65,68,75,80,83,108,111,115,119],mostli:[36,111],motiv:108,move:[3,10,19,22,78,83],mpl_connect:1,msec:[3,8],msg:78,mso:26,mso_chan4_trac:26,msos104a:[26,68],mua:28,much:[3,4,31,46,80,108,119],multi:[11,70,100,119],multichan_paramclass:39,multichannelinstrumentparamet:[39,70],multilin:108,multimet:[3,35,83,103],multiparamet:[3,31,74,77,78,80,82,97,103,112],multipl:[0,1,9,29,36,39,47,54,55,68,71,75,80,83,112,119,120],multipli:[55,119],multiprocess:[20,100,103,114,120],multityp:111,multmet:35,must:[3,9,11,22,30,32,33,36,37,42,45,48,49,54,57,58,65,67,68,74,80,82,83,88,108,111,116,119,120],mvpp:32,my47004267:8,my48002016:12,my54505281:14,my54505388:[12,15],my55510104:26,my57800256:25,my_experi:115,mycount:9,myget:11,myinstrument:120,myset:11,myvector:120,myvector_set:120,n48280:16,n5171b:68,n5181a:68,n51x1:63,n_avg:22,n_sampl:17,naiv:13,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,26,27,28,29,30,31,32,33,34,36,37,39,40,41,42,43,45,47,48,49,50,51,53,54,55,56,60,62,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,88,91,108,111,116,119,120],name_to_delet:3,nameofyourdriv:4,namespac:[10,97,116],nan:11,nativ:[11,82],navg:81,navig:[4,115],nbagg:[5,6,10,18,20,21,23,27,31,32,33,34],nbi:[108,113],ndarrai:[37,42,54,82,83,119],nearli:3,necessari:[18,36,42,58,64,65,74,114,119],necessarili:[37,54,108,111],need:[1,2,3,4,9,11,17,19,22,26,33,42,65,78,82,83,108,111,112,119,120],neg:[26,30,61,71],neither:108,nep:[36,74],nepbw:74,nepbw_to_timeconst:74,nest:[9,11,12,42,52,119],nested_dataset:5,network:[22,26,66,80,119],never:[55,108],new_data:[43,97],new_indic:15,new_nam:3,new_valu:15,newer:80,newlin:48,newlinestripp:83,next:[1,4,22,30,33,35,37,45,48,54,83,115,119,120],nice:[1,3,10,22,36,108],nick:108,nielsen:[108,113],nifti:3,nix:115,no_instru:120,nobodi:108,nois:[3,22,24,30],noisi:19,non:[19,33,87,108,120],none:[2,3,5,7,8,11,15,16,18,19,20,23,24,27,36,39,40,42,43,45,47,48,49,50,52,53,54,55,56,57,60,62,63,65,66,67,68,70,71,74,76,78,80,81,82,83,85,86,88,89,90,91,101,108],nonetyp:[39,50,63],noofpoint:33,noofseqelem:33,nor:108,norm:[19,25],normal:[13,30,37,43,44,47,54,55,57,68,83,111,119],notabl:36,notat:[2,57,66],notch_filt:16,note:[1,2,3,4,9,11,19,24,26,28,29,33,35,36,37,39,43,54,55,57,58,60,67,70,74,77,78,81,82,83,86,88,99,114,116,119,120],notebook:[1,2,3,12,13,15,16,17,18,19,22,24,30,32,33,36,103,105,112,114,115,116,117],noth:[3,24,65,67],notic:[1,24,31],now:[0,4,7,9,10,11,16,19,22,28,29,30,31,33,35,36,37,54,80,91,103,108,115,116,120],nplc:[3,8,12,14,15,20,23,24,83,112],nplc_list:68,npoint:26,npt:[18,31,80],nr_bytes_written:15,nrep:[33,83],num:[7,13,14,15,22,57,90],num_acquisit:30,num_chan:70,num_channel:83,num_port:31,number:[0,1,3,8,9,10,11,12,14,15,20,23,28,29,30,31,33,36,45,48,49,52,54,55,57,60,63,64,65,67,68,70,71,74,78,79,80,82,83,85,108,111,116,119,120],number_dac:71,number_format:48,number_of_averag:22,number_of_channel:65,number_of_paramet:120,numdac:71,numer:[48,119],numpi:[0,3,4,5,9,10,12,13,14,15,19,20,23,27,28,29,32,33,34,35,36,37,42,54,74,82,83,105,119,120],numpoint:83,numval:[14,15],nxsingl:30,object:[0,1,2,3,7,8,10,11,15,16,17,18,20,22,23,27,30,31,32,34,36,37,39,42,44,46,47,52,54,55,57,58,65,67,70,71,81,86,88,91,108,109,116,119,120],obsolet:33,obtain:[1,55,65],obviou:52,occasion:46,occupi:[30,45,83],occur:[1,19,64,67,71,82,116,119],oct:16,oem:83,off:[3,8,12,14,15,21,22,24,25,28,29,30,31,32,35,36,47,68,70,75,78,80,83,85],off_modul:80,offer:[0,1,120],offload:119,offset:[18,19,21,30,32,36,80,83],often:[1,4,6,43,108,111],ohm:[18,30,36],old:[16,24,31,32,104],oldest:25,oldn:36,omit:[37,54,55,78],on_modul:80,onboard:24,onc:[0,6,9,10,11,42,46,83,108,111,115,119,120],one:[1,2,3,9,10,11,13,16,19,21,24,26,28,29,30,31,32,33,36,37,40,42,43,46,47,48,52,54,55,57,62,63,64,65,67,70,71,80,82,83,85,88,108,111,112,116,119,120],ones:[68,75,80,83,108],onli:[3,4,5,9,11,18,19,20,28,29,30,31,32,33,36,37,42,43,45,47,48,54,55,57,58,64,65,66,68,70,74,75,77,78,80,82,83,85,88,108,112,119],onlin:1,onto:[83,119],opc:83,open:[4,5,8,46,49,60,64,78,90,104,108,114,115,119],opendevic:81,oper:[1,3,15,18,37,38,44,54,57,64,67,83,112,116,119,120],oppos:[3,33],opposit:89,optim:114,option:[2,3,25,30,33,37,39,40,42,43,45,46,47,49,54,55,57,58,60,62,63,68,71,78,80,82,83,85,86,88,101,105,108],order:[2,3,11,19,33,36,40,43,47,62,74,76,108,116,119],ordereddict:[0,43],org:[1,60],organ:[108,112],orient:119,origin:[12,36,63,119],osc:36,oscil:[36,68],oscillator2_freq:36,oscilloscop:[3,4,68,80,83,112],osx:115,other:[1,2,3,9,26,28,29,30,31,33,36,45,46,52,59,61,65,67,77,82,87,89,90,108,114,119],otherclass:3,otherwis:[3,33,42,64,65,67,108,119],our:[4,30,31,48,108],out:[0,3,6,9,11,15,19,20,25,28,29,31,32,36,37,38,54,64,65,70,78,80,82,108,112,113,114,117,119,120],outer:[1,9,11,42,48,119],output:[3,4,8,10,13,18,20,21,22,23,24,27,28,29,30,31,33,35,47,52,55,64,67,68,70,71,74,77,79,80,82,83,85,87,108,112,119],output_interfac:16,output_pow:22,output_rang:85,output_waveform_name_n:83,outputchannel:68,outsid:[35,61,65,71,74,83],over:[0,3,4,11,26,31,35,36,39,46,52,57,58,65,81,108,111,119,120],overhead:[14,119],overid:78,overlap:4,overload:[67,80,82],overrid:[3,43,45,46,70,74,78,83,88],overridden:1,overview:[11,22,24,26,83,112,116,118],overwrit:[2,20,23,71,83,88,116],overwritten:45,ovsr:82,own:[2,3,11,31,47,64,65,90,108,119],oxford:[27,34,63,103,106],oxfordinstruments_ilm200:78,oxfordinstruments_ips120:78,oxfordinstruments_kelvinox_igh:78,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:83,pack_waveform:83,packag:[1,2,15,36,99,108,114,116],packard:[8,22,66],packed_waveform:83,pad:3,page:[82,97,99,108,119],pai:108,pair:12,panel:[36,67,83,114],panic:119,par:33,paraemt:63,parallel:78,param:[9,33,34,36,55,65,70,71],param_id:15,param_nam:[42,70],param_out:15,paramet:[1,6,7,8,10,11,13,18,19,21,22,23,24,26,28,29,31,33,34,36,37,38,39,40,42,43,44,45,47,48,49,50,51,52,53,54,57,58,59,60,61,62,63,64,65,66,67,68,70,71,74,75,76,77,78,80,81,82,83,85,86,87,88,89,90,91,97,100,102,105,108,109,112,114,118],parameter_class:3,parameter_nam:101,params_to_skip_upd:70,paramt:[0,62,120],parent:[3,37,39,47,51,54,55,58,67,68,69,70,74,80,82,83,85],parenthes:108,pars:[33,47,79,83],parse_awg_fil:[33,83],parse_multiple_output:79,parse_on_off:[68,75,80],parse_output_bool:83,parse_output_str:83,parse_single_output:79,parse_string_output:79,parsebool:83,parseint:83,parser:[3,47,66,82,83],parsestr:[66,83],part:[2,3,4,10,31,37,45,54,55,81,82,85,103,108,111,112,116,119],parti:26,partial:[22,79,120],particular:[9,19,33,36,111,119],particularli:[47,50,82,119],pass:[1,3,4,22,45,47,58,59,63,65,68,71,76,80,85,88,89,90,108,116,119,120],pat:83,patch:108,path:[2,4,11,33,41,43,44,46,65,78,83,86,88,115,119],pattern:83,paus:19,pci:[3,64],pcie:[64,65,103],pcie_1751:63,pcie_link_spe:[18,65],pcie_link_width:[18,65],pcserno:26,pdf:[70,82],peak:30,pend:83,pep8:108,per:[3,13,14,15,18,24,37,42,54,65,66,67,70,71,76,83,114,120],percent:[36,74],percentag:78,perf:108,perfom:12,perform:[1,4,11,12,16,18,19,24,28,29,30,36,46,55,60,65,71,74,81,83,87,104,106,108,119],perform_safety_check:76,perhap:[15,119,120],period:[26,30,43,89,90],persist:[49,76,78],persistent_switch:76,person:108,phase:[9,16,25,31,36,65,74,80,119],phase_delay_input_method_n:83,phase_n:83,phi:[19,36],phi_measur:19,physic:[3,4,28,29,43,63,67,86,88,91,119],pick:108,pictur:119,piec:[111,119],pillar:119,pin:64,ping:108,pinki:108,pip:[71,108,114,115],pixel:89,place:[1,2,28,29,30,68,89,108,119],plai:11,pleas:[3,24,26,33,36,70,82,83,108,113],plenti:26,plese:113,plot:[0,2,3,15,16,17,18,19,22,23,24,25,26,28,30,31,32,33,35,36,42,97,101,104,105,112,116,119],plot_1d:11,plotlib:[2,116],plotq:23,plotter:36,plt:[1,10,12,13,15,17,19,20,23,26,27,30,31,32,33,34,36,90],plu:116,plubic:99,plug:[13,68,114],plugin:108,plural:9,point:[11,12,13,14,15,16,19,31,36,40,44,48,52,62,74,78,80,81,83,97,114,119],poitn:83,polar:71,polish:114,poll:[13,16],polyfit:19,poor:21,popul:[42,50,51],popular:3,port:[19,21,31,34,49,64,67,76,78,81,114],port_count:64,posit:[47,80,119],possibl:[3,4,9,21,31,33,36,77,78,82,83,116,119],post:108,post_acquir:65,post_delai:[11,17,55],post_trigger_act:74,potenti:[24,37,43,52,54,114,119],power:[3,19,22,24,31,68,76,78,80,81,103,108,119],power_limit:38,ppi:64,pprint:[7,8],practic:108,pre:[86,112],pre_acquir:65,pre_start_captur:65,preamp:[3,77,82],preamplifi:[3,77,82],prece:74,preced:48,precis:[21,71,74,102],preconfigur:2,predefin:[33,59,82,83,112],prefer:[114,119],prefix:108,preliminari:12,prepar:[13,14,15,22,30,36,65,68,74,80,82,83,112,119],prepare_buffer_readout:[16,82],prepare_curvedata:[26,32,68,83],prepare_for_measur:81,prepare_readout:82,prepare_scop:[36,74],prepare_trac:[22,30,66,80],preparesweep:83,prepend:[42,83],preprocessor:64,prerequisit:112,present:[3,4,16,77,82,85,108,119],preservechannelset:83,preset:81,preset_data:42,press:[1,83,117],pretend:4,pretti:[22,28,29,70,74],prevent:[3,37,54,55,65,71,83],previou:[1,7,55,67,108],previous:[74,83,119],primari:114,princip:47,print:[0,1,2,9,10,11,12,14,15,18,19,20,23,24,27,28,29,33,34,35,36,67,68,70,74,83,120],print_al:66,print_cont:83,print_modstatu:66,print_overview:[28,29,70],print_readable_snapshot:[11,16,22,24,31],print_sweeper_set:[36,74],printslop:[28,29,70],prior:[22,63,67],prioriti:[45,119],privat:[65,97],privileg:64,probabl:[47,65,80,108,119],problem:[33,35,108],procedur:[70,119],process:[10,18,65,108,119],produc:[31,119],profit:115,program:[1,65],programm:[65,76,83],programmat:[2,83,114],progress:52,progress_interv:[15,52],project:[3,108],prompt:115,proper:[36,71],properli:[4,19,83],properti:[2,3,4,64,116,119],protect:71,protocol:[18,71,119],provid:[1,2,3,9,18,28,29,42,45,47,49,55,58,65,68,75,82,84,88,89,90,108,111,112,119],proxi:119,psu:78,pts:[16,36],pull:[15,36],pull_from_serv:[7,10,18,23,119],puls:[28,29,33,66,103],purchas:36,purpos:[3,9,119],push:119,push_to_serv:[7,23,119],put:[4,19,33,35,48,70,78,83,119,120],pxie:68,py_head:[63,72],pyenv:2,pyplot:[1,10,12,13,15,17,19,20,23,26,27,30,31,32,33,34,36],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,23,25,28,35,97,104,106,116],pyqtmaxplot:116,pyqtplot:116,pytest:[4,108],python3:2,python:[3,11,26,43,64,65,71,78,83,86,88,101,108,114,115,119],pyvisa:[3,15,60,112,119],pywin32:106,qcmatplotlib:[0,2,18,97],qcode:[0,1,4,5,6,7,8,13,14,15,17,26,35,97,99,108,109,110,113,118,119,120],qcodes_colorbar:1,qcodes_config:116,qcodesrc:2,qcodesrc_schema:[11,31],qdac:[12,14,63,103,104,105,106,112],qdac_ch01_v_set:14,qdac_ch02_v_set:15,qdac_ch41_v_set:12,qdac_ch42_v_set:12,qdac_channel:[63,112],qdac_setpoint:14,qdacchannel:70,qdacmultichannelparamet:70,qdev:[12,14,15,20,28,29,63,114,116],qtlab:81,qtplot:[0,2,11,15,22,23,25,28,35,97,112],qtwork:71,quadratur:9,quantiti:48,quantum:115,queri:[20,28,29,36,70,80,81,82,83,119],queriabl:4,querysweep:81,question:[68,70,80,108],queue:[20,25,33,67,68,83],quickli:33,quiet:15,quirk:100,quit:[1,3,38,108,119],quot:48,qutech:[17,63],qutech_controlbox:75,r_offset:16,rack:[17,71],rad_to_deg:75,rainbow:[10,45],rais:[2,3,4,15,19,20,26,35,38,39,55,58,61,63,64,65,68,71,74,75,82,83,84],raiseexc:82,ramiro:81,ramp:[3,11,15,19,21,25,28,29,35,55,67,76,78,83,85],ramp_al:67,ramp_curr:[35,85],ramp_rat:[19,67],ramp_to:85,ramp_voltag:[35,85],ramptim:28,ran:5,randint:[6,11],random:[2,3,6,11,19,33,68],rang:[4,8,9,12,14,15,17,18,22,25,26,28,29,30,31,33,35,36,64,65,68,71,74,80,81,83,119,120],range_auto:8,rangei:8,rangev:8,rate:[16,18,19,26,36,65,67,71,76,82],rather:[21,36,68,108,120],ravel:119,raw:[3,14,71,111,112,114],raw_trac:68,raw_val:14,raw_valu:[11,55],rawtrac:68,reach:[19,82,108],read:[3,4,5,9,11,19,20,23,28,29,32,35,43,46,47,48,49,60,64,67,70,71,77,78,80,82,83,85,86,88,108,111,112,115,116,119],read_metadata:46,read_one_fil:46,read_pin:64,read_port:64,read_stat:70,readabl:[3,11,55,65,102,108],reader:11,readi:[9,11,36,66,83,88,108,115],readili:1,readm:108,readout:[70,82,104],readthedoc:[4,60],real:[3,11,31,68,77,82,108,111,114,119,120],realli:[4,28,29,42,68,115,119],realtim:[108,114],reappear:108,rear:83,reason:[11,19,108,120],recal:11,receiv:[1,3,25,67,82],recent:[2,15,20,55],recommend:[36,108],reconnect:119,reconsid:24,reconstruct:46,record:[11,18,45,74,83,88,112,114,119],records_per_buff:[18,65],recycl:65,redirect:[42,102],reduc:[22,47],redund:4,ref:[32,119],refactor:108,refer:[11,36,42,65,82,97,108,110,119,120],referenc:[37,54,55,119],reference_clock_frequency_select:83,reference_multiplier_r:83,reference_sourc:[16,83],refernc:81,reflect:80,refriger:78,reg:[34,63,72],regard:[30,65,119],regardless:108,regist:[82,108],registri:78,regular:[3,6,119],reimport:116,reinvent:108,reject:[3,4,81],rel:[11,31,43,44,86,88,119],relat:[1,119],relationship:119,releas:[46,114],relev:[4,15,30,55,65,82,83],reli:[1,3,65],reliabl:[65,119],reload:[5,46,63,119],remain:65,rememb:[14,19,26,31,32,74],remot:[8,20,27,30,78,89,119],remoteinstru:[8,119,120],remoteparamet:119,remov:[25,31,36,42,43,71,74,78,80,83,103,105,108,112],remove_signal_from_sweep:74,rep:83,repeat:[39,108,119],repet:83,repetit:[33,83],repetition_r:83,replac:[1,4,17,67,105],repo:[2,108],report:[26,109,114],repositori:[108,112,114],repr:[15,67],reprec:31,repres:[3,9,48,55,65,68,82,119],represent:[3,11,64,91,111],reproduc:[108,119],request:[14,19,26,109,119],requir:[4,9,11,36,37,47,54,57,58,60,64,71,74,80,85,88,106,108,116,119,120],res:20,research:[82,104],resend:83,resend_waveform:83,reserv:16,reset:[9,11,13,15,16,22,30,31,33,47,48,66,71,75,76,79,80,82,83],reset_modul:82,reset_voltag:71,resist:3,resistor:[13,35],resit:63,resolut:[8,11,30,71,80,105],resolv:68,resourc:[4,15,46,60,64,68,70,80,82,119],respect:[1,37,54,64,83],respond:3,respons:[3,4,20,47,49,55,60,66,67,70,82],ressourc:[3,83],restart:116,restrict:[82,111],restructur:108,result:[1,5,9,22,45,65,71,81,83,112,119],ret:15,ret_cod:15,ret_valu:15,retriev:[25,55,83,116],retur:83,return_count:15,return_pars:47,return_self:83,reus:119,revers:[55,57],review:[108,114],revion:67,revok:[28,29],rewrit:119,rewritten:108,rf_off:31,rf_on:31,rho:19,richer:119,rid:42,right:[1,19,26,33,63,65,82,89,91,115],rigol:63,rigol_dg4000:79,rise:[3,8,36],risetim:[3,8,23],robust:3,rohd:[80,112],rohde_schwarz:[30,31,63],rohdeschwarz_sgs100a:80,rohdeschwarz_smr40:80,rol:81,ron:83,root:[5,43,44,83,86,88],rotate_nvalv:78,rough:109,round:[71,85,105,119],round_dac:71,routin:[68,70],row:[1,48,80],rrm:36,rs232linkformat:71,rs_sgs100a:80,rs_smb100a:80,rst:[47,108],rto1000:[30,63],rto1024:30,rto:[78,112],rtoz:27,rtype:15,rule:[3,19],run:[0,1,4,6,7,10,11,12,13,14,15,16,17,18,19,20,22,23,25,26,31,32,36,52,63,64,66,74,83,101,112,114,116,119,120],run_cont:30,run_contin:66,run_mod:83,run_n_tim:[22,66],run_singl:30,run_stat:83,run_sweep:22,run_temp:9,run_to_field:78,run_to_field_wait:78,runtest:[63,68,75,84],runtim:[2,116],s11:[22,31],s12:31,s21:[22,31],s22:31,s44:31,s5i:63,s_paramet:22,sa124_max_freq:81,sa124_min_freq:81,sa44_max_freq:81,sa44_min_freq:81,sa_api:81,sa_audio:81,sa_audio_am:81,sa_audio_cw:81,sa_audio_fm:81,sa_audio_lsb:81,sa_audio_usb:81,sa_auto_atten:81,sa_auto_gain:81,sa_averag:81,sa_bypass:81,sa_idl:81,sa_iq:81,sa_iq_sample_r:81,sa_lin_full_scal:81,sa_lin_scal:81,sa_log_full_scal:81,sa_log_scal:81,sa_log_unit:81,sa_max_atten:81,sa_max_devic:81,sa_max_gain:81,sa_max_iq_decim:81,sa_max_rbw:81,sa_max_ref:81,sa_max_rt_rbw:81,sa_min_iq_bandwidth:81,sa_min_max:81,sa_min_rbw:81,sa_min_rt_rbw:81,sa_min_span:81,sa_power_unit:81,sa_real_tim:81,sa_sweep:81,sa_tg_sweep:81,sa_volt_unit:81,sabandwidthclamp:81,sabandwidtherr:81,sacompressionwarn:81,sadevicenotconfigurederr:81,sadevicenotfounderr:81,sadevicenotidleerr:81,sadevicenotopenerr:81,sadevicetypenon:81,sadevicetypesa124a:81,sadevicetypesa124b:81,sadevicetypesa44:81,sadevicetypesa44b:81,saexternalreferencenotfound:81,safe:[19,71,78,108,119],safe_reload:81,safe_vers:71,safeti:[19,31,68,78],safrequencyrangeerr:81,safti:31,sai:[43,86,88,108,120],said:[42,83],sainterneterr:81,sainvaliddetectorerr:81,sainvaliddeviceerr:81,sainvalidmodeerr:81,sainvalidparametererr:81,sainvalidscaleerr:81,sake:[4,22],same:[1,3,6,9,12,18,19,40,42,48,54,57,62,64,74,82,83,90,108,119,120],samp:[17,82],sampl:[14,16,18,26,57,58,63,65,71,82,112,119],sample_count:[14,15,82],sample_r:[18,65],sample_timer_minimum:[14,15],samples_per_buff:65,samples_per_record:[18,65],sampling_r:83,sane:41,saniti:35,sanocorrect:81,sanoerror:81,sanotconfigurederr:81,sanullptrerr:81,saovencolderr:81,saparameterclamp:81,sastatu:81,sastatus_invert:81,satisfi:19,satoomanydeviceserr:81,satrackinggeneratornotfound:81,saunknownerr:81,sausbcommerr:81,save:[0,4,11,15,22,33,37,42,43,46,48,54,55,65,83,87,88,101,108,111,112,114,115,119,120],save_to_cwd:2,save_to_env:2,save_to_hom:[2,116],savvi:114,sawtooth:25,sca:1,scalar:[6,9,11,37,54,68,87,119],scale:[9,22,26,31,32,36,55,63,80,81],scale_param:9,scale_set:9,scale_v:9,scan:31,scenario:[68,108],scene:36,scf:1,schema:[2,11,31,41,116],schema_cwd_file_nam:41,schema_default_file_nam:41,schema_env_file_nam:41,schema_file_nam:41,schema_home_file_nam:41,scheme:[3,4],schouten:71,schwarz:[80,112],scientist:115,scope:[4,26,30,32,68,74,80,83,112],scope_average_weight:36,scope_channel1_input:36,scope_channel2_input:36,scope_channel:36,scope_correctly_built:36,scope_dur:36,scope_length:36,scope_measur:32,scope_mod:36,scope_samplingr:36,scope_seg:36,scope_segments_count:36,scope_trig_delai:36,scope_trig_en:36,scope_trig_gating_en:36,scope_trig_gating_sourc:36,scope_trig_holdoffmod:36,scope_trig_holdoffsecond:36,scope_trig_hystabsolut:36,scope_trig_hystmod:36,scope_trig_level:36,scope_trig_refer:36,scope_trig_sign:36,scope_trig_slop:36,scopearrai:83,scopechannel:80,scopedata:36,scopetrac:80,scpi:[3,67],screen:[30,83,89,115],script:[4,24,83,112,114,120],sd_awg:68,sd_common:68,sd_dig:68,sd_modul:68,sdk:65,sdk_version:[18,65],seamless:68,search:[45,108,119],sec:[68,83],second:[1,4,7,9,11,16,25,35,36,37,42,43,49,52,54,55,60,61,65,67,71,76,78,82,83,85,88,89,90,113,119,120],section:[113,115],see:[0,1,2,3,6,10,19,25,28,30,32,33,35,45,46,49,55,58,60,65,71,80,82,83,89,108,119,120],seem:[48,108],seen:31,segm1_ch1:83,segm1_ch2:83,segm2_ch1:83,segm2_ch2:83,segment:[1,36,74,83],select:[3,18,19,65,74,83,108,115],self:[2,3,4,9,15,20,22,23,37,43,46,54,67,68,70,78,81,83,88,91,108,120],semant:114,semi:108,semicolon:78,sen:[3,8,23,77],send:[3,13,14,15,19,49,71,77,82,83,112,113],send_awg_fil:83,send_dc_puls:83,send_pattern:83,send_sequ:83,send_sequence2:83,send_trigg:17,send_waveform:83,send_waveform_to_list:[33,83],sens:[3,108],sens_factor:[3,8,77],sens_x:23,sensit:[3,8,16,77],sensor:[69,112],sensorchannel:69,sent:[3,13,47,55,78,83,111,119],separ:[4,9,24,46,48,54,78,91,114,119,120],seper:[67,83],septemb:24,seq:83,seq_elem:33,sequanti:62,sequecn:83,sequenc:[9,33,37,42,52,54,57,67,83,87,90,119],sequence_cfg:83,sequence_length:33,sequence_po:33,sequenti:[36,40,120],seri:[3,68,75,79,80,83,112],serial:[3,4,7,8,11,12,13,14,15,16,17,18,19,22,24,25,26,30,31,32,35,65,67,78,82,111],serial_numb:23,serialis:83,seriou:30,serv:3,server:[4,18,20,27,36,65,74,119,120],server_err:20,server_nam:[5,8,18,27,66,120],session:[10,11,15,43,86,88,108],set:[0,1,2,3,4,5,6,8,9,10,12,15,16,18,19,20,21,22,23,24,25,26,27,31,33,35,40,42,43,46,48,52,53,55,57,58,62,63,64,65,66,67,68,70,71,74,76,77,78,80,81,82,83,86,87,88,111,112,114,116,119,120],set_al:67,set_arrai:42,set_cmd:[1,3,4,11,55,56,66,78,120],set_current_folder_nam:83,set_dacs_zero:71,set_default:83,set_ext_trig:80,set_field:76,set_funct:65,set_iq_st:80,set_jumpmod:83,set_level:83,set_measur:[7,8,10,20,23],set_mix_chamber_heater_mod:78,set_mix_chamber_heater_power_rang:78,set_mod:83,set_mode_volt_dc:83,set_mp_method:[7,10,18,20,23,27],set_pars:[55,56],set_persist:78,set_point:32,set_pol_dacrack:71,set_pulsemod_sourc:80,set_pulsemod_st:80,set_ramp:21,set_raw:63,set_remote_statu:78,set_sequ:83,set_set_point:32,set_setup_filenam:83,set_smooth:82,set_sqel_event_jump_target_index:83,set_sqel_event_jump_typ:83,set_sqel_event_target_index:[33,83],set_sqel_goto_st:83,set_sqel_goto_target_index:[33,83],set_sqel_loopcnt:[33,83],set_sqel_loopcnt_to_inf:[33,83],set_sqel_trigger_wait:[33,83],set_sqel_waveform:[33,83],set_statu:80,set_sweep:80,set_titl:[1,33],set_to_fast:78,set_to_slow:78,set_valu:58,set_voltag:82,set_ylim:33,setboth:120,setbothasync:120,setformatt:5,setlevel:[5,26,32,33,36],setpoint:[0,1,5,6,7,9,11,12,13,14,15,18,19,22,31,32,37,42,48,54,66,68,74,78,80,82,83,87,103,119,120],setpoint_arrai:[37,54],setpoint_label:[9,37,54],setpoint_nam:[9,37,54,74],setpoint_unit:[37,54],settabl:[3,4,55,58,111,119],setter:[4,111],settl:[36,108],setup:[31,80,91,112,114,115],setupclass:[63,68,75],setx:120,sever:[68,74,78,108,111,119],sg384:[63,102],sgs100a:63,shadow:2,shall:35,shape:[0,1,3,5,7,9,11,12,13,14,15,16,17,18,22,24,26,30,31,32,33,36,37,42,54,68,74,80,90,119,120],share:[21,113],shared_kwarg:120,shell:114,shift:36,ship:[2,36],shortcut:89,shorthand:1,shot:[24,30,100,108,112],should:[3,4,11,14,18,19,25,30,31,32,33,35,36,37,39,42,43,45,46,47,49,51,52,54,55,57,58,59,63,64,65,67,68,77,78,82,83,91,108,115,119],shouldn:42,show:[1,3,6,10,11,17,18,19,20,23,27,28,29,35,108],show_subprocess_widget:[7,10,18,20,23,27],show_window:89,shown:[1,19],side:[19,33,55,111,115,120],sig:36,sig_gen:108,signadyn:68,signal:[11,26,32,33,65,68,74,75,80,81,82,83,103,112,119],signal_hound:63,signal_input1:36,signal_input1_ac:36,signal_input1_diff:36,signal_input1_imped:36,signal_input1_rang:36,signal_input1_sc:36,signal_output1:36,signal_output1_ampdef:36,signal_output1_amplitud:36,signal_output1_autorang:36,signal_output1_en:36,signal_output1_imp50:36,signal_output1_offset:36,signal_output1_on:36,signal_output1_rang:36,signal_to_volt:65,signalhound_usb_sa124b:81,signatur:[33,46,64,83],significantli:31,silent:[3,68],sim900:82,sim928:[63,103],sim:[4,82],similar:[1,4,11,80,83,119],similarli:[29,36,119],simpl:[4,6,9,11,13,16,18,31,32,38,44,47,53,61,90,108,112,114,119],simpler:108,simplest:[4,119],simpli:[2,4,36,47,55,83],simplifi:[10,67,108],simul:[111,112,114,118,119],simultan:[16,29,67],simultani:76,sin:[33,79],sinc:[1,3,4,11,19,36,67,74,78,83,119,120],sine:[26,30,32],sing:31,singl:[1,3,9,11,20,23,24,30,31,37,48,55,57,64,65,67,68,69,70,76,83,87,90,100,108,111,112,119],single_iq:9,single_set:9,singleiqpair:9,sit:24,site:[1,2,15],situat:[11,48,119],six:[28,29,64],size:[1,7,11,37,43,54,55,65,71,82],skewed_parabola:5,skill:108,skip:108,slack:[104,105,106,108,113,114],slash:44,sleep:[3,14,15,16,17,20,23,27,28,29,32,33,58,61,71,82],slice:[10,31,57,111],slider:1,slider_demo:1,slightli:[24,102],slope:[15,18,19,25,28,29,70],slot:[21,67,68,82],slot_mode_default:67,slot_nam:82,slow:[28,29,78,119],slow_external_clock:3,slower:33,slp:22,small:[24,28,29,31,36,64,66,100,108],smaller:[31,82],smart:[78,108],smooth_timestep:82,smoothli:82,smr40:63,smu:3,smua:[3,13,24,83],smub:[3,24,83],snap:8,snapshot:[0,3,7,8,11,18,23,37,39,42,49,50,54,55,60,82,83,91,102,105,106,119],snapshot_bas:70,snapshot_get:[37,54,55],snapshot_valu:[37,54,55,82],sochat:108,socket:[49,69],soft:83,softwar:[3,25,36,70,74,83,106,108,112,119],software_revis:23,software_triggered_read:14,sohail:108,solv:108,some:[0,3,4,11,29,35,36,37,47,49,54,55,57,67,68,82,83,108,112,116,119],somebodi:108,somehow:119,someon:[64,108],someth:[2,10,19,33,35,36,65,68,70,108,116,119],sometim:[3,9,11,36,48,119],soon:[67,108],sophist:65,sort:[33,48],sort_kei:8,sourc:[3,7,10,11,18,19,24,26,31,35,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,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,108,109,114,115,119],source_mod:35,sourcemet:[3,13,83,103],sourcerange_i:24,sourcerange_v:[13,24],space:[28,29,37,54,55,57,108,111],span:[31,71,81],spann:71,spanx:71,spawn:[7,10,18,20,23,27],spcerr:[63,72],speak:3,spec:4,special:[3,11,37,54,55,108,119],specif:[3,4,18,33,43,67,70,71,78,83,108,111,119],specifi:[1,19,25,33,37,46,52,54,63,64,68,71,74,75,81,82,83,84,85,90,91,108,116,119],specifiedta:83,spectrum:[63,102,103,119],speed:[12,14,31,55,65,119],speedup:105,spend:3,spheric:19,spherical_measur:19,spi:71,spi_rack:71,spirack:71,splat:1,split:[14,31,34],spread:113,spyder:115,sqel:83,sql:119,squar:32,squencer:83,sr560:[3,63],sr830:[63,101,104,112],sr860:[17,63],sr860m:82,sr865:63,sr86x:63,sr86xbuffer:82,sr86xbufferreadout:82,src:[2,5,31],srs_sg384:82,stabl:60,stackoverflow:1,stage:119,stai:[108,120],staircas:11,stale:119,stand:19,standalon:114,standard:[1,3,14,31,55,67,70,82,114],standardparamet:[1,7,9,18,23,97,111],stanford:[82,104],stanford_research:[3,16,17,63],stanford_research_system:[16,17],stanford_sr865:82,start:[0,1,3,7,10,11,12,13,14,15,16,18,22,23,25,26,31,36,41,42,43,48,55,57,59,64,65,67,78,80,82,83,85,86,88,108,112,119],start_captur:[17,82],start_freq:22,startcaptur:18,startup:[4,28,29,66,70],stat:[68,75,80],state:[3,28,29,30,33,36,64,66,67,80,83,85,108,111,114,119],statement:[71,108],station1:[20,23],station2:[20,23],station:[5,6,7,8,10,11,12,15,20,23,24,31,36,37,50,52,54,55,82,97,109,119],stationq:114,statu:[34,65,68,70,71,75,78,80,81,82,83],status:82,statuscod:83,std:[13,14],stderr:5,stdlib:64,stdout:15,step:[1,3,4,11,12,24,31,35,52,55,56,57,71,82,83,84,85,115,120],step_attenu:[68,75],stepper:78,stepsizen:71,still:[3,4,28,29,33,35,42,108,119],stop:[1,16,25,30,31,33,36,57,80,82,83],stop_captur:[17,82],stop_freq:22,storag:[83,114,119],store:[0,2,5,37,39,42,43,46,54,55,63,65,83,88,91,105,119],str:[3,15,37,39,40,41,42,43,44,45,47,49,50,51,54,55,60,62,63,66,67,68,70,71,74,77,78,80,82,83,85,86,88],straightforward:[33,119],strang:36,strategi:67,stream:[15,18,36],streamhandl:5,strftime:45,strictli:74,string:[2,3,4,5,15,20,23,37,39,45,46,47,48,54,55,65,66,68,71,74,76,78,79,80,82,83,88,91,108,111,116,119],strip:[48,80],strive:108,strongli:[1,3,36,108],struct:13,structur:[43,46,65,86,88,111,116,119],struggl:108,stuf:116,stuff:[4,19,78,83,112],stupid:19,sub:3,subclass:[3,9,36,37,39,46,47,49,54,55,58,60,65,111],subject:[108,119],sublim:108,sublimelint:108,submit:[4,120],submodul:[3,11,50],subplot:[19,31,32,36,90,112],subprocess:[10,18,20,23,27],subscrib:74,subsequ:59,subset:31,substitut:3,subtract:36,succes:83,success:55,successfulli:[19,64],succinct:108,suddenli:3,suffici:4,suit:[5,68,75,80,84,114],sum:[0,120],summari:112,superclass:3,superconduct:78,suppli:[3,44,46,76,78,103,119],support:[0,1,2,3,5,11,24,25,28,29,31,32,33,35,36,50,51,58,64,68,74,78,80,82,83,104,105,108,116,119],suppos:78,suppress:[3,8,23,83],supress:68,sure:[4,12,16,19,30,36,78,83,108,111,115],sv2:57,sv3:57,sv4:57,swap:114,sweep:[0,6,7,11,13,14,15,24,31,36,39,40,55,57,58,62,66,74,78,80,81,83,100,111,112,114,118,119],sweep_tim:22,sweep_val:[0,1,120],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[7,11,52],sweepabl:62,sweepdata:36,sweeper:[74,103,112],sweeper_bw:36,sweeper_bwmod:36,sweeper_ord:36,sweeper_param:36,sweeper_samplecount:36,sweeper_start:36,sweeper_stop:36,sweeper_xmap:36,sweeper_xxx:36,sweepfixedvalu:[97,111],sweepvalu:[52,97,109],swept:[13,120],symmetr:26,symmetri:19,sync:[20,23,28,29,32,36,68,112,119],sync_delai:29,sync_dur:29,sync_filt:16,sync_output:25,sync_sourc:25,syncchannel:68,synchron:[67,119],syntax:114,synthes:103,sys:[5,15,31],system32:[3,65,81],system:[3,18,37,41,47,54,55,65,78,82,83,91,100,102,116,119],system_id:[3,18,65],t_actual:19,t_set:19,t_start:[12,15],t_stop:[12,15],tab:[36,48,108],tabl:[83,112,116,119],tag:108,tailor:1,take:[0,3,11,15,29,30,35,37,38,39,52,54,55,67,70,74,80,83,104,108,111,114,120],taken:[80,83],talent:108,talk:[3,77,82,119,120],target:[19,57,58,65,83,85],target_curr:19,target_field:19,task:[6,11,15,22,25,52,61,97,101,108,111,119],tcpip0:[3,12,13,14,15,24,25,26,30,31,33,80],tcpip:[26,119],tear:24,tech:114,techniqu:108,technolog:[8,12,14,15,25,26],tektp:32,tektron:106,tektronix:[3,8,13,20,23,24,63,103,104,112],tektronix_awg5014:[33,83],tektronix_awg5200:83,tektronix_awg520:83,tell:[46,48,61,108,119],temp0_0:[28,29],temp2_1:[28,29],temp5_2:[28,29],temperatur:[69,78,103,112],templat:108,temporari:[43,88],tempx_i:[28,29],tend:3,tens:108,term:[15,108],termin:[3,4,8,10,13,15,18,20,23,27,35,48,49,60,70,76,78,80,85,114,115,119],tesla:[19,76,78],test:[3,6,11,12,14,19,26,35,45,64,67,68,70,71,75,79,80,83,84,102,111,112,114,119],test_:4,test_ami430:19,test_attenu:84,test_attenuation_valid:4,test_awg_fil:33,test_channel_amplitud:68,test_channel_frequ:68,test_channel_offset:68,test_channel_phas:68,test_channel_wave_shap:68,test_chassis_and_slot:68,test_chassis_numb:68,test_clock_frequ:68,test_closed_fil:5,test_dataset_clos:5,test_dataset_finalize_closes_fil:5,test_dataset_flush_after_writ:5,test_dataset_with_missing_attr:5,test_double_closing_gives_warn:5,test_field_vector:19,test_firmware_vers:[75,84],test_frequ:75,test_full_write_read_1d:5,test_full_write_read_2d:5,test_hdf5formatt:5,test_incremental_writ:5,test_init:4,test_instru:[63,108],test_loop_writ:5,test_loop_writing_2d:5,test_metadata:108,test_metadata_write_read:5,test_on_off:75,test_open_clos:68,test_phas:75,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:75,test_pxi_trigg:68,test_read_writing_dicts_withlists_to_hdf5:5,test_reading_into_existing_data_arrai:5,test_send:83,test_serial_numb:68,test_slot_numb:68,test_snapshot:108,test_str_to_bool:5,test_suit:63,test_weinschel_8320:4,test_writing_metadata:5,test_writing_unsupported_types_to_hdf5:5,testagilent_e8527d:75,testcas:63,testhdf5_format:5,testkeysight_m3201a:68,testkeysight_m3300a:68,testmetadat:108,testsd_modul:68,testsweep:[0,11,12,15,20,23],testweinschel_8320:84,text:[3,15,79,108,111,119],texttestrunn:5,textual:119,tg_thru_0db:81,tg_thru_20db:81,than:[1,3,4,28,29,31,36,52,55,108,114,119],thank:108,thebrain:108,thei:[2,3,4,6,10,11,18,20,23,27,42,43,52,59,65,77,82,83,108,111,116,119],them:[1,2,3,4,9,10,22,24,28,29,42,63,76,78,82,83,108,112,116,119,120],theme:89,theoret:119,therebi:25,therefor:[3,4,26,30],thermometri:34,theta:19,theta_measur:19,thi:[0,1,2,3,4,6,7,9,10,11,12,14,15,18,19,20,22,23,24,26,27,28,29,30,31,32,33,35,36,37,39,42,43,45,46,47,48,49,50,51,52,54,55,58,60,61,63,64,65,66,67,68,70,71,74,75,76,77,78,79,80,81,82,83,84,85,86,88,90,91,97,99,108,109,111,114,115,116,118,119,120],thing:[3,10,11,18,27,47,52,57,58,59,61,68,75,84,108,111,113,115,119,120],think:[108,116,119],thinksr:82,third:[26,119],those:[4,6,9,42,45,47,111,119],though:[1,3,55,57,58,119],thread:[71,119],thread_map:15,threadpoolexecutor:120,three:[1,9,28,29,36,48,57,76,83,119],through:[11,28,29,33,36,42,43,108,115,119,120],throughout:22,thu:[108,119],tick:[1,18],tight_layout:[1,31,33],tim:25,time:[1,3,8,9,10,11,12,14,15,16,17,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,45,46,52,55,57,58,64,67,68,71,74,81,82,83,85,108,112,114,119,120],time_const:16,timebase_posit:[26,30],timebase_rang:[26,30],timeit:[13,14],timeout:[8,15,16,18,20,22,24,33,36,49,60,68,78,80,82,83],timeout_tick:[18,65],timer:[20,23],timestamp:[114,119],titl:1,tmpfile:[34,78],to_setpoint:78,to_zero:78,toc:11,todo:[42,68,70,71,74,75,82,108],togeth:[1,6,33,80,119],toggl:21,tolist:[3,4],ton:3,too:[3,31,37,54,55,64,80,108],took:35,tool:[1,108],top:[1,89],toplevel:105,tortur:108,total:[3,9,31],touch:108,toymodel:[7,10],tps1:32,tps1_scope_measurement_0:32,tps1_scope_measurement_1:32,tps2012:[63,112],tps2012channel:83,tps:32,trace:[1,4,11,31,32,36,65,66,68,74,80,89,90,112],trace_point:22,traceback:[2,15,20,23,114],tracedata:22,tracenotreadi:[66,68,83],tracesetpointschang:68,track:[65,67,81,119],trail:108,transer:18,transfer:[33,83],transfer_offset:[18,65],transform:[19,47,55,61,65],translat:[3,46,74],transmiss:80,trcl:82,treat:[67,91,119],tree:[112,115],trg:[14,15],trig:[36,82,83],trig_engine_j:18,trig_engine_k:18,trig_engine_op_j:18,trig_slope_posit:18,trig_wait:[33,83],trigger:[15,18,25,32,33,36,74,80,83,106,112],trigger_count:14,trigger_delai:[18,65],trigger_edge_slop:[26,30],trigger_edge_sourc:26,trigger_en:26,trigger_engine1:[18,65],trigger_engine2:[18,65],trigger_input_imped:83,trigger_input_polar:83,trigger_input_slop:83,trigger_input_threshold:83,trigger_level1:[18,65],trigger_level2:[18,65],trigger_level:[26,30,32],trigger_mod:82,trigger_oper:[18,65],trigger_slop:15,trigger_slope1:[18,65],trigger_slope2:[18,65],trigger_sourc:[14,15,30,32,83],trigger_source1:[18,65],trigger_source2:[18,65],trigger_typ:[30,32],triton1_thermometri:34,triton:[63,103,112],trival:120,trivial:[1,4,108],trivialdictionari:65,troubleshoot:119,truncat:108,trust:55,truthi:[11,38],ts_start:7,tst:5,tstart:[20,23],tudelft:71,tune:[71,108],tupl:[1,9,33,36,37,39,42,47,54,70,74,83,89,90],turn:[3,14,24,30,31,35,36,78,83,85],turoti:11,tutori:[6,9,22,30,112,118],two:[1,3,9,11,13,14,16,24,31,32,33,42,55,66,70,74,76,81,82,83,108,112,120],txt:71,type:[0,1,2,5,7,9,11,12,13,14,15,16,17,18,20,22,23,24,26,30,31,32,33,36,39,46,47,50,63,64,65,66,71,74,82,83,105,108,115,116,119,120],typeerror:[15,38,58,83],typic:[42,108,112,119],typo:108,ufh:103,uhf:[74,112],unambigu:3,unassign:[28,29],unavail:64,uncanningli:4,uncommit:65,uncondit:83,undefin:[25,64],under:83,underli:[4,111,119],underscor:108,understand:[108,119],undesir:11,undo:83,unfortun:68,unga:[2,5,116],uni:71,unicorn:10,unimport:83,union:[39,42,47,50,55,57,63,66],uniqu:[42,68],unit:[0,3,4,7,8,9,11,18,23,28,29,36,37,40,42,54,55,62,65,66,71,74,78,80,82,85,102,103,108,119,120],unitless:[37,54,55],unittest:[5,63,108],unittest_data:5,unknown:3,unless:[28,29,42,108],unlik:[36,37,54,63],unload:83,unlock:[78,80],unnecessari:9,unrecogn:64,unrel:119,unsav:119,unsign:83,until:[3,33,55,78,119],unus:88,updat:[1,2,4,8,11,15,22,28,29,31,32,36,37,41,54,55,65,66,70,74,78,80,83,85,89,90,91,106,111,119],update_acquisitionkwarg:[18,65],update_curr:[15,28,29,70],update_display_off:31,update_display_on:31,update_measurement_en:85,update_snapshot:91,upfront:[37,54],upgrad:36,upload:[13,33,83],upon:[1,25,28,29,63,82],uppercas:78,ups:19,upsteam:2,upto:83,usag:[9,45,58,68,78,83,109,112,118],usb:[3,4],usb_sa124b:63,use:[0,1,2,3,4,6,9,11,13,22,26,31,32,33,36,42,45,47,48,55,57,58,60,61,63,65,68,70,71,75,76,77,78,82,83,84,90,108,111,112,113,115,116,118,119,120],use_lock:71,use_thread:15,used:[3,4,9,11,19,21,24,37,39,42,45,47,48,54,55,57,58,63,65,68,70,71,74,75,77,78,80,81,82,83,87,91,111,114,119],useful:[1,4,9,36,68,108,119],user:[1,2,3,5,7,11,15,20,31,33,55,60,64,65,74,82,83,114,115,116,119],usernam:108,usersadministratordocumentsdevelopmentqcodes_devqcodesinstrumentparamet:17,usersqcod:36,userwarn:[17,31,36],uses:[1,3,9,55,63,64,81,82,111,116,119],using:[1,3,11,19,24,28,29,33,36,41,46,48,60,66,68,71,76,81,83,108,111,114,119],usual:[3,11,26,50,51,70,83,119],util:[0,3,4,5,15,20,23,68,97,108,120],utilis:4,utility_freq:68,utopia:108,v11:32,v_amp_in:82,v_in:82,v_out:82,v_rang:[28,29],vaild:41,val:[0,3,4,7,9,11,36,55,56,57,58,65,83,85,120],val_map:[3,55,56],valid:[0,2,3,4,9,11,15,20,23,31,37,41,47,54,55,57,58,71,83,87,89,97,103,104,105,108,109,116,119,120],validate_al:47,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,9,11,12,13,15,16,18,19,20,22,23,24,28,29,31,33,36,37,40,41,42,45,47,48,52,54,55,57,58,62,63,64,65,66,67,68,70,71,74,76,78,80,82,83,111,119,120],valuabl:108,value_round:71,value_typ:2,valueerror:[3,4,35,39,61,63,68,74,75,83,84],valv:78,vari:[11,22,37,54,119],variabl:[48,55,68,82,83,108,111,112,116,119],variou:[108,111],vbw:81,vector:[19,76,119],vendor:[3,4,7,8,11,16,18,22,23,24,65,78,82],ver1:16,verbos:[5,11,63,66,68,70,80,83,108],verbose_channel:11,veri:[4,28,29,36,65,68,70,119],verifi:[3,19,35,82],vernier:82,versa:[19,24,36],version:[2,3,9,11,30,32,64,65,67,68,70,71,75,78,80,81,82,83,101,114,115,120],versu:[83,112],vertic:[32,36,80,112],vi_error_rsrc_nfound:119,vi_error_tmo:15,via:[1,3,10,29,36,50,51,69,77,82,83,91,112,119],vibuf:15,vice:[24,36],videobandwidth:81,view:[30,31,108],vipuint32:15,virtual:[3,76,77,80,82,115,120],virtualivvi:120,vis:19,visa:[3,4,15,33,55,60,66,67,68,69,70,71,75,78,79,80,82,83,84,85,119],visa_handl:[15,60,67,78],visainstru:[4,66,67,68,69,70,71,75,78,79,80,82,83,84,85,97,111,112,119],visaioerror:15,visalib:[4,15,60],visess:15,visibl:[28,29],vision:108,visit:108,visual:114,visualis:33,viuint32:15,viwrit:15,vna:[22,31,81],vna_:31,vna_output_power_set:22,vna_paramet:[31,80],vna_s11:31,vna_s11_magnitud:31,vna_s11_phas:31,vna_s11_power_set:31,vna_s11_trac:31,vna_s12_trac:31,vna_s13_trac:31,vna_s14_trac:31,vna_s21_trac:31,vna_s22_trac:31,vna_s23_trac:31,vna_s24_trac:31,vna_s31_trac:31,vna_s32_trac:31,vna_s33_trac:31,vna_s34_trac:31,vna_s41_trac:31,vna_s42_trac:31,vna_s43_trac:31,vna_s44_trac:31,vna_trac:22,vogel:108,volatg:35,volt:[3,8,11,12,13,14,20,23,24,35,36,65,67,71,82,83,85],volt_0:23,volt_1:23,volt_:82,volt_set:23,voltag:[3,4,8,9,11,12,13,14,21,24,28,29,35,55,63,67,68,70,71,77,82,83,85,103,104,111,119],voltage_limit:35,voltage_rang:35,voltage_range_statu:70,voltage_raw:[3,77,82],voltagedict:82,voltagedivid:63,voltageparamet:82,voltmet:[68,119],volunt:108,vpp:25,vrang:[3,15,28,29,70],vsd:[6,7,10],w8320_1:3,wai:[1,2,3,4,6,10,11,16,18,33,36,39,55,83,89,108,119,120],wait:[4,7,11,14,22,33,47,52,55,66,78,83,97,111,119,120],wait_trigg:83,wait_valu:83,walk:120,wall:31,want:[0,1,2,3,6,19,21,26,30,31,32,36,37,43,54,63,64,65,70,108,109,111,113,116,118,119,120],warn:[2,3,5,17,19,30,31,33,36,52,64,65,74,102,116],wav:70,wave:[26,30,32],waveform:[9,25,26,30,68,75,79,83,103,112,119],waveform_nam:83,waveformgenerator_33xxx:68,web:[36,74],week:[108,113],weight:2,wein_sim:4,weinschel:[3,4,63],weinschel_8320:[3,63,112],welcom:[108,113],well:[1,4,6,30,36,39,46,67,68,75,78,82,84,108,119],went:19,were:[42,43,55,65,99],wfm001ch1:83,wfm002ch1:83,wfm1ch1:83,wfm1ch2:83,wfm2ch1:83,wfm2ch2:83,wfm:[33,83],wfmname:[33,83],wfname_l:83,wfs1:83,wfs2:83,wfs:83,what:[2,10,11,19,28,29,33,36,49,52,54,57,58,60,67,78,83,85,97,108,112,116,119,120],whatev:[14,65],wheel:108,when:[1,3,4,7,9,19,24,25,28,29,31,32,33,35,37,38,39,42,45,54,55,58,59,63,64,65,67,68,70,71,74,75,77,82,83,84,88,108,114,119,120],whenev:[82,83,119],where:[3,4,9,11,28,29,37,43,46,54,57,58,65,67,68,71,74,77,78,82,83,86,88,89,108,119,120],wherea:14,whether:[21,30,46,48,49,55,70,76,79,83,108,119],which:[1,2,3,4,6,9,11,19,31,33,36,37,39,41,42,43,45,46,48,51,52,54,55,57,59,63,64,65,68,70,78,80,82,83,86,88,91,108,111,116,119,120],whish:0,white:[89,108],whitespac:48,who:[108,113],whole:[3,6,9,48,54,77,82,108,111,119],whose:[42,82,91,119,120],why:[36,108],widget:[1,10,18,20,23,27,101],width:[89,90],william:[15,36,108],williamhpnielsen:[70,82],win32:64,win:2,window:[3,7,10,18,20,23,27,31,65,78,81,83,90,106,115],window_titl:89,windowtitl:23,wish:83,with_bg_task:[1,11,15,22],within:[1,3,18,26,39,42,59,61,65,74,108,114,119],without:[19,21,35,80,105,112,116,119],won:[11,31],wonder:36,word:[112,113],work:[2,3,4,6,18,27,35,43,44,68,71,75,79,80,82,83,84,86,88,108,114,115,116,119,120],workflow:[112,114],world:[65,108,114],worri:35,wors:108,would:[1,2,9,10,18,20,23,27,45,68,80,108,113,119],wouldn:4,wrap:[9,36,44,83,119],wrapper:[66,71,78,80],write:[2,3,4,14,15,20,25,43,46,47,48,49,60,64,67,70,71,78,82,83,85,88,108,118,119],write_confirm:49,write_copi:119,write_metadata:46,write_modul:82,write_period:[43,88],write_pin:64,write_port:64,write_raw:15,written:[1,48,65,68,78,83],wrong:[19,35,67,108],x_actn:27,x_fld:27,x_fldc:27,x_length:1,x_offset:16,x_rate:27,x_setpoint:27,x_val:[0,120],xlabel:19,xml:108,xrm:36,xxx:67,y_length:1,y_offset:16,y_val:[0,120],yai:101,yaml:112,yeah:23,year:108,yes:119,yet:[26,36,46,68,108,119],yield:[4,52,82],ylabel:19,yml:115,yokogawa:[35,63,102],yolo:2,you:[0,1,2,3,4,6,9,10,11,19,24,26,30,31,32,33,36,37,41,42,43,44,46,47,52,54,55,57,58,63,65,70,77,82,83,86,88,90,109,111,112,113,115,116,118,119,120],your:[3,4,11,26,36,41,47,63,77,82,108,112,113,115,116,119,120],yourself:[65,82],yrm:36,yscale:36,z_val:[0,120],zero:[3,19,26,28,29,33,37,54,55,71,74,78,83],zip:[15,19],ziuhfli:[36,63],ziuhfli_rrm:36,ziuhfli_sig:36,ziuhfli_xrm:36,ziuhfli_yrm:36,zn20:112,znb20:63,znb4:80,znb8:[31,80,105],znb:[31,63],znbchannel:80,zone:19,zoom:74,zurich:36},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","Datasaving Examples","Measure without a Loop","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","Lets capture by sending triggers. We use the IVVI to send triggers.","Qcodes example ATS_ONWORK","QCoDeS example with AMI430","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with HP8753D","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Example Notebook for Keysight Infiniium Oscilloscopes","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","<no title>","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":13,"33500b":25,"34400a":20,"34411a":12,"34465a":[12,14],"break":[100,101,102,103],"class":[3,97,98,99],"default":116,"function":[47,97,98,99],"import":[11,12,13,26,33],"new":[100,101,102,103,104,105,106,108],"public":99,"while":22,ATS:65,IPS:27,Not:4,THE:32,THERE:33,That:4,The:[4,11],Using:[2,25,36,116],abort:117,acquir:[22,32],acquisit:[16,26,30,32],action:[11,99],adding:3,advantech:64,aggreg:0,agil:[12,20,75],agilent_34400a:75,alazartech:65,all:6,american_magnet:76,ami430:[19,76],arrai:6,arrayparamet:[9,37],async:120,ats9870:65,ats_acquisition_control:65,ats_onwork:18,attent:[28,29],avanc:120,averag:30,awg5014:[33,83],awg5200:83,awg520:83,awg:33,awgfilepars:83,base:3,basic:[11,24,25,28,29,36,112],benchmark:[13,14,15,31,112],bonu:4,breakif:38,buffer:[15,16],bug:108,burst:25,can:11,captur:17,caution:36,chang:[2,100,101,102,103],changelog:[100,101,102,103,104,105,106,107],channel:[3,28,29,31],channellist:39,chat:113,clever:108,code:[108,110],combin:[0,62,120],combinedparamet:40,command:92,commit:108,commun:109,comprehens:1,config:[2,41,99,116],configur:[2,116],congratul:4,content:[11,33,36,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,108],continu:30,contribut:108,core:2,creat:[3,4,26],curv:[24,32],custom:[2,3],d5a:71,data:[5,11,26,99],dataarrai:42,dataformat:5,datasav:5,dataset:[43,119],decadac:[21,67],deferred_oper:93,defin:11,demo:6,demodul:36,depend:26,develop:108,devic:63,dg4000:79,diskio:44,dll:3,driver:[3,112,120],dummi:5,dynam:3,e8267c:75,e8527d:75,enter:115,error:25,event:1,exampl:[3,4,5,10,11,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,112,119],experi:2,f1d:71,familiar:108,faq:117,fast:24,featur:108,file:[4,33,116],fix:[100,101,102,103],format:[10,108],formatloc:45,formatt:46,from:[5,32],gener:5,get:[13,14,33,113,115],git:108,global:11,gnuplotformat:48,gs200:85,guid:[109,118],handl:[1,25],harvard:67,help:113,helper:94,hierarchi:111,horizont:30,hour:113,how:[1,4,117],hp33210a:75,hp8133a:66,hp8753d:[22,66],hp_83650a:66,ilm200:78,improv:[100,101,102,103,104,105,106],includ:4,individu:36,infiniium:[26,68],initialis:[13,33],input:[30,36],instal:115,instanti:[6,11],instrument:[3,4,5,6,8,11,26,50,99,111,119,120],instrument_driv:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],instrumentchannel:51,interact:11,interfac:1,introduct:119,involv:3,ipinstru:49,ips120:78,ithaco:[23,77],ithaco_1211:77,ivvi:[17,71],keithlei:24,keithley_2000:83,keithley_2400:83,keithley_2600:83,keithley_2600_channel:83,keithley_2700:83,kelvinox:78,keysight:[12,14,15,25,26,68],keysight_33500b:68,keysight_33500b_channel:68,keysight_34465a:68,keysight_e8267d:68,keysightagilent_33xxx:68,lakeshor:69,lazi:33,let:17,linkag:111,list:[16,33],live:11,load:11,load_data:86,locat:[10,11],loop:[5,6,11,12,52,99,119],m3201a:68,m3300a:68,m4i:72,magnet:27,make:33,manual:3,manualparamet:53,matplot:[1,90],matplotlib:1,measur:[6,11,22,36,87,99,117,119,120],mercuri:27,mercuryip:78,messag:108,meta:120,metadata:[7,8,95],misc:99,mode:[25,33],model_336:69,modul:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],more:[3,113,116],multiparamet:[9,54],multipl:11,n51x1:68,need:6,new_data:88,note:108,notebook:26,nplc:13,object:111,offic:113,one:12,onli:6,oper:24,organ:3,oscilloscop:[26,30,32],out:30,output:[6,11,36],overview:[28,29,119],oxford:78,packag:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],paramet:[0,3,4,9,16,55,111,119,120],part:12,pcie_1751:64,phase:114,plan:114,plot:[1,11,89,90,99],pre:14,predefin:31,prepar:26,prerequisit:36,privat:98,project:114,provid:11,pull:108,push:108,py_head:73,pyqtgraph:89,pyvisa:4,qcmatplotlib:90,qcode:[2,3,9,10,11,12,16,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,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,91,92,93,94,95,96,100,101,102,103,104,105,106,112,114,115,116,117],qdac:[15,28,29,70],qdac_channel:[29,70],qdev:70,qtplot:[1,89],qutech:71,raw:12,read:[12,30],realli:108,record:30,reg:73,remov:3,report:108,request:108,requir:115,respons:119,result:[13,14],rigol:79,rohd:[30,31],rohde_schwarz:80,rough:111,rto1000:80,rto:30,run:[5,30,33,108,117],s5i:71,sampl:36,save:[2,116],schwarz:[30,31],scope:36,script:13,send:[17,33],sensor:[28,29],seri:30,set:[11,13,14,28,29,30,32,36],setup:[12,26,108],sg384:82,sgs100a:80,shot:15,signal:[30,36],signal_hound:81,sim928:82,simpl:[0,1,3],simul:[3,4,120],singl:[15,22],smr40:80,softwar:14,some:33,sourc:110,spcerr:73,spectrum:[72,73],sr560:82,sr830:[16,82],sr860:82,sr865:82,sr86x:82,standardparamet:56,stanford_research:82,start:[5,115],station:[91,99,111],stuff:15,style:108,submodul:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],subpackag:[63,72],subplot:1,summari:14,sweep:[1,12,22,120],sweeper:36,sweepfixedvalu:57,sweepvalu:[58,111],sync:15,tabl:[11,33,36],task:59,tektronix:[32,33,83],temperatur:[28,29],test:[4,5,63,108],test_suit:[68,75,84],them:33,time:13,todo:[52,58,78,80,81,83,111,116,120],tps2012:[32,83],trace:[22,26,30],trigger:[14,17,26,30],triton:[34,78],tutori:[11,120],two:12,typic:11,uhf:36,updat:116,usag:[25,28,29,36,108,115,117],usb_sa124b:81,use:17,user:118,using:112,util:[92,93,94,95,96,99],valid:[96,111],valu:116,variabl:2,versu:12,vertic:30,via:33,visainstru:[3,60],wait:61,waveform:33,weinschel:84,weinschel_8320:[4,84],what:[3,4],without:[6,31],word:36,workflow:11,write:120,yaml:4,yokogawa:85,you:108,your:2,ziuhfli:74,zn20:31,znb20:80,znb:80}}) \ No newline at end of file +Search.setIndex({docnames:["_notebooks/Combined Parameters","_notebooks/Comprehensive Plotting How-To","_notebooks/Configuring_QCoDeS","_notebooks/Creating Instrument Drivers","_notebooks/Creating Simulated PyVISA Instruments","_notebooks/Datasaving examples","_notebooks/Measure without a Loop","_notebooks/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_with_SR86x_with_buffered_readout","_notebooks/driver_examples/Qcodes example ATS_ONWORK","_notebooks/driver_examples/Qcodes example with Agilent 34400A","_notebooks/driver_examples/Qcodes example with Decadac","_notebooks/driver_examples/Qcodes example with Ithaco","_notebooks/driver_examples/Qcodes example with Keithley 2600","_notebooks/driver_examples/Qcodes example with Keysight 33500B","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet)","_notebooks/driver_examples/Qcodes example with QDac","_notebooks/driver_examples/Qcodes example with QDac_channels","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB","_notebooks/driver_examples/Qcodes example with TPS2012","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C","_notebooks/driver_examples/Qcodes example with Triton","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx","_notebooks/driver_examples/Qcodes example with ZI UHF-LI","_notebooks/driver_examples/Qcodes_example_with_AMI430","_notebooks/driver_examples/Qcodes_example_with_HP8753D","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope","api/generated/qcodes.ArrayParameter","api/generated/qcodes.BreakIf","api/generated/qcodes.ChannelList","api/generated/qcodes.CombinedParameter","api/generated/qcodes.Config","api/generated/qcodes.DataArray","api/generated/qcodes.DataSet","api/generated/qcodes.DiskIO","api/generated/qcodes.FormatLocation","api/generated/qcodes.Formatter","api/generated/qcodes.Function","api/generated/qcodes.GNUPlotFormat","api/generated/qcodes.IPInstrument","api/generated/qcodes.Instrument","api/generated/qcodes.InstrumentChannel","api/generated/qcodes.Loop","api/generated/qcodes.ManualParameter","api/generated/qcodes.MultiParameter","api/generated/qcodes.Parameter","api/generated/qcodes.StandardParameter","api/generated/qcodes.SweepFixedValues","api/generated/qcodes.SweepValues","api/generated/qcodes.Task","api/generated/qcodes.VisaInstrument","api/generated/qcodes.Wait","api/generated/qcodes.combine","api/generated/qcodes.instrument_drivers","api/generated/qcodes.instrument_drivers.Advantech","api/generated/qcodes.instrument_drivers.AlazarTech","api/generated/qcodes.instrument_drivers.HP","api/generated/qcodes.instrument_drivers.Harvard","api/generated/qcodes.instrument_drivers.Keysight","api/generated/qcodes.instrument_drivers.Lakeshore","api/generated/qcodes.instrument_drivers.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/Creating Simulated PyVISA Instruments.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_with_SR86x_with_buffered_readout.rst","_notebooks/driver_examples/Qcodes example ATS_ONWORK.rst","_notebooks/driver_examples/Qcodes example with Agilent 34400A.rst","_notebooks/driver_examples/Qcodes example with Decadac.rst","_notebooks/driver_examples/Qcodes example with Ithaco.rst","_notebooks/driver_examples/Qcodes example with Keithley 2600.rst","_notebooks/driver_examples/Qcodes example with Keysight 33500B.rst","_notebooks/driver_examples/Qcodes example with Mercury IPS (Magnet).rst","_notebooks/driver_examples/Qcodes example with QDac.rst","_notebooks/driver_examples/Qcodes example with QDac_channels.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope.rst","_notebooks/driver_examples/Qcodes example with Rohde Schwarz ZNB.rst","_notebooks/driver_examples/Qcodes example with TPS2012.rst","_notebooks/driver_examples/Qcodes example with Tektronix AWG5014C.rst","_notebooks/driver_examples/Qcodes example with Triton.rst","_notebooks/driver_examples/Qcodes example with Yokogawa GS2xx.rst","_notebooks/driver_examples/Qcodes example with ZI UHF-LI.rst","_notebooks/driver_examples/Qcodes_example_with_AMI430.rst","_notebooks/driver_examples/Qcodes_example_with_HP8753D.rst","_notebooks/driver_examples/Qcodes_example_with_Keysight_Infiniium_Oscilloscope.rst","api/generated/qcodes.ArrayParameter.rst","api/generated/qcodes.BreakIf.rst","api/generated/qcodes.ChannelList.rst","api/generated/qcodes.CombinedParameter.rst","api/generated/qcodes.Config.rst","api/generated/qcodes.DataArray.rst","api/generated/qcodes.DataSet.rst","api/generated/qcodes.DiskIO.rst","api/generated/qcodes.FormatLocation.rst","api/generated/qcodes.Formatter.rst","api/generated/qcodes.Function.rst","api/generated/qcodes.GNUPlotFormat.rst","api/generated/qcodes.IPInstrument.rst","api/generated/qcodes.Instrument.rst","api/generated/qcodes.InstrumentChannel.rst","api/generated/qcodes.Loop.rst","api/generated/qcodes.ManualParameter.rst","api/generated/qcodes.MultiParameter.rst","api/generated/qcodes.Parameter.rst","api/generated/qcodes.StandardParameter.rst","api/generated/qcodes.SweepFixedValues.rst","api/generated/qcodes.SweepValues.rst","api/generated/qcodes.Task.rst","api/generated/qcodes.VisaInstrument.rst","api/generated/qcodes.Wait.rst","api/generated/qcodes.combine.rst","api/generated/qcodes.instrument_drivers.rst","api/generated/qcodes.instrument_drivers.Advantech.rst","api/generated/qcodes.instrument_drivers.AlazarTech.rst","api/generated/qcodes.instrument_drivers.HP.rst","api/generated/qcodes.instrument_drivers.Harvard.rst","api/generated/qcodes.instrument_drivers.Keysight.rst","api/generated/qcodes.instrument_drivers.Lakeshore.rst","api/generated/qcodes.instrument_drivers.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__:[37,1,1,""]},"qcodes.BreakIf":{__init__:[38,1,1,""]},"qcodes.ChannelList":{__init__:[39,1,1,""]},"qcodes.CombinedParameter":{__init__:[40,1,1,""]},"qcodes.Config":{__init__:[41,1,1,""],config_file_name:[41,2,1,""],current_config:[41,2,1,""],current_config_path:[41,2,1,""],current_schema:[41,2,1,""],cwd_file_name:[41,2,1,""],default_file_name:[41,2,1,""],env_file_name:[41,2,1,""],home_file_name:[41,2,1,""],schema_cwd_file_name:[41,2,1,""],schema_default_file_name:[41,2,1,""],schema_env_file_name:[41,2,1,""],schema_file_name:[41,2,1,""],schema_home_file_name:[41,2,1,""]},"qcodes.DataArray":{__init__:[42,1,1,""]},"qcodes.DataSet":{__init__:[43,1,1,""],background_functions:[43,2,1,""]},"qcodes.DiskIO":{__init__:[44,1,1,""]},"qcodes.FormatLocation":{__init__:[45,1,1,""]},"qcodes.Formatter":{__init__:[46,1,1,""]},"qcodes.Function":{__init__:[47,1,1,""]},"qcodes.GNUPlotFormat":{__init__:[48,1,1,""]},"qcodes.IPInstrument":{__init__:[49,1,1,""]},"qcodes.Instrument":{__init__:[50,1,1,""],functions:[50,2,1,""],name:[50,2,1,""],parameters:[50,2,1,""],submodules:[50,2,1,""]},"qcodes.InstrumentChannel":{__init__:[51,1,1,""],functions:[51,2,1,""],name:[51,2,1,""],parameters:[51,2,1,""]},"qcodes.Loop":{__init__:[52,1,1,""]},"qcodes.ManualParameter":{__init__:[53,1,1,""]},"qcodes.MultiParameter":{__init__:[54,1,1,""]},"qcodes.Parameter":{__init__:[55,1,1,""]},"qcodes.StandardParameter":{__init__:[56,1,1,""]},"qcodes.SweepFixedValues":{__init__:[57,1,1,""]},"qcodes.SweepValues":{__init__:[58,1,1,""]},"qcodes.Task":{__init__:[59,1,1,""]},"qcodes.VisaInstrument":{__init__:[60,1,1,""],visa_handle:[60,2,1,""]},"qcodes.Wait":{__init__:[61,1,1,""]},"qcodes.instrument_drivers":{Advantech:[64,4,0,"-"],AlazarTech:[65,4,0,"-"],HP:[66,4,0,"-"],Harvard:[67,4,0,"-"],Keysight:[68,4,0,"-"],Lakeshore:[69,4,0,"-"],QDev:[70,4,0,"-"],QuTech:[71,4,0,"-"],Spectrum:[72,4,0,"-"],ZI:[74,4,0,"-"],agilent:[75,4,0,"-"],american_magnetics:[76,4,0,"-"],devices:[63,4,0,"-"],ithaco:[77,4,0,"-"],oxford:[78,4,0,"-"],rigol:[79,4,0,"-"],rohde_schwarz:[80,4,0,"-"],signal_hound:[81,4,0,"-"],stanford_research:[82,4,0,"-"],tektronix:[83,4,0,"-"],test:[63,4,0,"-"],weinschel:[84,4,0,"-"],yokogawa:[85,4,0,"-"]},"qcodes.instrument_drivers.Advantech":{PCIE_1751:[64,4,0,"-"]},"qcodes.instrument_drivers.Advantech.PCIE_1751":{Advantech_PCIE_1751:[64,0,1,""],DAQNaviException:[64,5,1,""],DAQNaviWarning:[64,5,1,""]},"qcodes.instrument_drivers.Advantech.PCIE_1751.Advantech_PCIE_1751":{ERRORMSG:[64,2,1,""],check:[64,1,1,""],close:[64,1,1,""],get_idn:[64,1,1,""],port_count:[64,1,1,""],read_pin:[64,1,1,""],read_port:[64,1,1,""],write_pin:[64,1,1,""],write_port:[64,1,1,""]},"qcodes.instrument_drivers.AlazarTech":{ATS9870:[65,4,0,"-"],ATS:[65,4,0,"-"],ATS_acquisition_controllers:[65,4,0,"-"]},"qcodes.instrument_drivers.AlazarTech.ATS":{AcquisitionController:[65,0,1,""],AlazarParameter:[65,0,1,""],AlazarTech_ATS:[65,0,1,""],Buffer:[65,0,1,""],TrivialDictionary:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AcquisitionController":{_alazar:[65,2,1,""],handle_buffer:[65,1,1,""],post_acquire:[65,1,1,""],pre_acquire:[65,1,1,""],pre_start_capture:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarParameter":{get:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.AlazarTech_ATS":{acquire:[65,1,1,""],channels:[65,2,1,""],clear_buffers:[65,1,1,""],config:[65,1,1,""],dll_path:[65,2,1,""],find_boards:[65,6,1,""],get_board_info:[65,6,1,""],get_idn:[65,1,1,""],get_sample_rate:[65,1,1,""],signal_to_volt:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS.Buffer":{__del__:[65,1,1,""],free_mem:[65,1,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS9870":{AlazarTech_ATS9870:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers":{Demodulation_AcquisitionController:[65,0,1,""]},"qcodes.instrument_drivers.AlazarTech.ATS_acquisition_controllers.Demodulation_AcquisitionController":{do_acquisition:[65,1,1,""],fit:[65,1,1,""],handle_buffer:[65,1,1,""],post_acquire:[65,1,1,""],pre_acquire:[65,1,1,""],pre_start_capture:[65,1,1,""],update_acquisitionkwargs:[65,1,1,""]},"qcodes.instrument_drivers.HP":{HP8133A:[66,4,0,"-"],HP8753D:[66,4,0,"-"],HP_83650A:[66,4,0,"-"]},"qcodes.instrument_drivers.HP.HP8133A":{HP8133A:[66,0,1,""]},"qcodes.instrument_drivers.HP.HP8753D":{HP8753D:[66,0,1,""],HP8753DTrace:[66,0,1,""],HPIntParser:[66,3,1,""],TraceNotReady:[66,5,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753D":{invalidate_trace:[66,1,1,""],reset:[66,1,1,""],run_N_times:[66,1,1,""],run_continously:[66,1,1,""],startup:[66,1,1,""]},"qcodes.instrument_drivers.HP.HP8753D.HP8753DTrace":{get_raw:[66,1,1,""],prepare_trace:[66,1,1,""]},"qcodes.instrument_drivers.HP.HP_83650A":{HP_83650A:[66,0,1,""],parsestr:[66,3,1,""]},"qcodes.instrument_drivers.HP.HP_83650A.HP_83650A":{print_all:[66,1,1,""],print_modstatus:[66,1,1,""],reset:[66,1,1,""]},"qcodes.instrument_drivers.Harvard":{Decadac:[67,4,0,"-"]},"qcodes.instrument_drivers.Harvard.Decadac":{DACException:[67,5,1,""],DacChannel:[67,0,1,""],DacReader:[67,0,1,""],DacSlot:[67,0,1,""],Decadac:[67,0,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacChannel":{ask:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.DacSlot":{SLOT_MODE_DEFAULT:[67,2,1,""],ask:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Harvard.Decadac.Decadac":{DAC_CHANNEL_CLASS:[67,2,1,""],DAC_SLOT_CLASS:[67,2,1,""],__repr__:[67,1,1,""],_ramp_state:[67,2,1,""],_ramp_time:[67,2,1,""],connect_message:[67,1,1,""],get_idn:[67,1,1,""],ramp_all:[67,1,1,""],set_all:[67,1,1,""],write:[67,1,1,""]},"qcodes.instrument_drivers.Keysight":{Infiniium:[68,4,0,"-"],KeysightAgilent_33XXX:[68,4,0,"-"],Keysight_33500B:[68,4,0,"-"],Keysight_33500B_channels:[68,4,0,"-"],Keysight_34465A:[68,4,0,"-"],Keysight_E8267D:[68,4,0,"-"],M3201A:[68,4,0,"-"],M3300A:[68,4,0,"-"],N51x1:[68,4,0,"-"],test_suite:[68,4,0,"-"]},"qcodes.instrument_drivers.Keysight.Infiniium":{Infiniium:[68,0,1,""],InfiniiumChannel:[68,0,1,""],RawTrace:[68,0,1,""],TraceNotReady:[68,5,1,""],TraceSetPointsChanged:[68,5,1,""]},"qcodes.instrument_drivers.Keysight.Infiniium.RawTrace":{get:[68,1,1,""],prepare_curvedata:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX":{OutputChannel:[68,0,1,""],SyncChannel:[68,0,1,""],WaveformGenerator_33XXX:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.KeysightAgilent_33XXX.WaveformGenerator_33XXX":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B":{Keysight_33500B:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B.Keysight_33500B":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels":{KeysightChannel:[68,0,1,""],Keysight_33500B_Channels:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_33500B_channels.Keysight_33500B_Channels":{flush_error_queue:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A":{ArrayMeasurement:[68,0,1,""],Keysight_34465A:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.ArrayMeasurement":{get:[68,1,1,""],prepare:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_34465A.Keysight_34465A":{NPLC_list:[68,2,1,""],flush_error_queue:[68,1,1,""],model:[68,2,1,""],ranges:[68,2,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D":{Keysight_E8267D:[68,0,1,""],parse_on_off:[68,3,1,""]},"qcodes.instrument_drivers.Keysight.Keysight_E8267D.Keysight_E8267D":{off:[68,1,1,""],on:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.M3201A":{Keysight_M3201A:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.M3300A":{M3300A_AWG:[68,0,1,""],M3300A_DIG:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1":{N51x1:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.N51x1.N51x1":{get_idn:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite":{TestKeysight_M3201A:[68,0,1,""],TestKeysight_M3300A:[68,0,1,""],TestSD_Module:[68,0,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3201A":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_PXI_trigger:[68,1,1,""],test_channel_amplitude:[68,1,1,""],test_channel_frequency:[68,1,1,""],test_channel_offset:[68,1,1,""],test_channel_phase:[68,1,1,""],test_channel_wave_shape:[68,1,1,""],test_chassis_and_slot:[68,1,1,""],test_chassis_number:[68,1,1,""],test_clock_frequency:[68,1,1,""],test_open_close:[68,1,1,""],test_serial_number:[68,1,1,""],test_slot_number:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestKeysight_M3300A":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_PXI_trigger:[68,1,1,""],test_channel_amplitude:[68,1,1,""],test_channel_frequency:[68,1,1,""],test_channel_offset:[68,1,1,""],test_channel_phase:[68,1,1,""],test_channel_wave_shape:[68,1,1,""],test_chassis_and_slot:[68,1,1,""],test_chassis_number:[68,1,1,""],test_clock_frequency:[68,1,1,""],test_open_close:[68,1,1,""],test_serial_number:[68,1,1,""],test_slot_number:[68,1,1,""]},"qcodes.instrument_drivers.Keysight.test_suite.TestSD_Module":{driver:[68,2,1,""],setUpClass:[68,6,1,""],test_chassis_and_slot:[68,1,1,""]},"qcodes.instrument_drivers.Lakeshore":{Model_336:[69,4,0,"-"]},"qcodes.instrument_drivers.Lakeshore.Model_336":{Model_336:[69,0,1,""],SensorChannel:[69,0,1,""]},"qcodes.instrument_drivers.QDev":{QDac:[70,4,0,"-"],QDac_channels:[70,4,0,"-"]},"qcodes.instrument_drivers.QDev.QDac":{QDac:[70,0,1,""]},"qcodes.instrument_drivers.QDev.QDac.QDac":{connect_message:[70,1,1,""],max_status_age:[70,2,1,""],print_overview:[70,1,1,""],printslopes:[70,1,1,""],read:[70,1,1,""],read_state:[70,1,1,""],snapshot_base:[70,1,1,""],voltage_range_status:[70,2,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels":{QDac:[70,0,1,""],QDacChannel:[70,0,1,""],QDacMultiChannelParameter:[70,0,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDac":{connect_message:[70,1,1,""],max_status_age:[70,2,1,""],print_overview:[70,1,1,""],printslopes:[70,1,1,""],read:[70,1,1,""],read_state:[70,1,1,""],snapshot_base:[70,1,1,""],voltage_range_status:[70,2,1,""],write:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacChannel":{snapshot_base:[70,1,1,""]},"qcodes.instrument_drivers.QDev.QDac_channels.QDacMultiChannelParameter":{get:[70,1,1,""]},"qcodes.instrument_drivers.QuTech":{D4:[71,4,0,"-"],D5a:[71,4,0,"-"],F1d:[71,4,0,"-"],IVVI:[71,4,0,"-"],S5i:[71,4,0,"-"]},"qcodes.instrument_drivers.QuTech.D4":{D4:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.D4.D4":{get_buffers_enabled:[71,1,1,""],get_filter_value:[71,1,1,""],get_mode:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.D5a":{D5a:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d":{F1d:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.F1d.F1d":{get_remote_settings:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.IVVI":{IVVI:[71,0,1,""]},"qcodes.instrument_drivers.QuTech.IVVI.IVVI":{Fullrange:[71,2,1,""],Halfrange:[71,2,1,""],adjust_parameter_validator:[71,1,1,""],ask:[71,1,1,""],get_all:[71,1,1,""],get_idn:[71,1,1,""],get_pol_dac:[71,1,1,""],read:[71,1,1,""],round_dac:[71,1,1,""],set_dacs_zero:[71,1,1,""],set_pol_dacrack:[71,1,1,""],write:[71,1,1,""]},"qcodes.instrument_drivers.QuTech.S5i":{S5i:[71,0,1,""]},"qcodes.instrument_drivers.Spectrum":{py_header:[73,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header":{regs:[73,4,0,"-"],spcerr:[73,4,0,"-"]},"qcodes.instrument_drivers.Spectrum.py_header.regs":{GIGA:[73,3,1,""],GIGA_B:[73,3,1,""],KILO:[73,3,1,""],KILO_B:[73,3,1,""],MEGA:[73,3,1,""],MEGA_B:[73,3,1,""]},"qcodes.instrument_drivers.ZI":{ZIUHFLI:[74,4,0,"-"]},"qcodes.instrument_drivers.ZI.ZIUHFLI":{AUXOutputChannel:[74,0,1,""],Scope:[74,0,1,""],Sweep:[74,0,1,""],ZIUHFLI:[74,0,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Scope":{add_post_trigger_action:[74,1,1,""],get:[74,1,1,""],names:[74,2,1,""],post_trigger_actions:[74,2,1,""],prepare_scope:[74,1,1,""],setpoint_names:[74,2,1,""],setpoints:[74,2,1,""],shapes:[74,2,1,""],units:[74,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.Sweep":{build_sweep:[74,1,1,""],get:[74,1,1,""],names:[74,2,1,""],setpoint_names:[74,2,1,""],setpoints:[74,2,1,""],shapes:[74,2,1,""],units:[74,2,1,""]},"qcodes.instrument_drivers.ZI.ZIUHFLI.ZIUHFLI":{NEPBW_to_timeconstant:[74,7,1,""],add_signal_to_sweeper:[74,1,1,""],close:[74,1,1,""],print_sweeper_settings:[74,1,1,""],remove_signal_from_sweeper:[74,1,1,""]},"qcodes.instrument_drivers.agilent":{Agilent_34400A:[75,4,0,"-"],E8267C:[75,4,0,"-"],E8527D:[75,4,0,"-"],HP33210A:[75,4,0,"-"],test_suite:[75,4,0,"-"]},"qcodes.instrument_drivers.agilent.Agilent_34400A":{Agilent_34400A:[75,0,1,""]},"qcodes.instrument_drivers.agilent.Agilent_34400A.Agilent_34400A":{clear_errors:[75,1,1,""],display_clear:[75,1,1,""],init_measurement:[75,1,1,""],reset:[75,1,1,""]},"qcodes.instrument_drivers.agilent.E8267C":{E8267:[75,0,1,""]},"qcodes.instrument_drivers.agilent.E8267C.E8267":{deg_to_rad:[75,7,1,""],rad_to_deg:[75,7,1,""]},"qcodes.instrument_drivers.agilent.E8527D":{Agilent_E8527D:[75,0,1,""]},"qcodes.instrument_drivers.agilent.E8527D.Agilent_E8527D":{deg_to_rad:[75,1,1,""],off:[75,1,1,""],on:[75,1,1,""],parse_on_off:[75,1,1,""],rad_to_deg:[75,1,1,""]},"qcodes.instrument_drivers.agilent.HP33210A":{Agilent_HP33210A:[75,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite":{TestAgilent_E8527D:[75,0,1,""]},"qcodes.instrument_drivers.agilent.test_suite.TestAgilent_E8527D":{driver:[75,2,1,""],setUpClass:[75,6,1,""],test_firmware_version:[75,1,1,""],test_frequency:[75,1,1,""],test_on_off:[75,1,1,""],test_phase:[75,1,1,""],test_power:[75,1,1,""]},"qcodes.instrument_drivers.american_magnetics":{AMI430:[76,4,0,"-"]},"qcodes.instrument_drivers.american_magnetics.AMI430":{AMI430:[76,0,1,""],AMI430_3D:[76,0,1,""]},"qcodes.instrument_drivers.american_magnetics.AMI430.AMI430":{default_current_ramp_limit:[76,2,1,""],set_field:[76,1,1,""]},"qcodes.instrument_drivers.devices":{VoltageDivider:[63,0,1,""]},"qcodes.instrument_drivers.devices.VoltageDivider":{get_instrument_value:[63,1,1,""],get_raw:[63,1,1,""],set_raw:[63,1,1,""]},"qcodes.instrument_drivers.ithaco":{Ithaco_1211:[77,4,0,"-"]},"qcodes.instrument_drivers.ithaco.Ithaco_1211":{CurrentParameter:[77,0,1,""],Ithaco_1211:[77,0,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.CurrentParameter":{get:[77,1,1,""]},"qcodes.instrument_drivers.ithaco.Ithaco_1211.Ithaco_1211":{get_idn:[77,1,1,""]},"qcodes.instrument_drivers.oxford":{ILM200:[78,4,0,"-"],IPS120:[78,4,0,"-"],kelvinox:[78,4,0,"-"],mercuryiPS:[78,4,0,"-"],triton:[78,4,0,"-"]},"qcodes.instrument_drivers.oxford.ILM200":{OxfordInstruments_ILM200:[78,0,1,""]},"qcodes.instrument_drivers.oxford.ILM200.OxfordInstruments_ILM200":{close:[78,1,1,""],get_all:[78,1,1,""],get_idn:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],set_remote_status:[78,1,1,""],set_to_fast:[78,1,1,""],set_to_slow:[78,1,1,""]},"qcodes.instrument_drivers.oxford.IPS120":{OxfordInstruments_IPS120:[78,0,1,""]},"qcodes.instrument_drivers.oxford.IPS120.OxfordInstruments_IPS120":{close:[78,1,1,""],examine:[78,1,1,""],get_all:[78,1,1,""],get_changed:[78,1,1,""],get_idn:[78,1,1,""],heater_off:[78,1,1,""],heater_on:[78,1,1,""],hold:[78,1,1,""],identify:[78,1,1,""],leave_persistent_mode:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],run_to_field:[78,1,1,""],run_to_field_wait:[78,1,1,""],set_persistent:[78,1,1,""],to_setpoint:[78,1,1,""],to_zero:[78,1,1,""]},"qcodes.instrument_drivers.oxford.kelvinox":{OxfordInstruments_Kelvinox_IGH:[78,0,1,""]},"qcodes.instrument_drivers.oxford.kelvinox.OxfordInstruments_Kelvinox_IGH":{close:[78,1,1,""],get_all:[78,1,1,""],get_idn:[78,1,1,""],identify:[78,1,1,""],local:[78,1,1,""],remote:[78,1,1,""],rotate_Nvalve:[78,1,1,""],set_mix_chamber_heater_mode:[78,1,1,""],set_mix_chamber_heater_power_range:[78,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS":{MercuryiPS:[78,0,1,""],MercuryiPSArray:[78,0,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPS":{hold:[78,1,1,""],rtos:[78,1,1,""],to_zero:[78,1,1,""],write:[78,1,1,""]},"qcodes.instrument_drivers.oxford.mercuryiPS.MercuryiPSArray":{get:[78,1,1,""],set:[78,1,1,""]},"qcodes.instrument_drivers.oxford.triton":{Triton:[78,0,1,""]},"qcodes.instrument_drivers.oxford.triton.Triton":{get_idn:[78,1,1,""]},"qcodes.instrument_drivers.rigol":{DG4000:[79,4,0,"-"]},"qcodes.instrument_drivers.rigol.DG4000":{Rigol_DG4000:[79,0,1,""],clean_string:[79,3,1,""],is_number:[79,3,1,""],parse_multiple_outputs:[79,3,1,""],parse_single_output:[79,3,1,""],parse_string_output:[79,3,1,""]},"qcodes.instrument_drivers.rohde_schwarz":{RTO1000:[80,4,0,"-"],SGS100A:[80,4,0,"-"],SMR40:[80,4,0,"-"],ZNB20:[80,4,0,"-"],ZNB:[80,4,0,"-"]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000":{RTO1000:[80,0,1,""],ScopeChannel:[80,0,1,""],ScopeTrace:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.RTO1000.ScopeTrace":{get:[80,1,1,""],prepare_trace:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A":{RohdeSchwarz_SGS100A:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SGS100A.RohdeSchwarz_SGS100A":{off:[80,1,1,""],on:[80,1,1,""],parse_on_off:[80,1,1,""],set_IQ_state:[80,1,1,""],set_pulsemod_source:[80,1,1,""],set_pulsemod_state:[80,1,1,""],set_status:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40":{RohdeSchwarz_SMR40:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.SMR40.RohdeSchwarz_SMR40":{do_get_frequency:[80,1,1,""],do_get_power:[80,1,1,""],do_get_pulse_delay:[80,1,1,""],do_get_status:[80,1,1,""],do_get_status_of_ALC:[80,1,1,""],do_get_status_of_modulation:[80,1,1,""],do_set_frequency:[80,1,1,""],do_set_power:[80,1,1,""],do_set_pulse_delay:[80,1,1,""],do_set_status:[80,1,1,""],do_set_status_of_ALC:[80,1,1,""],do_set_status_of_modulation:[80,1,1,""],get_all:[80,1,1,""],off:[80,1,1,""],off_modulation:[80,1,1,""],on:[80,1,1,""],on_modulation:[80,1,1,""],reset:[80,1,1,""],set_ext_trig:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB":{FrequencySweep:[80,0,1,""],FrequencySweepMagPhase:[80,0,1,""],ZNB:[80,0,1,""],ZNBChannel:[80,0,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweep":{get:[80,1,1,""],set_sweep:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.FrequencySweepMagPhase":{get:[80,1,1,""],set_sweep:[80,1,1,""]},"qcodes.instrument_drivers.rohde_schwarz.ZNB.ZNB":{add_channel:[80,1,1,""],clear_channels:[80,1,1,""],display_grid:[80,1,1,""],initialise:[80,1,1,""]},"qcodes.instrument_drivers.signal_hound":{USB_SA124B:[81,4,0,"-"]},"qcodes.instrument_drivers.signal_hound.USB_SA124B":{SignalHound_USB_SA124B:[81,0,1,""],constants:[81,0,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.SignalHound_USB_SA124B":{QuerySweep:[81,1,1,""],abort:[81,1,1,""],check_for_error:[81,1,1,""],closeDevice:[81,1,1,""],configure:[81,1,1,""],default_server_name:[81,6,1,""],dll_path:[81,2,1,""],get_power_at_freq:[81,1,1,""],get_spectrum:[81,1,1,""],initialisation:[81,1,1,""],openDevice:[81,1,1,""],prepare_for_measurement:[81,1,1,""],preset:[81,1,1,""],saStatus:[81,2,1,""],saStatus_inverted:[81,2,1,""],safe_reload:[81,1,1,""],sweep:[81,1,1,""]},"qcodes.instrument_drivers.signal_hound.USB_SA124B.constants":{SA_MAX_DEVICES:[81,2,1,""],TG_THRU_0DB:[81,2,1,""],TG_THRU_20DB:[81,2,1,""],sa124_MAX_FREQ:[81,2,1,""],sa124_MIN_FREQ:[81,2,1,""],sa44_MAX_FREQ:[81,2,1,""],sa44_MIN_FREQ:[81,2,1,""],saDeviceTypeNone:[81,2,1,""],saDeviceTypeSA124A:[81,2,1,""],saDeviceTypeSA124B:[81,2,1,""],saDeviceTypeSA44:[81,2,1,""],saDeviceTypeSA44B:[81,2,1,""],sa_AUDIO:[81,2,1,""],sa_AUDIO_AM:[81,2,1,""],sa_AUDIO_CW:[81,2,1,""],sa_AUDIO_FM:[81,2,1,""],sa_AUDIO_LSB:[81,2,1,""],sa_AUDIO_USB:[81,2,1,""],sa_AUTO_ATTEN:[81,2,1,""],sa_AUTO_GAIN:[81,2,1,""],sa_AVERAGE:[81,2,1,""],sa_BYPASS:[81,2,1,""],sa_IDLE:[81,2,1,""],sa_IQ:[81,2,1,""],sa_IQ_SAMPLE_RATE:[81,2,1,""],sa_LIN_FULL_SCALE:[81,2,1,""],sa_LIN_SCALE:[81,2,1,""],sa_LOG_FULL_SCALE:[81,2,1,""],sa_LOG_SCALE:[81,2,1,""],sa_LOG_UNITS:[81,2,1,""],sa_MAX_ATTEN:[81,2,1,""],sa_MAX_GAIN:[81,2,1,""],sa_MAX_IQ_DECIMATION:[81,2,1,""],sa_MAX_RBW:[81,2,1,""],sa_MAX_REF:[81,2,1,""],sa_MAX_RT_RBW:[81,2,1,""],sa_MIN_IQ_BANDWIDTH:[81,2,1,""],sa_MIN_MAX:[81,2,1,""],sa_MIN_RBW:[81,2,1,""],sa_MIN_RT_RBW:[81,2,1,""],sa_MIN_SPAN:[81,2,1,""],sa_POWER_UNITS:[81,2,1,""],sa_REAL_TIME:[81,2,1,""],sa_SWEEPING:[81,2,1,""],sa_TG_SWEEP:[81,2,1,""],sa_VOLT_UNITS:[81,2,1,""]},"qcodes.instrument_drivers.stanford_research":{SG384:[82,4,0,"-"],SIM928:[82,4,0,"-"],SR560:[82,4,0,"-"],SR830:[82,4,0,"-"],SR860:[82,4,0,"-"],SR865:[82,4,0,"-"],SR86x:[82,4,0,"-"]},"qcodes.instrument_drivers.stanford_research.SG384":{SRS_SG384:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928":{SIM928:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SIM928.SIM928":{ask_module:[82,1,1,""],byte_to_bits:[82,7,1,""],check_module_errors:[82,1,1,""],find_modules:[82,1,1,""],get_module_idn:[82,1,1,""],get_module_status:[82,1,1,""],get_voltage:[82,1,1,""],reset_module:[82,1,1,""],set_smooth:[82,1,1,""],set_voltage:[82,1,1,""],write_module:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560":{SR560:[82,0,1,""],VoltageParameter:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.SR560":{get_idn:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR560.VoltageParameter":{get:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR830":{ChannelBuffer:[82,0,1,""],SR830:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR830.ChannelBuffer":{get:[82,1,1,""],prepare_buffer_readout:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR860":{SR860:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR865":{SR865:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x":{SR86x:[82,0,1,""],SR86xBuffer:[82,0,1,""],SR86xBufferReadout:[82,0,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBuffer":{capture_samples:[82,1,1,""],get_capture_data:[82,1,1,""],start_capture:[82,1,1,""],stop_capture:[82,1,1,""]},"qcodes.instrument_drivers.stanford_research.SR86x.SR86xBufferReadout":{get_raw:[82,1,1,""],prepare_readout:[82,1,1,""]},"qcodes.instrument_drivers.tektronix":{AWG5014:[83,4,0,"-"],AWG5200:[83,4,0,"-"],AWG520:[83,4,0,"-"],AWGFileParser:[83,4,0,"-"],Keithley_2000:[83,4,0,"-"],Keithley_2400:[83,4,0,"-"],Keithley_2600:[83,4,0,"-"],Keithley_2600_channels:[83,4,0,"-"],Keithley_2700:[83,4,0,"-"],TPS2012:[83,4,0,"-"]},"qcodes.instrument_drivers.tektronix.AWG5014":{Tektronix_AWG5014:[83,0,1,""],parsestr:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.AWG5014.Tektronix_AWG5014":{AWG_FILE_FORMAT_CHANNEL:[83,2,1,""],AWG_FILE_FORMAT_HEAD:[83,2,1,""],all_channels_off:[83,1,1,""],all_channels_on:[83,1,1,""],change_folder:[83,1,1,""],clear_message_queue:[83,1,1,""],create_and_goto_dir:[83,1,1,""],delete_all_waveforms_from_list:[83,1,1,""],force_event:[83,1,1,""],force_trigger:[83,1,1,""],force_trigger_event:[83,1,1,""],generate_awg_file:[83,1,1,""],generate_channel_cfg:[83,1,1,""],generate_sequence_cfg:[83,1,1,""],get_all:[83,1,1,""],get_current_folder_name:[83,1,1,""],get_error:[83,1,1,""],get_filenames:[83,1,1,""],get_folder_contents:[83,1,1,""],get_sq_mode:[83,1,1,""],get_sqel_loopcnt:[83,1,1,""],get_sqel_trigger_wait:[83,1,1,""],get_sqel_waveform:[83,1,1,""],get_state:[83,1,1,""],goto_root:[83,1,1,""],is_awg_ready:[83,1,1,""],load_awg_file:[83,1,1,""],make_and_save_awg_file:[83,1,1,""],make_send_and_load_awg_file:[83,1,1,""],newlinestripper:[83,1,1,""],pack_waveform:[83,1,1,""],run:[83,1,1,""],send_DC_pulse:[83,1,1,""],send_awg_file:[83,1,1,""],send_waveform_to_list:[83,1,1,""],set_current_folder_name:[83,1,1,""],set_sqel_event_jump_target_index:[83,1,1,""],set_sqel_event_jump_type:[83,1,1,""],set_sqel_event_target_index:[83,1,1,""],set_sqel_goto_state:[83,1,1,""],set_sqel_goto_target_index:[83,1,1,""],set_sqel_loopcnt:[83,1,1,""],set_sqel_loopcnt_to_inf:[83,1,1,""],set_sqel_trigger_wait:[83,1,1,""],set_sqel_waveform:[83,1,1,""],start:[83,1,1,""],stop:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG520":{Tektronix_AWG520:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG520.Tektronix_AWG520":{change_folder:[83,1,1,""],clear_waveforms:[83,1,1,""],delete_all_waveforms_from_list:[83,1,1,""],force_logicjump:[83,1,1,""],force_trigger:[83,1,1,""],get_all:[83,1,1,""],get_current_folder_name:[83,1,1,""],get_filenames:[83,1,1,""],get_folder_contents:[83,1,1,""],get_jumpmode:[83,1,1,""],get_state:[83,1,1,""],goto_root:[83,1,1,""],load_and_set_sequence:[83,1,1,""],make_directory:[83,1,1,""],resend_waveform:[83,1,1,""],return_self:[83,1,1,""],send_pattern:[83,1,1,""],send_sequence2:[83,1,1,""],send_sequence:[83,1,1,""],send_waveform:[83,1,1,""],set_current_folder_name:[83,1,1,""],set_jumpmode:[83,1,1,""],set_sequence:[83,1,1,""],set_setup_filename:[83,1,1,""],start:[83,1,1,""],stop:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200":{Tektronix_AWG5200:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.AWG5200.Tektronix_AWG5200":{send_waveform_to_list:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.AWGFileParser":{parse_awg_file:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000":{Keithley_2000:[83,0,1,""],parse_output_bool:[83,3,1,""],parse_output_string:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2000.Keithley_2000":{trigger:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400":{Keithley_2400:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2400.Keithley_2400":{reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600":{Keithley_2600:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600.Keithley_2600":{ask:[83,1,1,""],display_clear:[83,1,1,""],display_normal:[83,1,1,""],exit_key:[83,1,1,""],get_idn:[83,1,1,""],reset:[83,1,1,""],write:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels":{KeithleyChannel:[83,0,1,""],Keithley_2600:[83,0,1,""],LuaSweepParameter:[83,0,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.KeithleyChannel":{doFastSweep:[83,1,1,""],reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.Keithley_2600":{ask:[83,1,1,""],display_clear:[83,1,1,""],display_normal:[83,1,1,""],exit_key:[83,1,1,""],get_idn:[83,1,1,""],reset:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2600_channels.LuaSweepParameter":{get_raw:[83,1,1,""],prepareSweep:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700":{Keithley_2700:[83,0,1,""],bool_to_str:[83,3,1,""],parsebool:[83,3,1,""],parseint:[83,3,1,""],parsestr:[83,3,1,""]},"qcodes.instrument_drivers.tektronix.Keithley_2700.Keithley_2700":{get_all:[83,1,1,""],reset:[83,1,1,""],set_defaults:[83,1,1,""],set_mode:[83,1,1,""],set_mode_volt_dc:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012":{ScopeArray:[83,0,1,""],TPS2012:[83,0,1,""],TPS2012Channel:[83,0,1,""],TraceNotReady:[83,5,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.ScopeArray":{calc_set_points:[83,1,1,""],get:[83,1,1,""],prepare_curvedata:[83,1,1,""]},"qcodes.instrument_drivers.tektronix.TPS2012.TPS2012":{clear_message_queue:[83,1,1,""]},"qcodes.instrument_drivers.test":{DriverTestCase:[63,0,1,""],test_instrument:[63,3,1,""],test_instruments:[63,3,1,""]},"qcodes.instrument_drivers.test.DriverTestCase":{driver:[63,2,1,""],setUpClass:[63,6,1,""]},"qcodes.instrument_drivers.weinschel":{Weinschel_8320:[84,4,0,"-"],test_suite:[84,4,0,"-"]},"qcodes.instrument_drivers.weinschel.Weinschel_8320":{Weinschel_8320:[84,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite":{TestWeinschel_8320:[84,0,1,""]},"qcodes.instrument_drivers.weinschel.test_suite.TestWeinschel_8320":{driver:[84,2,1,""],test_attenuation:[84,1,1,""],test_firmware_version:[84,1,1,""]},"qcodes.instrument_drivers.yokogawa":{GS200:[85,4,0,"-"]},"qcodes.instrument_drivers.yokogawa.GS200":{GS200:[85,0,1,""],GS200Exception:[85,5,1,""],GS200_Monitor:[85,0,1,""],float_round:[85,3,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200":{off:[85,1,1,""],on:[85,1,1,""],ramp_current:[85,1,1,""],ramp_voltage:[85,1,1,""],state:[85,1,1,""]},"qcodes.instrument_drivers.yokogawa.GS200.GS200_Monitor":{off:[85,1,1,""],on:[85,1,1,""],state:[85,1,1,""],update_measurement_enabled:[85,1,1,""]},"qcodes.measure":{Measure:[87,0,1,""]},"qcodes.measure.Measure":{__init__:[87,1,1,""]},"qcodes.plots.pyqtgraph":{QtPlot:[89,0,1,""]},"qcodes.plots.pyqtgraph.QtPlot":{__init__:[89,1,1,""]},"qcodes.plots.qcmatplotlib":{MatPlot:[90,0,1,""]},"qcodes.plots.qcmatplotlib.MatPlot":{__init__:[90,1,1,""]},"qcodes.station":{Station:[91,0,1,""]},"qcodes.station.Station":{"default":[91,2,1,""],__init__:[91,1,1,""],delegate_attr_dicts:[91,2,1,""]},"qcodes.utils":{command:[92,4,0,"-"],deferred_operations:[93,4,0,"-"],helpers:[94,4,0,"-"],metadata:[95,4,0,"-"],validators:[96,4,0,"-"]},qcodes:{ArrayParameter:[37,0,1,""],BreakIf:[38,0,1,""],ChannelList:[39,0,1,""],CombinedParameter:[40,0,1,""],Config:[41,0,1,""],DataArray:[42,0,1,""],DataSet:[43,0,1,""],DiskIO:[44,0,1,""],FormatLocation:[45,0,1,""],Formatter:[46,0,1,""],Function:[47,0,1,""],GNUPlotFormat:[48,0,1,""],IPInstrument:[49,0,1,""],Instrument:[50,0,1,""],InstrumentChannel:[51,0,1,""],Loop:[52,0,1,""],ManualParameter:[53,0,1,""],MultiParameter:[54,0,1,""],Parameter:[55,0,1,""],StandardParameter:[56,0,1,""],SweepFixedValues:[57,0,1,""],SweepValues:[58,0,1,""],Task:[59,0,1,""],VisaInstrument:[60,0,1,""],Wait:[61,0,1,""],combine:[62,3,1,""],instrument_drivers:[63,4,0,"-"],load_data:[86,3,1,""],new_data:[88,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":22,"001_":22,"001_13":45,"001_testsweep_11":11,"001_unicorn_2016":10,"002_":17,"002_rainbow_2016":10,"00370000e":21,"003_":36,"005_rainbow_2016":10,"006_":29,"007_":29,"009_testsweep_15":15,"009_unicorn_2050":10,"01084000e":21,"011_":[33,35],"012_":33,"012_hp8753d_tutorial_14":35,"013_":16,"013_n_1000_setget_11":14,"014_n_1000_setget_11":14,"015_":27,"015_n_1000_setget_11":14,"016_":27,"016_n_1000_setget_11":14,"01763000e":21,"017_n_1000_setget_11":14,"018_n_1000_setget_11":14,"018_testsweep_12":12,"019_n_1000_setget_11":14,"019_testsweep_12":12,"020_n_1000_setget_11":14,"020_testsweep_12":12,"021_testsweep_12":12,"025_":15,"026_":15,"027_":15,"028_":15,"029_":15,"02s":[17,28],"030_":15,"031_":15,"032_":15,"033_":15,"034_":15,"035_":15,"036_":15,"03d":30,"04s":36,"06s":12,"073_":28,"076_":28,"076_n_100_setget_16":13,"077_":28,"077_n_100_setget_16":13,"078_":28,"078_n_100_setget_16":13,"079_":28,"079_n_100_setget_16":13,"07s":[4,15],"080_":28,"080_n_100_setget_16":13,"081_n_100_setget_16":13,"082_n_100_setget_16":13,"083_":28,"083_n_100_setget_16":13,"0848e":8,"084_":[13,28],"085_":[13,28],"086_":[13,28],"087_":[13,28],"088_":[13,28],"089_":[13,28],"08s":32,"090_":[13,28],"091_":13,"092_n_1000_setget_16":13,"093_n_1000_setget_16":13,"094_n_1000_setget_16":13,"095_n_1000_setget_16":13,"096_n_1000_setget_16":13,"097_n_1000_setget_16":13,"098_n_1000_setget_16":13,"0994e":22,"099_n_1000_setget_16":13,"09s":[22,27],"0x1c10ee73a58":15,"0x278d4c91780":33,"0x7ebf668":8,"0x7ebf6a0":8,"0x7ecd5c0":8,"0x7ed0668":21,"0x7edd2e8":8,"0x7f26d30":8,"0x7f920ec0eef0":116,"0x7fd834e99ea0":0,"0x818a908":18,"0x8d11978":8,"1000k44":27,"100_":13,"100e":13,"100e3":[27,28,35],"100e6":68,"100k":36,"100khz":36,"100x100":12,"101_":13,"102_":13,"103_":13,"104_":13,"105_":13,"106_":13,"107_":13,"108_n_100_setget_16":13,"109_n_100_setget_16":13,"10e":[29,32,33,36],"10e3":32,"10e6":[18,33],"10kohm":32,"10mhz":81,"10v":[32,55],"110_n_100_setget_16":13,"111_n_100_setget_16":13,"112_n_100_setget_16":13,"113_n_100_setget_16":13,"114_n_100_setget_16":13,"115_n_100_setget_16":13,"116_":13,"117_":13,"118_":13,"119_":13,"11s":23,"1206e":22,"120_":13,"121_":13,"122_":13,"123_":13,"124_":13,"125_":13,"126_":13,"127_":13,"128_":13,"129_":13,"12e9":3,"12f":3,"12s":17,"130_":13,"131_":13,"132_":13,"133_":13,"134_":13,"135_":13,"136_":13,"137_":13,"138_":13,"139_":13,"13_testsweep":0,"13_testsweep_002":0,"140_":13,"141_":13,"142_":13,"143_":13,"144_":13,"145_":13,"146_":13,"147_":13,"148_":13,"149_":13,"14s":14,"150_":13,"151_":13,"152_":13,"153_":13,"154_":13,"155_":13,"156_":13,"157_":13,"158_":13,"159_":13,"15_rainbow_test":45,"15g":48,"15s":[13,28],"160_":13,"161_":13,"16243e":8,"162_":13,"163_":13,"164_":13,"165_":13,"166_":13,"167_":13,"168_":13,"169_":13,"16_13":10,"16bit":36,"16s":[16,28],"170_":13,"171_":13,"172_":13,"173_":13,"174_":13,"175_":13,"176_":13,"177_":13,"178_":13,"179_":13,"180_":13,"181_":13,"182_":13,"183_":13,"184_":13,"185_":13,"186_":13,"187_":13,"188_":13,"189_":13,"190_":13,"191_":13,"192_":13,"193_":13,"194_":13,"195_":13,"196_":13,"197_n_1000_setget_16":13,"198_n_1000_setget_16":13,"199_n_1000_setget_16":13,"1ct":29,"1e3":[23,33],"1e6":[28,33],"1e9":35,"1ma":32,"1ms":112,"1vpp":36,"20000000e":30,"200_n_1000_setget_16":13,"200e3":28,"200uw":78,"2012b":[29,83],"201_n_1000_setget_16":13,"202_n_1000_setget_16":13,"203_n_1000_setget_16":13,"204_n_1000_setget_16":13,"205_":13,"206_":13,"207_":13,"208_":13,"209_":13,"20e":33,"20ma":64,"20mw":78,"20uw":78,"210_":13,"211_":13,"212_":13,"23160746e":33,"23s":35,"24196735e":33,"250khz":81,"25e":[26,29],"25gb":18,"2601b":3,"2602b":3,"2604b":3,"2611b":3,"2612b":3,"2614b":[3,8,13,22,83],"2635b":3,"2636b":3,"27041e":8,"28539f77dfd3":2,"2d_test":11,"2e3":23,"2min":28,"2mw":78,"2uw":78,"30_alazartest":18,"33500b":[68,103,112],"33522b":23,"33xxx":68,"34400a":112,"34401a":8,"34410a":8,"34411a":112,"34460a":68,"34461a":68,"34465a":[15,68,103,105,112],"34470a":68,"352161306002045e":24,"36s":28,"39759855e":33,"3x2":9,"42637000e":21,"4271e":8,"44s":29,"44xx":102,"4634e":8,"4port":28,"50e":[23,29],"52608e":25,"541_13":10,"54972e":22,"56s":28,"57s":34,"5e9":28,"60s":34,"62s":34,"69014000e":21,"6955e":22,"6a5acd":30,"6e6":28,"8133a":[66,103],"83650a":103,"844e846b99a2":15,"8753d":[35,66],"91t928108":32,"93s":12,"94851000e":21,"95535000e":21,"96216000e":21,"98941000e":21,"99618000e":21,"9e3":28,"\u03bca":[25,26],"\u03bcv":7,"abstract":119,"boolean":[71,83,105,116],"break":[3,4,11,38,82,83,107,108],"byte":[65,71,82,83],"case":[2,3,9,18,30,33,47,52,55,63,65,90,108,115,119,120],"catch":3,"char":70,"class":[1,4,9,10,19,21,33,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,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,87,89,90,91,92,93,94,95,96,108,111,112,120],"default":[1,2,3,4,6,9,11,25,26,28,37,41,42,43,45,47,48,49,52,54,55,60,63,65,66,67,68,70,71,77,78,80,82,83,86,88,89,90,91,100,101,106,108,111,118],"enum":[2,3,4,19,21,33,55,83,111,116],"export":78,"final":[11,15,18,22,30,33,35,46,47,55,119],"float":[3,4,14,43,47,55,57,63,66,67,68,71,74,76,78,79,80,82,83,85,88,90,105],"function":[0,1,3,4,7,8,9,10,11,15,18,21,22,29,30,34,35,36,38,40,43,50,51,53,55,57,59,62,64,65,68,71,74,75,78,79,80,81,82,83,84,93,94,96,105,106,108,111,114,119,120],"goto":[30,83],"import":[0,1,2,3,4,5,6,7,8,9,10,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,31,32,33,34,35,83,105,108,112,116,119,120],"int":[1,3,9,14,15,30,33,37,42,47,49,54,55,57,63,66,67,68,70,71,74,78,80,82,83,111],"long":[3,4,28,37,54,55,83,108],"m\u00e6lkeb\u00f8tt":8,"new":[1,2,3,4,9,11,18,22,33,42,45,46,47,48,78,83,86,88,90,107,114,116,119,120],"null":[64,116],"public":[82,97,108],"return":[0,1,3,6,9,11,14,15,19,22,25,26,28,30,33,34,35,37,38,39,45,47,54,55,57,63,64,65,66,67,68,70,71,74,77,78,79,80,81,82,83,85,86,87,88,111,119,120],"short":[42,119],"static":[49,50,60,74,75,82],"super":[3,4,9,68,78,83,120],"switch":[12,28,33,76,78,83,116,119],"true":[2,3,7,8,15,19,20,21,25,26,28,32,33,35,36,37,39,42,48,49,54,55,60,67,68,70,71,76,80,81,82,83,89,91,116,119],"try":[0,2,3,11,14,15,19,23,25,28,32,34,55,108,119],"var":48,"while":[1,11,19,21,29,32,64,83,112,119],AND:83,ATS:[18,63],Adding:108,And:[3,9,27,28,33,116,120],Are:[88,119],Axes:1,BUS:[14,23],BUT:108,But:[0,2,3,4,28,33,61,111],Doing:28,For:[1,2,3,4,6,9,11,23,27,28,29,30,33,34,37,45,48,54,55,60,64,65,67,71,74,80,82,83,89,108,113,115,116,119,120],Has:[3,68],IPS:[78,112],Its:[116,119],NOT:[3,33,45,63,74,108],Not:[2,3,35,37,54,64,91,108,112,116],ONE:[17,82,108],One:[1,2,33,74,114,119,120],POS:[15,23,71],PRs:108,SRS:103,THE:[33,112],THERE:112,TPS:[29,103,104],That:[3,57,58,83,112,120],The:[0,1,2,3,6,12,13,14,15,16,18,20,22,23,25,26,27,28,29,30,32,33,34,35,36,37,39,40,42,45,47,48,49,52,54,55,57,59,60,62,63,64,65,67,68,70,71,74,78,80,81,82,83,85,89,90,108,110,112,115,116,119,120],Then:[4,16,28,30,33,36,108,115,120],There:[1,3,4,11,20,22,29,30,68,108,111,116],These:[3,25,26,33,48,65,81,112,119],Tis:68,Use:[37,43,54,55,65,83,108,114,116],Used:79,Useful:[53,55],Uses:45,Using:[112,118],Will:[42,54,116],With:[28,34,119],_10:28,_11:[28,33],_13:[16,36],_14:[22,35],_15:[15,17,27],_16:[13,29],__call__:[15,45],__class__:[0,7,8,11,18],__del__:65,__doc__:[33,37,47,54,55],__enter__:[19,21],__exit__:[19,21],__file__:4,__getattr__:[39,70],__init__:[3,4,9,19,21,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,67,87,89,90,91,120],__iter__:[57,58],__name__:33,__next__:58,__repr__:67,_alazar:65,_assigned_fg:15,_ats_dll:3,_attenu:63,_bdaqctrl:64,_call:15,_check_for_error:19,_check_respons:19,_coil_const:34,_count:9,_current_r:34,_current_ramp_limit:34,_display_settext:3,_error_queu:19,_expect_error:19,_forwardref:[37,54,55],_get:120,_get_cmd:78,_get_temp_channel:31,_handl:3,_indic:9,_instrument:[3,15,19],_instrument_list:120,_irang:3,_measured_param:3,_mode:83,_parent:3,_poll:19,_ramp_stat:67,_ramp_tim:67,_raw:3,_read_cmd:78,_recv:78,_response_queu:19,_return_handl:15,_run_loop:15,_run_wrapp:15,_save_v:[3,37,54],_scale_param:9,_send:78,_set:120,_set_async:120,_set_both:120,_setget:[13,14],_step:82,_syncoutput:15,_t0:67,_trace:28,_val:9,_vrang:3,_win32:64,_write_cmd:78,_write_respons:70,a118e754f9e:19,abil:[80,101],abl:[34,68,119,120],abort:[14,81],abort_measur:14,about:[3,4,18,19,26,27,28,32,33,83,108,111,113,114,116,120],abov:[1,3,4,28,30,64,83,119],abridg:3,abs:[34,38],absolut:[33,44,83,108],accept:[3,43,44,46,47,48,59,64,68,77,78,82,83,119],acces:[11,30],access:[1,33,39,64,82],accommod:83,accompani:108,accord:[83,115],accordingli:15,account:[55,63,67,108],accur:[37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,87,89,90,91],achiev:30,acknowledg:49,acquir:[4,13,15,16,17,18,22,27,28,33,36,65,74,82,112,119],acquire_point:36,acquire_sample_r:36,acquisiion:65,acquisit:[14,18,28,33,65,74,81,82,108,112,119],acquisition_conrol:65,acquisition_control:[18,65],acquisition_controller_acquisit:18,acquisition_mod:82,acquisitioncontrol:65,acquisiton:[18,65],acquist:65,across:[25,26,32,119],act:[42,55,63],action:[1,6,7,9,15,19,31,38,42,52,74,83,87,91,97,111,112,114,119,120],action_indic:[7,15,42],activ:[1,7,27,78,80,111,115],active_children:10,active_loop:7,activeloop:[7,52,111],actual:[1,3,12,32,34,63,65,71,80,108,119],acut:0,adapt:[57,58],adaptivesweep:[58,111],adawpt:58,adc:71,add:[1,2,3,4,5,7,10,11,14,15,16,17,22,28,29,33,35,43,45,49,50,60,68,70,71,74,75,80,81,82,83,88,89,90,91,101,102,105,108,111,116],add_arrai:[42,43,88],add_channel:[28,80],add_compon:[5,22,91],add_funct:[50,51,108],add_paramet:[3,4,11,50,51,108,119,120],add_post_trigger_act:74,add_signal_to_sweep:[33,74],add_submodul:[3,50],add_subplot:30,added:[1,28,34,37,42,43,74,83,88,89,90,91,108,119],adding:[1,10,33,112],addit:[1,3,30,49,50,55,60,77,78,82,114,116,119],addition:[1,33,74],address:[3,4,8,24,26,31,34,36,39,49,60,66,67,68,69,70,71,75,76,78,79,80,82,83,84,85,108,119],adjust:[28,34,35,36,71,119],adjust_parameter_valid:71,adopt:114,adriaan:81,advanc:55,advantag:1,advantech:[63,103],advantech_pcie_1751:64,aeroflex:[3,4,84],affect:[33,44,74,108],after:[1,7,11,15,48,52,55,59,65,74,78,83,101,108,116,119],again:[7,18,32,115,119],against:111,aggeg:0,aggreag:0,aggreg:[40,62,112,120],agi:[8,12,19,21],agil:[8,21,23,63,68,103,108,112],agilent1:[8,19,21],agilent2:[8,19,21],agilent_2:8,agilent_34400a:[8,12,19,21,63],agilent_34401a:75,agilent_34410a:75,agilent_34411a:75,agilent_e8527d:[75,108],agilent_hp33210a:75,agilent_volt:12,agreement:22,agument:38,ahead:[33,57,58],aid:119,aim:1,airbnb:108,aka:108,akin:119,ala:114,alazar1:18,alazar:[3,18,65,103],alazar_driv:65,alazar_nam:[18,65],alazar_serv:18,alazargetboardbysystemid:3,alazarparamet:[3,18,65],alazarstartcaptur:65,alazartech:[3,18,63],alazartech_at:[3,18,65],alazartech_ats9870:[3,18,65],alazartest:18,alexcjohnson:108,alia:[53,67,75,84],all:[1,2,3,4,9,10,11,13,18,20,22,25,26,27,28,30,33,36,37,39,40,42,45,46,47,48,50,51,54,55,57,60,62,63,64,65,67,68,70,71,74,75,78,79,80,81,82,83,89,90,91,106,108,111,112,114,115,116,119,120],all_channels_off:83,all_channels_on:83,alloc:[18,65],alloc_buff:[18,65],allocated_buff:[18,65],allow:[1,3,4,25,26,34,35,36,39,49,55,57,58,60,71,74,78,80,82,83,88,108,119],almost:[82,119],alon:[34,42],along:[1,34,37,54,55,81,89,90,108,111,119],alongsid:9,alpha:[30,71],alreadi:[37,42,46,54],also:[1,2,3,4,7,11,18,28,29,30,33,34,38,42,44,46,48,55,57,61,64,65,67,68,77,78,82,83,88,105,108,111,114,115,116,119],altern:30,although:[3,30,66,74,108,115],alwai:[1,2,3,4,6,11,16,29,33,48,54,67,70,74,82,83,108,119],always_nest:48,amen:108,american:[34,76],american_magnet:[34,63],ami430:[63,103,106,112],ami430_2d:76,ami430_3d:[34,76],ammet:119,amodel:[7,10],among:[45,120],amp:[3,22,34,77,82],amper:[76,85],amplifi:[3,11,77,82],amplitud:[7,9,10,16,25,26,27,33,65,80,83,120],anaconda3:[15,19],anaconda:[114,115],analog:70,analog_amplitude_n:83,analog_direct_output_n:83,analog_filter_n:83,analog_high_n:83,analog_low_n:83,analog_method_n:83,analog_offset_n:83,analys:80,analysi:[108,119],analyz:[35,66,114],angl:34,angle_deg:75,angle_rad:75,ani:[0,2,3,4,9,10,11,18,19,21,24,25,26,28,30,34,37,40,42,44,45,46,47,48,49,52,54,55,57,58,59,60,62,65,67,74,78,82,83,87,91,108,111,114,119,120],anoth:[9,11,12,30,45,57,85,114,119],answer:[67,71],anymor:4,anyth:[3,11,14,20,27,83,111],anywai:9,ap_tim:14,apertur:[12,14],api:[1,4,97,99,114,116,119],app:36,apparatu:111,appear:[68,83],append:[19,30,34,42,57,120],appli:[20,25,26,34,43,47,55,64,68,77,78,82,83],applic:3,appropri:[1,65,119],approv:108,aqcuisit:27,aquir:35,arang:[3,4],arbitrari:[47,48,54,75,79,83,111,114],architectur:[114,120],arctan:30,arg:[1,2,3,15,19,37,47,54,55,57,59,68,70,78,89,90,120],arg_count:15,arg_pars:47,argument:[0,1,3,6,10,11,15,38,42,43,46,47,54,59,74,76,111],arithmet:27,arm:74,around:[28,30,42,81,108,119],arrai:[0,1,7,9,11,12,13,14,15,16,17,18,21,22,27,28,29,30,33,35,36,37,42,43,46,54,65,74,79,80,82,83,87,88,90,101,111,112,119,120],array_count:9,array_id:[0,1,7,9,11,12,13,14,15,16,17,18,22,27,28,29,33,35,36,42,46,120],arraycount:9,arraygett:6,arraymeasur:68,arrayparamet:[3,13,66,68,80,82,83,97,112],arriv:119,arrow:115,ask:[3,14,19,31,33,67,71,78,82,83,108,119],ask_modul:82,ask_raw:83,asopc:65,asopc_typ:[18,65],asrl10:24,asrl1:29,asrl2:60,asrl4:[12,78],asrl6:[15,25,26],asrl7:14,asrl:71,asrln:67,assert:[4,32,34,82,83],assertalmostequ:68,assign:[15,25,26,70,83,108],associ:119,assum:[3,28,30,35,58,70,115,119],assumpt:[33,83],async:118,asynchron:11,atob:78,ats9870:[3,18,63],ats_acquisition_control:[18,63],ats_contr:18,ats_inst:18,ats_onwork:112,atsapi:[3,65],atsdriv:18,attach:[1,3,39,43,50,51,52,63,68,70,80,82,83],attempt:67,attent:[108,112],attenu:[3,4,25,26,84],attn:[3,4],attribut:[1,3,33,42,43,46,74,91,108,119],author:108,auto:[32,33,45,80],auto_rang:32,autom:[4,114],automat:[1,3,9,28,33,45,64,70,80,85,102,106,108,114,116],autorang:15,autoreload:2,autoscal:28,aux_in1:16,aux_in2:16,aux_in3:16,aux_in4:16,aux_out1:16,aux_out2:16,aux_out3:16,aux_out4:16,auxiliari:108,auxoutputchannel:74,avail:[1,3,4,23,27,30,33,35,63,64,68,70,71,75,80,83,97,99,114,119],avanc:118,averag:[28,33,35,65,81,83,112],averageandraw:[6,7,10],averagegett:[7,10],avg:[28,81],avoid:[14,27,34,36],awar:108,awg1:30,awg5014:[63,102,104,112],awg5200:[63,106],awg520:63,awg:[4,11,68,83,112],awg_fil:83,awg_file_format_channel:83,awg_file_format_head:83,awgfil:30,awgfilepars:[30,63],awgfilepath:83,ax1:30,ax2:30,ax3:30,ax4:30,axes:[1,24,28,78],axes_api:1,axi:[1,28,33,34,37,42,48,54,55,74,119],axs:33,babi:120,back:[4,11,28,30,32,34,58,67,78,83,108,114,115,116,119,120],backend:[1,60],background:[7,19,21,119],background_color:89,background_funct:43,backslash:108,backward:[44,71],bad:2,bad_valu:4,bandwidth:[18,28,33,74,80],bar:[108,116],bare:[49,57],base0:120,base1:120,base2:120,base:[1,9,13,15,34,39,42,43,44,45,46,50,51,58,60,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,86,88,89,108,112,116,119,120],base_loc:[2,7,44],baseplot:89,baseserv:120,basi:54,basic:[3,4,29,48,65,71,114],basicconfig:[15,35],baud:[67,82],bdaqctrl:64,bear:108,becam:7,becaus:[1,2,3,29,32,42,43,46,64,65,68,108,115,119,120],becom:[18,30,78,111,119],been:[3,9,29,30,34,36,55,68,74,81,82,83,119,120],befor:[2,3,4,11,12,15,16,27,28,29,33,34,35,36,45,49,52,55,59,63,64,65,66,68,74,75,78,82,83,108,116,119],beforehand:63,begin:7,begin_tim:67,behav:108,behavior:[7,10,18,19,21,24,108,119],behaviour:[22,55,74],behind:33,being:[2,11,18,30,32,42,81,83],belong:[3,37,54,55,80],below:[1,2,3,4,11,13,30,108,111,112],ben:34,benchmark:[12,106],best:108,beta:[29,65,68,75,78,80,81,82,83],better:[3,14,27,47,106,108,119],between:[1,3,23,32,43,46,49,55,57,74,83,85,88,89,90],beyond:83,bid:64,bidirect:55,binari:[13,64,83],binascii:29,bind:33,biodaq:64,bip:71,bit:[14,27,64,65,80,82,83],bits_per_sampl:[18,65],black:89,blame:[25,26,83],blank:[48,108],blind:11,block:[11,19,48,71,120],board:[3,18,25,26,65],board_id:[3,18,65],board_kind:[18,65],bodi:108,boil:3,boilerpl:[3,47],bold:111,bonu:112,bool:[3,37,39,42,49,54,55,67,68,70,71,76,77,80,82,83,85,88,91],bool_to_str:83,bore:36,born:108,bot:[104,105],both:[1,3,9,12,28,33,44,68,80,82,83,108,111,114,116,119,120],bottom:[71,89],bound:[3,11,119],bracket:108,branch:108,breakif:[11,97,119],brittl:119,broader:114,broadli:3,broken:[2,55],brows:[115,120],buf:65,buffer:[17,18,64,65,82,104,112],buffer_acq_mod:16,buffer_list:3,buffer_npt:16,buffer_paus:16,buffer_reset:16,buffer_sr:16,buffer_start:16,buffer_timeout:[18,65],buffer_trig_mod:16,buffers_per_acquisit:[18,65],bug:[36,109],build:[30,33,74,83,102,103,108,115,119],build_sweep:[33,74],built:[1,9,33,82],builtin:47,bunch:33,burden:119,burst:112,busi:64,button:[83,108],bwlimit1:18,bwlimit2:18,bwlimit:[18,65],bwmode:33,byref:15,byte_to_bit:82,byte_to_value_dict:[3,65],bytecod:4,c_amp_in:[3,77],c_set:9,cabl:[83,119],calc_set_point:83,calcul:[34,74,80,111,119],calibr:[63,65],california:4,call:[2,3,9,10,15,19,22,28,29,30,34,35,37,40,42,43,45,46,47,49,54,55,59,60,62,64,65,67,70,71,74,78,81,82,83,85,88,108,119],call_by_str:15,call_by_str_parsed_out:15,call_cmd:47,callabl:[11,19,38,40,43,45,52,55,59,61,62,74,88,104,119],callsig:30,came:65,camp1:21,camp:[8,21],can:[0,1,2,3,4,9,10,14,16,22,23,25,26,27,28,30,32,33,34,36,37,38,41,42,43,45,47,48,52,54,55,57,58,61,64,65,66,67,68,70,71,74,78,79,80,83,87,88,89,90,91,108,111,112,113,114,115,116,119,120],cancel:[25,83],cannot:[28,34,37,54,64,82,83,119],canva:1,capabl:[20,111,114,119],capit:108,captur:[11,28,65,82,112],capture_config:[17,82],capture_data:82,capture_sampl:[17,82],card:[3,18,64,65,68,103],care:[2,3],careful:71,cartesian:[34,119],cartesian_measur:34,cast:[14,30,47],caus:[25,26,82],caution:[83,112],caveat:119,cdll:3,cell:[27,30],center:[28,81],certain:[11,33,34,65,78],cesr:82,cffi:64,ch01:26,ch01_i:25,ch01_irang:25,ch01_slope:[15,25],ch01_sync:15,ch01_sync_delai:15,ch01_sync_dur:15,ch01_v:[14,15,25],ch01_vrang:25,ch02:[25,26],ch02_slope:25,ch02_sync:25,ch02_v:[15,25],ch0_offset:20,ch0_voltag:20,ch1:[11,27,83],ch1_amplitud:23,ch1_amplitude_unit:23,ch1_burst_mod:23,ch1_burst_ncycl:23,ch1_burst_phas:23,ch1_burst_polar:23,ch1_burst_stat:23,ch1_curvedata:29,ch1_databuff:16,ch1_displai:16,ch1_frequenc:23,ch1_function_typ:23,ch1_offset:23,ch1_output:23,ch1_posit:29,ch1_ramp_symmetri:23,ch1_ratio:16,ch1_scale:29,ch1_state:29,ch1_trigger_count:23,ch1_trigger_delai:23,ch1_trigger_slop:23,ch1_trigger_sourc:23,ch1_trigger_tim:23,ch1_voltag:20,ch2:[11,29,83],ch2_curvedata:29,ch2_databuff:16,ch2_displai:16,ch2_offset:30,ch2_posit:29,ch2_ratio:16,ch2_scale:29,ch2_state:29,ch3_state:30,ch41_v:12,ch42_v:12,ch4:36,ch_name:3,cha0:63,chain:119,chan0:[7,10,63],chan0_set:7,chan1:[7,10,33,38],chan1_set:7,chan2:[7,10,33],chan:70,chan_alia:31,chan_go:15,chan_list:39,chan_reset_1:15,chan_reset_2:15,chan_reset_3:15,chan_typ:39,chanc:65,chandata:33,chang:[1,3,4,11,18,20,25,26,29,33,37,41,44,54,55,71,74,82,83,107,108,112,114,115,116,119],change_autozero:83,change_displai:83,change_fold:83,channel4:36,channel:[7,8,11,12,16,18,19,20,21,22,27,29,30,36,39,50,51,60,64,65,67,68,69,70,71,74,78,80,82,83,85,104,105,111,112,113,119],channel_a:65,channel_cfg:83,channel_rang:[18,65],channel_range1:18,channel_range2:18,channel_select:[18,65],channel_skew_n:83,channel_state_n:83,channelbuff:82,channelis:[22,70,83],channelist:39,channellist:[70,97],channum:[68,70,74,80],charact:[37,48,49,54,55,60,78,80,108],characterist:119,chassi:68,chatoor:108,check:[3,4,32,34,61,64,78,80,82,85,89,90,108,113,117,119,120],check_error:15,check_for_error:81,check_module_error:82,check_schema:2,checklist:108,chime:108,chnum:30,choic:[28,65],choos:[30,71,74,80,83,119],chore:108,chosen:[32,74],chx:11,circuit:35,clariti:3,classic:14,classmethod:[63,65,68,75,81],clean:[27,79,83,101,108],clean_str:79,cleanup:[46,106],clear:[15,16,28,29,30,60,68,82,83],clear_buff:65,clear_channel:[28,80],clear_error:75,clear_message_queu:[29,30,83],clear_waveform:83,clearli:108,clever:109,cli:114,click:[1,115],clim:1,clip:119,clock:[3,18,65,83],clock_edg:[18,65],clock_edge_ris:18,clock_frequ:68,clock_sourc:[3,18,65,83],clone:108,close:[1,4,12,20,22,25,26,28,29,30,31,33,34,64,74,78,106,108],close_ev:1,close_fil:46,closedevic:81,cls:2,cmd:[15,66,67,70,78,82,83],cmd_str:15,coars:67,code:[1,3,4,47,55,66,67,75,82,91,109,114,119],codebas:[4,114],coil:[34,76],coil_const:[34,76],col:80,cold:78,collect:[9,57,65,111,114,119],colloqui:[3,83],colon:[64,68,77,78,82,83,108],color:[1,30,33,89],colorbar:[1,42],colormap:116,column:[1,48,119],com2:60,com4:17,com:[75,82,84,108,110,112,115],combin:[40,43,48,55,81,86,88,97,105,111,112,118,119],combined_set:0,combinedparamet:[0,97],come:[48,108,119],comma:[64,68,77,78,82,83],command:[1,3,4,13,14,15,18,29,30,33,47,55,64,67,68,70,71,75,78,80,82,83,97,108,111,114,119],comment:[3,48,64,108],commit:[65,113,114],common:[3,64,68,77,78,80,82,83,111,119],commonli:[68,75,80,83],commun:[3,34,49,60,65,67,71,78,82,83,111,113,119],communc:34,compani:3,compar:[12,27,28,108],compat:[52,59,70,71,82,83,114,119],compatibil:83,compens:83,complain:[11,119],complet:[1,15,30,42,43,64,83,119,120],complex:[28,55,80,108,119],compliant:108,complic:[47,119],compon:[8,54,65,91,114,119],composit:[15,119],comprehens:[108,112],comput:[1,22,74,78,108,115,119],con:103,concaten:[70,108],concept:120,conclus:14,concret:4,concurr:119,conda:115,condit:[3,11,38,55,64,78,83,119],config:[3,18,65,83,97,105,108,112,118],config_file_nam:41,configur:[4,18,33,41,64,65,81,83,100,112,114,118,119],conflict:[64,119],confusingli:120,congratul:112,connect:[3,4,12,13,14,15,16,17,18,19,22,23,25,26,27,28,29,30,32,33,34,35,36,60,65,67,68,71,74,78,82,83,91,111,119],connect_messag:[3,4,67,68,70],consequ:119,consid:[3,11,22,27,83,108],consist:[11,25,26,28,71,81,83,87,108,119],consol:4,consolid:114,constant:[6,11,33,34,71,74,76,81],constitut:4,construct:[3,6,28,38,42,49,55,120],constructor:[3,37,42,54,71,89,90],consult:[82,119],cont:82,cont_meas_off:28,cont_meas_on:28,conta:74,contact:106,contain:[3,4,6,7,11,22,28,30,39,42,43,45,48,64,65,67,68,70,74,75,77,78,80,82,83,91,108,111,116,119,120],content:[42,112],context:[78,83,119],contian:65,contin:[66,83],contini:28,continu:[4,30,33,52,83,91,108,112],contrast:108,contribut:[3,36,109,113],contributor:108,control:[2,3,10,18,19,20,21,22,24,25,26,28,30,33,65,67,69,71,76,78,80,83,103,114,116,119,120],controlthermometri:78,conveni:[82,83,91,115,119],convent:[3,4],convers:[83,108],convert:[3,4,34,42,44,65,70,78,82,83,119],coordin:34,copi:[2,4,19,42,57,71,74,119],core:[0,1,7,8,10,15,16,17,18,19,21,24,27,28,29,31,33,35,108,112,113,114,116],corner:[10,18,19,21,24],correct:[1,3,20,27,30,33,34,46,82,105],correctli:[4,32,34],correspond:[1,12,16,20,22,30,48,65,67,71,74,80,82,83],cosmet:[101,102],cost:71,could:[10,15,30,108,119],count:[9,15,47,64,70,83,120],counter:[10,11,45,64],coupl:[3,18,27,33,65,80,83],coupling1:18,coupling2:18,cours:[27,108,119],cov:108,cover:[108,120],coverag:[108,114],coveragerc:108,cpld:65,cpld_version:[18,65],cpu:28,crash:[65,114],creat:[1,5,8,9,10,11,18,19,21,22,35,39,42,46,52,54,55,57,63,65,67,68,71,74,75,78,83,84,87,88,111,112,115,116,119,120],create_and_goto_dir:83,creation:[3,11,120],critic:[2,116],cryo:103,ctwrapper:15,ctype:3,cumbersom:70,curernt:120,curr:[3,8,13,21,22,32,77,82],current:[2,3,7,8,13,21,22,25,26,28,29,30,32,33,34,41,43,44,45,64,68,70,74,76,77,78,82,83,85,86,88,91,108,116,119,120],current_config:[2,41],current_config_path:41,current_field:34,current_r:[34,76],current_ramp_limit:[34,76],current_rang:32,current_schema:[2,41],current_target:34,current_to_field:34,current_valu:15,currentparamet:[3,8,21,77],curv:[13,68,83,112],custom:[9,41,44,66,112],customawgfil:83,customis:70,cutoff_hi:82,cutoff_lo:82,cwd:41,cwd_file_nam:[2,41],cycl:[3,8,18,19,21,22,23,68,119],cylindirc:34,cylindr:34,cylindrical_measur:34,d5a:63,d5a_modul:71,d5mux:71,d_bdaq_c_interfac:64,dac1:6,dac2:6,dac3:6,dac:[6,11,63,67,71,105],dac_ch1:11,dac_ch1_set:11,dac_ch2:11,dac_channel_class:67,dac_commands_v_13:70,dac_delai:71,dac_idn:11,dac_slot_class:67,dac_step:71,dac_verbose_channel:11,dacchannel:67,dacexcept:67,dacn:71,dacnam:71,dacread:67,dacslot:67,dacx:71,dai:108,dancer:108,daqnavi:64,daqnaviexcept:64,daqnaviwarn:64,dark:89,dat:48,data1:28,data2:[5,10,29],data:[0,1,2,3,6,7,9,12,13,14,15,16,17,18,19,21,22,27,28,29,33,35,42,43,44,45,46,48,52,54,55,64,65,68,70,71,74,80,82,83,86,88,89,90,97,105,108,111,112,114,119,120],data_arrai:7,data_buff:15,data_hd:27,data_l:5,data_ld:27,data_set:[2,5,7,11,15,46,83,100],data_v:55,dataarrai:[0,1,7,9,21,37,43,46,54,88,97,111,119],dataflow:65,dataformat:112,dataformatt:108,datamanag:[111,119],datamin:119,datamod:[0,7,9,10,12,18,21,33,120],datapoint:[36,83],datasav:112,dataserv:[10,43,111,119],dataset:[0,1,2,5,6,7,9,10,11,12,13,14,15,16,17,18,21,22,27,28,29,33,35,36,42,45,46,48,54,68,83,86,87,88,97,111,118,120],date:[10,11,45,65],datetim:45,daunt:108,dbm:[4,28,35,80],dc_channel_numb:83,dc_output_level_n:83,dclimit:27,ddl:64,deacadac:67,deadlin:19,dealt:119,debug:[2,5,27,29,33,35,36,116,119,120],debugmod:15,deca:20,decadac:[63,104,106,112],decadec:67,decid:[2,89,119,120],decim:[18,65],declar:64,decor:4,decoupl:108,decreas:12,deem:74,deeper:19,def:[0,1,2,3,4,9,11,14,15,17,19,21,34,78,120],default_current_ramp_limit:76,default_figs:1,default_file_nam:41,default_fmt:116,default_formatt:[43,86,88],default_io:[43,86,88],default_parameter_nam:106,default_server_nam:81,defaultcolormap:116,defaulttestload:5,defer:38,deferred_oper:97,defin:[0,2,3,10,28,30,33,37,47,54,68,71,77,78,82,83,108,111,112,116,119,120],definit:[4,10,33,47,80,119],deg:[16,33],deg_to_rad:75,degre:[23,33,55],del:3,delai:[0,1,7,11,15,17,18,26,32,33,34,52,55,56,58,61,71,80,85,119,120],delay_in_points_n:83,delay_in_time_n:83,deleg:42,delegate_attr_dict:91,delet:[3,83,108],delete_all_waveforms_from_list:[30,83],deliber:32,demand:119,demo:112,demod1:[33,74],demod1_harmon:33,demod1_i:33,demod1_ord:33,demod1_phaseshift:33,demod1_phi:33,demod1_r:33,demod1_sampl:33,demod1_sampler:33,demod1_signalin:33,demod1_sinc:33,demod1_stream:33,demod1_timeconst:33,demod1_trigg:33,demod1_x:33,demod:33,demodul:[74,112],demodulation_acquisitioncontrol:[18,65],demodulation_frequ:[18,65],demonstr:9,denot:[37,48,54,88],depend:[1,3,18,25,26,33,48,80,99,106,108,112,115,119],deploi:[13,83],deprec:[17,42,83,102],deprecationwarn:83,depth:36,deriv:111,descipt:41,describ:[2,3,9,11,37,52,54,74,108,116,119],descript:[2,42,83,108,116,119],descriptor:71,design:[75,83,84,119],desir:[11,34,82],desktop:15,destruct:119,detail:[1,82,108,119],detect:[80,105],determin:[46,90],dev2235:33,dev:[2,13,14],develop:[4,68,74,109,113,114],devic:[4,60,64,68,71,74,78,80,83,103,119],device_clear:60,device_descript:64,device_id:74,dft:[18,65],dg4000:63,dg4062:79,dg4102:79,dg4162:79,dg4202:79,diagon:111,dialogu:4,dict:[37,41,42,45,46,49,50,51,54,55,60,64,67,68,70,77,78,82,83,85,88,104,119],dictionari:[3,30,65,82,83,91,116,119],did:[3,10,12,115],didact:11,diff:83,differ:[1,3,9,22,28,37,43,54,70,74,80,83,108,111,114,119,120],differenti:42,difficult:108,difficulti:108,dig:[33,68,105],digit:[3,11,64,68,70,83,103],digital_amplitude_n:83,digital_high_n:83,digital_low_n:83,digital_method_n:83,digital_offset_n:83,dilut:78,dim:35,dimens:[9,37,42,48,54,119],dimension:[1,42,43,78],dio:64,dir:[2,83],direct:[37,53,54,68,81,108],directli:[1,3,6,9,25,26,30,33,34,43,52,78,83,112,119],directori:[2,3,43,44,83,86,88,108,115,116],disabl:[18,39,43],disadvantag:119,disambigu:10,disappear:119,disc:83,disconnect:119,discov:63,discret:119,discuss:[108,113],disk:[43,44,46,83,88,119],diskio:[7,43,45,86,88,97,111],displai:[0,1,2,3,7,8,10,12,14,15,16,17,18,19,21,24,27,28,29,31,33,35,36,80,83],display_clear:[12,14,15,75,83],display_format:35,display_grid:[28,80],display_norm:83,display_refer:35,display_scal:35,display_settext:[3,22],display_sij_split:28,display_single_window:28,display_text:[8,12,14],display_text_2:8,dissip:119,distribut:114,div:29,dived:63,divid:[55,63,103,104],divider_r:83,divis:[29,63],division_valu:63,divsion:63,dll:[64,65,81,112,119],dll_path:[3,65,81],dma:64,dmm:[11,12,14,15,75,105,106],dmm_data_buff:15,dmm_volt:14,dmm_voltag:11,do_acquisit:65,do_get_frequ:80,do_get_pow:80,do_get_pulse_delai:80,do_get_statu:80,do_get_status_of_alc:80,do_get_status_of_modul:80,do_set_frequ:80,do_set_pow:80,do_set_pulse_delai:80,do_set_statu:80,do_set_status_of_alc:80,do_set_status_of_modul:80,doc:[2,7,71,108,112,115],docstr:[3,9,37,47,54,55,83,108],document:[1,34,37,47,54,55,65,83,100,101,103,108,114,119],doe:[1,4,11,24,28,32,33,34,42,45,48,52,53,60,63,64,68,71,75,77,78,80,82,83,84,108,119],doesn:[3,4,9,10,30,42,64,68,83,108],dofastsweep:[13,22,83],doing:[18,28,108,119],domain:[33,78],domin:114,dominik:108,don:[1,3,29,46,57,58,67,68,70,83,108,119,120],done:[1,7,11,30,33,78,101,119,120],dot:[2,108,116],doubl:[45,83],doubt:[33,108],dovog:108,down:[3,22,30,34,108],download:[33,82,112,115],dramat:119,drive:7,driver:[4,6,9,11,16,22,25,26,28,29,30,33,34,35,36,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,101,102,103,104,105,106,108,114,118,119],driver_vers:[18,65],drivertestcas:[63,68,75,84],drop:32,due:[3,7,25,26,27,33,67,119,120],dummi:[6,11,18,87,112,120],dummy_set:18,dummyinstru:[6,11],dump:[8,65],duplic:[3,83],dur:33,durat:[26,33],dure:[1,15,55,57,61,65,68,83,99,119,120],dut:[28,35],dynam:[25,26,64,112],e1cb66:30,e8267:75,e8267c:[63,103],e8527d:[63,68,108],each:[0,1,3,4,5,7,9,11,12,13,14,15,16,18,19,20,21,22,23,25,26,28,29,30,33,35,37,42,43,46,47,48,49,52,54,55,57,64,65,67,70,71,74,75,82,83,84,89,90,91,108,111,114,119,120],eachot:120,earli:29,easi:[4,6,18,108,111,114,115],easier:[74,106,108,119],easiest:2,easili:[1,10,11,83,114],echo:67,edg:[18,27,29],edit:81,editor:108,ee82e:30,effect:[27,65,83,116],effort:3,eight:[25,26],either:[1,3,22,25,26,33,46,64,68,76,79,83,90,119],elaps:[15,19,21],electron:[3,114],elem1m1ch1:83,elem1m1ch2:83,elem1m2ch1:83,elem1m2ch2:83,elem2m1ch1:83,elem2m1ch2:83,elem2m2ch1:83,elem2m2ch2:83,element:[1,30,83,90,116,119],element_no:83,elemnum:30,elif:19,elnum:30,elpi:108,els:[2,15,20,28,64,83,108],elsewher:91,emac:108,email:[108,113],embed:1,emoji:108,empti:[2,9,11,19,30,67],enabl:[18,33,35,36,55,85],enable_record_head:[18,65],encapsul:119,enco:15,encod:[15,47,55,64],encount:64,encourag:[3,33,108],end:[3,45,57,60,64,65,80,83,108,114,119],endpoint:[12,83],engin:18,enough:[4,11,64,78,108,111],ensur:[27,29,35,81,82,108,119],ensure_ascii:8,enter:[37,54,119],entir:[16,18,23,32,80,82,91,119],entri:[2,46,52,54,83,97],entrypoint:99,enumer:33,env:[2,15,41,115,116],env_file_nam:[2,41],envelop:27,environ:[2,114,115,116],eom:4,equal:[82,116],equitim:82,equival:[9,83,114],err:81,error:[0,2,3,4,15,19,25,32,34,42,52,55,64,65,68,71,82,83,105,112,116,120],error_cod:71,errorcod:64,errormsg:64,esr:82,essenti:[11,75,82],establish:34,etc:[1,3,9,20,22,28,37,42,47,54,108,119],ethernet:[3,4,49,83],etr_5v:18,eumer:58,evalu:59,even:[4,9,14,25,26,34,44,46,55,57,58,60,64,68,70,77,78,82,83,108,119],event:[30,33,64,67,82,83,112],event_input_imped:83,event_input_polar:83,event_input_threshold:83,everi:[1,3,40,43,52,62,65,74,113,119,120],everybodi:[108,113],everyon:108,everyth:[30,33,45,97,108],exactli:[6,15,27,108],examin:[35,78],exampl:[0,1,2,7,9,37,38,42,45,54,55,58,60,65,68,82,83,103,108,111,114,115,117,120],exce:108,exceed:[30,64],excel:4,except:[2,3,15,32,34,64,66,67,68,78,82,83,85,92],exec_funct:15,exec_str:15,execut:[11,15,27,33,47,59,63,64,68,71,74,75,80,83,84,111,114,119],executor:120,exemplifi:33,exept:33,exercis:108,exis:28,exist:[3,11,28,30,45,46,58,64,83,86,88,108,114,119],exit:83,exit_kei:83,exp:32,expand:109,expect:[2,3,15,19,33,36,37,46,52,54,64,70,82,83,108,120],experi:[10,11,41,112,114,115,119],experiment:[114,119],expir:15,explain:[108,116],explan:82,explanatori:35,explicit:[30,55,57],explicitli:[37,42,54,108,119],explor:[11,83],exponenti:66,expos:[70,80,116],express:[55,119],ext:[15,23],ext_trigg:16,extend:[30,48,57,80],extens:[48,83],extern:[18,23,80,81,83],external_add_n:83,external_clock_10_mhz_ref:3,external_clock_ac:3,external_reference_typ:83,external_startcaptur:[18,65],external_trigger_coupl:[18,65],external_trigger_rang:[18,65],extra:[9,14,37,54,55,78,83,85,108,119],extra_schema_path:2,extract:78,extrem:119,f008:78,f1d:63,fact:108,factor:[3,8,25,26,33],factori:[66,83],fail:[2,106,108,119],failur:3,falcon:108,fall:83,fals:[2,7,8,9,15,19,20,21,25,26,28,32,33,36,37,42,43,54,55,56,66,67,68,70,71,75,76,79,80,82,83,88,116,119],faq:118,fast:[70,78,83,112,119],faster:[28,30,106,108],fastest:[30,33],fastsweep:22,feasibl:[4,114],feat:108,featur:[1,3,4,20,36,81,103,104,105,106,109,114],feed:[3,77,82],feedback:[58,119],feel:[36,108],fetch:[8,14,78],few:[23,28,47,68,74,108,113],fewer:[25,26],ff4500:30,ff8c00:30,fft:74,field:[34,37,47,48,54,55,76,78,114,120],field_limit:[34,76],field_measur:34,field_target:34,field_target_cartesian:34,field_target_cylindr:34,field_target_spher:34,field_valu:78,field_vector:34,fieldvector:34,fifo:18,fifo_only_stream:[18,65],fig:[1,28,30,33,34],fig_x_po:89,fig_x_posit:89,fig_y_po:89,fig_y_posit:89,figsiz:[1,11,89,90],figur:[1,15,30,33,89,90,108,119],figure_api:1,file:[2,10,11,41,43,45,46,48,64,71,78,83,86,88,108,112,115,118,119],file_path:83,filen:41,filenam:[30,83],filepath:30,filestructur:83,fill:[9,11,16,52,83,119],filter:[33,35,74],filter_slop:16,filw:83,find:[19,36,45,65,108,113,115,116],find_board:[18,65],find_modul:82,findal:78,finder:11,fine:[71,119],finish:[1,7,11,13,14,28,33,35,65,85,101,119],finit:[25,26,70,71],fire:[25,26],firmwar:[3,4,7,8,11,12,13,14,15,16,17,18,22,23,27,28,29,32,34,35,36,64,65,67,68,77,78,80,82,83,104],first:[1,2,4,7,9,11,14,15,23,28,30,34,36,37,42,48,54,55,59,66,76,83,89,90,108,119,120],first_delai:15,fit:[30,35,65,108],five:81,fix:[27,33,34,42,47,57,78,104,105,106,107,108,119,120],fixabl:108,fixtur:[4,63,68,75],flag:[25,26,71,81],flake8:108,flavor:119,flexibl:[33,111,114],float_round:85,flow:[25,26,32],flush:[23,82,83],flush_error_queu:[23,68],fmt:[2,10,11,45],fmt_counter:45,fmt_date:45,fmt_time:45,fname:83,focus:108,folder:[3,4,44,48,83],follow:[1,3,4,6,11,12,23,30,34,35,55,67,83,108,115,116,119,120],foo:[108,116,120],footer:108,forc:[7,10,18,19,21,24,28,30,83],force_ev:83,force_logicjump:83,force_reload:83,force_trigg:[29,83],force_trigger_ev:83,foreground:[106,119],foreground_color:89,foreign:64,fork:108,form:[3,4,13,47,65,78,80],format:[3,11,12,13,14,15,22,25,26,28,30,32,33,34,43,45,47,48,64,80,83,86,88,112,114,119],formatloc:[2,10,11,88,97,111],formatt:[5,7,43,86,88,97,103,111,116,119],former:[13,14],formerli:[3,4,84],forward:[18,44,65],foul:30,found:[3,4,28,30,46,59,64,71,83,108,112],four:[3,20,36,64,67,79],fourier:65,fraction:89,framework:[108,114,119],free:[36,64],free_mem:65,freedom:55,freeli:119,freq:[28,81],frequenc:[3,11,16,28,33,35,65,66,68,80,81,82,83,120],frequency_set:28,frequencysweep:80,frequencysweepmagphas:80,frequent:108,fridg:[78,114],friendli:74,from:[0,1,2,3,4,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,30,32,33,34,35,36,37,42,43,45,46,47,48,52,54,55,64,65,66,68,70,71,74,75,77,78,80,82,83,85,86,87,90,91,105,108,110,111,112,114,115,119,120],fron:8,front:[33,83],frontend:116,full:[0,2,23,25,32,33,43,48,83,86,88,114],full_nam:[0,11,42],full_trac:28,fulli:[27,28,33,108],fullrang:71,fun:70,func:[3,15,59],func_nam:19,functool:35,fundament:119,further:[79,111,114],furthermor:[1,34,74],futur:[83,108,120],gain:[77,82],garbag:65,gate:[7,10,11,23,38,67,111,119,120],gate_frequ:120,gate_frequency_set:120,gather:10,gather_paramet:10,gave:30,gcc:64,gee:33,gener:[3,4,11,23,27,29,30,34,36,43,45,57,64,66,68,71,74,75,79,80,81,82,83,84,103,108,111,112,114,115,119],generate_awg_fil:83,generate_channel_cfg:83,generate_sequence_cfg:83,get:[0,2,3,4,6,7,9,10,11,12,15,18,19,20,21,22,24,25,26,27,29,31,32,33,34,35,37,42,46,53,54,55,63,65,68,70,71,74,77,78,80,82,83,91,108,112,116,119,120],get_al:[71,78,80,83],get_board_info:65,get_buffers_en:71,get_capture_data:[17,82],get_chang:78,get_cmd:[3,4,11,55,56,65,78,120],get_compon:34,get_current_folder_nam:83,get_data_set:[0,1,11,12,13,14,15,35],get_error:83,get_filenam:83,get_filter_valu:71,get_folder_cont:83,get_funct:65,get_idn:[3,18,64,65,67,68,71,77,78,82,83],get_instrument_valu:63,get_jumpmod:83,get_latest:[29,33,37,38,54,55],get_mod:71,get_module_idn:82,get_module_statu:82,get_pars:[3,4,55,56],get_pol_dac:71,get_power_at_freq:81,get_processed_data:[18,65],get_raw:[33,63,66,82,83],get_remote_set:71,get_sample_r:65,get_spectrum:81,get_sq_mod:83,get_sqel_loopcnt:83,get_sqel_trigger_wait:83,get_sqel_waveform:83,get_stat:83,get_voltag:82,getattr:3,getcwd:30,getlogg:[5,29,30,33,36],gettabl:[3,9,37,54,55,77,82,87,111,119],getter:[4,15,111],getx:120,ghz:35,giga:73,giga_b:73,gimm:23,git:[7,19,112,114],github:[108,110,111,112,114,115],giulioungaretti:108,give:[1,4,9,11,34,35,36,52,67,83,108,119],given:[0,1,25,26,34,39,49,64,65,67,79,108,119,120],global:[3,10,20,28,112],glori:4,gnuplot:[48,114],gnuplot_format:[5,7],gnuplotformat:[5,7,43,86,88,97,111,119],goal:108,goe:[4,32],going:[3,6,36,71],golden:3,gone:32,good:[2,3,11,29,33,80,108],googl:[7,108],got:[14,108],goto_root:83,goto_st:[30,83],goto_to_index_no:83,gotten:[23,25,26,30,119],gpib0:[8,16,17,19,21,32,35],gpib:[3,4,83,85],gradual:20,grai:89,graph:[11,35,37,54,55],graphicswindow:89,great:108,greatest:119,green:115,grid:[28,80],ground:80,group:[1,3,50,64,80,108,114,119],grow:113,gs200:[63,102,112],gs200_monitor:85,gs200except:85,gs210:112,guarante:2,gui:[1,2,15,21,33,108,114,116],guid:[1,65,108,113,115],guidelin:108,h5fmt:5,hack:[108,116],had:[10,30,64],half:33,halfrang:71,halt:61,halt_bg:18,han:30,hand:30,handl:[3,4,9,37,42,43,47,54,64,65,70,71,89,106,111,112],handle_buff:65,handle_clos:1,handler:5,hang:108,happen:[3,25,26,30,42,59,119],happi:108,hard:[83,108],harder:[108,119],hardwar:[25,26,30,34,67,71,78,80,83,108,111,119],harmon:16,harvard:[20,63],has:[1,3,7,9,11,16,20,22,23,25,26,29,30,32,33,34,36,37,42,48,54,55,64,65,68,74,76,82,83,108,116,119,120],hasattr:[15,19],hasn:[3,64],have:[1,2,3,4,6,9,10,11,22,25,26,28,29,30,33,34,35,36,37,42,46,48,53,54,55,58,63,64,65,66,67,68,70,71,74,75,77,80,81,82,83,84,90,108,111,113,114,115,119,120],haz:101,hdf5:[103,119],hdf5_format:5,hdf5format:5,head:83,header:[18,23,64,108],heater:78,heater_off:78,heater_on:78,heatmap:[89,90,116],height:[89,90],helium:[78,106],help:[2,3,30,33,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,83,87,89,90,91,108,114,119],helper:[2,5,30,74,97,116],henc:67,here:[1,3,4,7,9,10,16,18,22,25,26,27,28,33,42,64,68,70,74,77,78,82,83,87,108,115,119],hesit:108,hewlett:[8,35,66],hidden:36,hierarchi:109,high:[3,11,80,83,108,119],high_definition_st:27,higher:[34,116,119],highest:[45,119],highlevel:15,hislip0:14,histori:[83,108],hkey_current_usersoftwareoxford:78,hold:[3,14,16,22,24,33,66,68,78,80,82,83,111,119,120],hold_repetition_r:83,holdoff:33,home:[2,41,108,116],home_file_nam:[2,41],hook:[63,68,75],hopefulli:36,horisont:[29,33],horizont:[29,112],horizontal_scal:29,host:[25,26],hotfix:108,hound:81,how:[2,3,6,9,11,28,30,33,34,35,37,46,48,52,54,55,57,58,82,89,108,110,111,112,113,119,120],howev:[4,27,28,34,68,108],hp33210a:63,hp8133a:63,hp8753d:[63,112],hp8753d_tutori:35,hp8753dtrace:66,hp_83650a:63,hpintpars:66,htm:71,html:[1,4,60],http:[1,4,60,71,82,108,110,112,115],huge:[37,54],human:[3,11,65,102],i3d:34,iPS:103,id1:48,id2:48,id3:48,idea:[3,11,80,108,113],ideal:108,ident:[3,9,22,74,83,120],identifi:[37,43,46,48,50,54,55,67,78,82],idl:[31,83],idn:[3,4,7,8,11,16,18,22,31,35,64,67,68,70,71,77,78,82,83],idn_dict:4,idn_param:67,idr:78,iff:83,igh:78,ignor:[28,37,54,59,65,83],ignore_kwarg:15,igor:114,illustr:[1,35],ilm200:63,ilm:[78,106],imaginari:28,imm:[14,23,82],immedi:[11,12,23,25,26,39,44,65,74,91,108,119],impact:119,imped:[3,4,11,18,33,65,80],impedance1:18,impedance2:18,imper:108,implememnt:91,implement:[10,18,34,36,46,49,57,58,64,65,74,78,80,81,83],implicit:108,implicitli:119,importlib:5,impos:119,improv:[107,108],imprrov:104,inc:[8,13,22,34],inch:90,includ:[3,9,12,37,45,54,55,57,60,64,68,75,77,78,82,83,87,89,90,108,111,112,113,114,119,120],inclus:83,inconsist:119,inconsistensi:83,inconsit:29,incorrect:[4,108],incorrectli:65,increas:[9,27,34,108],increment:[48,55,105,119],ind:33,inde:[32,34,35,108],indend:33,indendet:36,indent:[8,108],independ:[46,119],index0:9,index1:9,index:[1,9,70,71,83,90,119],indic:[0,1,34,42,83,119,120],individu:[1,28,34,39,43,57,71,76,112],inf:[15,23,25,26],infer:42,infin:83,infiniium:[63,112],infiniiumchannel:68,infinit:[30,83],infinium:36,info:[2,3,7,15,21,24,33,45,65,83,113,116],inform:[3,11,18,37,45,49,54,55,60,65,81,83,89,106,108,114,116,119],inherit:[15,65,80,83],inifit:[25,26],init:67,init_measur:[14,15,75],init_s_param:[28,80],initi:[1,3,11,17,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,63,64,78,83,86,87,88,89,90,91,114,119],initial_valu:[1,3,9,53,55],initialis:[4,15,68,80,81,83,112],initialz:71,inlin:36,inner:[0,1,9,42,48,119],input:[2,3,15,19,30,34,36,47,55,63,64,71,78,80,82,83,108,111,112,119],input_config:16,input_coupl:16,input_imped:3,input_shield:16,insert:[3,36,45,116],insid:[3,9,12,37,39,43,52,54,83,86,88,108,114,115,119],inspect:[2,34],inst0:[3,12,13,15,22,23,27,28,30,36,80],instal:[33,60,64,68,71,74,82,85,99,106,108,110,114],instanc:[1,2,3,11,37,43,47,54,55,63,65,67,68,71,74,75,77,82,83,84,119],instant:64,instantan:[25,26],instanti:[3,4,18,22,33,35,43,70,76,108,112,119],instdict:30,instead:[0,1,11,33,42,78,83,120],institut:3,instr:[3,4,8,12,13,14,15,16,17,19,21,22,23,24,25,26,27,28,29,30,32,35,36,67,78,80],instruct:[4,34,114,115],instrument:[0,7,9,12,13,15,16,18,19,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,42,47,49,51,53,54,55,56,60,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,97,104,106,108,109,112,114,118],instrument_cod:55,instrument_driv:[3,4,8,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,108],instrument_i:76,instrument_mock:[5,6,11],instrument_nam:[11,18,42],instrument_testcas:63,instrument_x:76,instrument_z:76,instrumentchannel:[3,39,67,68,69,70,74,80,82,83,85,97],instrumentrefparamet:104,instrumentserv:[119,120],instrumentstriton:78,insuffici:119,integ:[3,9,37,42,45,54,64,82,83,85,90,116,119],integr:[1,4,8,19,21,22,81,108,119],integration_tim:8,intellig:[78,119],intend:[34,37,54,58,119],inter:71,inter_delai:[11,17,55,71],interact:[1,3,82,108,112,119],interdepend:119,interest:[33,108,119],interfac:[3,4,33,64,83,112,119],interleav:[18,83],interleave_adj_amplitud:83,interleave_adj_phas:83,interleave_sampl:[18,65],intermedi:108,intern:[3,16,23,33,34,42,55,65,68,74,82,83],internal_clock:[3,18],internal_trigger_r:83,interpret:[10,11,22,119],interrupt:[64,117],interv:[89,90],introduct:118,inv:23,invalid:3,invalidate_trac:66,invert:[3,8,21,77,80,82],invit:108,invok:[3,33],involv:[112,114,119],io_manag:[43,86,88,119],iomanag:111,ion:33,ipinstru:[3,64,68,76,77,78,82,83,97,111],ips120:[63,106],ipython:[0,1,2,7,8,10,15,16,17,18,19,21,24,27,28,29,31,33,35,114],iq_arrai:9,iqarrai:9,irang:[3,26,70],irrespect:[25,26,27,83],irrevers:[64,119],is_awg_readi:83,is_numb:79,is_setpoint:[7,42],is_typ:2,isobu:78,issu:[34,83,101,102,105,108,111],issue_warning_on:15,ital:111,item:[9,31,37,45,54,57,70],iter:[39,57,58,111],iter_error:2,ithaco1:8,ithaco:[3,8,63,112],ithaco_1211:[3,8,21,63],its:[1,3,4,9,11,12,20,25,26,30,33,42,47,55,64,65,82,83,87,90,108,111,119,120],itself:[36,39,45,55,65,83,108,119],iv_sweep:[13,22],ivert:8,ivvi:[63,103,105,106,112],javascript:[0,1,2,7,8,10,15,16,17,18,19,21,24,27,28,29,31,33,35,108],jen:108,jhn:28,jhnsrcqcodesqcodesinstrumentparamet:33,job:[119,120],join:[2,30,108,113],jorgenschaef:108,json:[2,7,8,28,37,49,50,54,55,60,70,82,83,103,114,116,119],json_config:2,jsonschema:2,jtar_index_no:83,jtar_stat:83,jump:[11,20,30,71,83],jump_log:83,jump_tim:83,jump_to:[30,83],jumplog:83,junk:10,jupyt:[1,11,114,115,117],just:[0,3,6,7,10,11,12,14,22,29,30,33,36,47,48,61,67,70,71,108,111,115,118,119,120],keep:[34,46,65,67,104,108,114,116,119],kei:[1,3,10,30,43,57,65,82,83,88,91,116,119],keightlei:104,keith:[8,13,19,21,22,102],keith_smua_curr:13,keith_smua_iv_sweep:13,keith_smua_volt_set:13,keithlei:[3,8,13,83,103,112],keithley1:[8,19,21],keithley2:[8,19,21],keithley_2000:63,keithley_2400:63,keithley_2600:[3,8,13,19,21,22,63],keithley_2600_channel:[3,13,22,63],keithley_2614b:[3,83],keithley_2700:63,keithley_smua:22,keithley_smua_iv_sweep:22,keithley_smub:22,keithleychannel:[3,83],kelvinox:[63,106],kept:116,kernel:[116,117],keysight:[11,63,103,104,105,106,112],keysight_33500b:[11,23,63],keysight_33500b_channel:63,keysight_34465a:[12,14,15,63],keysight_e8267d:63,keysight_m3201a:68,keysight_volt:12,keysightagilent_33xxx:63,keysightchannel:68,keyword:[45,47,59],khz:[3,27,28,29,35],kilo:73,kilo_b:73,kind:[0,33,83,120],kmstring:3,knob:[3,119],know:[11,57,58,108,113,120],known:[3,4,42,84],knownmodel:3,kwarg:[1,2,3,4,9,15,17,18,19,47,49,50,51,53,55,56,58,59,60,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,88,89,90,91,120],lab:[33,74,114],label1:48,label2:48,label3:48,label:[0,1,3,7,8,9,11,18,30,33,37,40,42,45,48,54,55,62,63,65,66,83,108,119,120],lack:67,lakeshor:63,lambda:[6,11,34,65],languag:48,larg:[4,7,30,55,83,108],larger:55,last:[1,2,7,15,19,33,55,65,70,74,83,108,119],last_saved_index:46,latenc:[11,12],later:[3,33,35,37,43,44,45,54,88,91,108,119,120],latest:[4,27,65,70,115,119],latest_cal_d:[18,65],latter:[13,14,90],launch:[74,115],lazi:112,lead:[78,108],leak:65,learn:[4,33,114],least:[33,108,111,119],leav:[37,49,54,83],leave_persistent_mod:78,left:[1,89,115],legacy_mp:[2,116],legend:28,len:[3,14,15,17,33,64,83,120],length:[9,12,23,30,33,54,64,74,83,87,119,120],less:[4,35,55,108,119],lest:30,let:[1,4,22,27,28,32,34,35,42,89,108,112,116,120],letter:108,leve:3,level:[2,3,11,15,18,27,35,36,42,48,78,82,83,85,106,108,116,119,120],levelnam:5,levelv:3,lib:[2,15,19,105],librari:[15,30,64,68,108,116],life:[68,108],like:[3,4,10,11,27,28,30,33,34,37,42,46,47,54,57,58,65,68,75,78,80,83,108,111,114,116,119],limit:[1,4,18,25,26,29,32,34,64,76,108,119,120],limiti:[8,22],limitv:[8,22],lin:[33,35,81],linalg:34,line2d:[15,33],line:[3,4,6,8,11,15,19,21,22,33,48,68,89,90,108,113,114],linear:[0,28,35,80,120],linearli:[33,111],liner:108,link:[42,58,64,65,111,115],linkag:109,linspac:[0,14,30,120],linux:115,list:[1,9,11,13,14,18,26,39,40,43,45,47,50,57,62,64,65,68,70,71,74,77,78,80,82,83,88,91,97,99,101,103,108,111,112,119,120],listcomp:15,liter:108,littl:[108,119],live:[1,86,110,112,119,120],load:[2,3,9,30,41,46,64,81,83,86,101,112,114,116,120],load_and_set_sequ:83,load_awg_fil:83,load_data:[11,43,97],load_ext:2,loaded_data:11,loadlibrari:3,loadtestsfromtestcas:5,loc:45,loc_fmt:10,loc_provid:[2,10,11,45],loc_provider_junk:10,loc_record:[10,88],local:[0,9,12,13,14,30,33,36,37,43,47,49,54,55,60,67,68,78,83,85,108,114,119,120],localnod:3,locat:[0,1,2,5,7,9,12,13,14,15,16,17,18,19,21,22,25,26,27,28,29,33,35,36,43,44,45,46,68,83,86,88,112,115,116,119,120],location_provid:[2,11,45,88,111],lock:[11,33,39,71,78,82],lockin:[3,16,77,82],lockin_ch1_databuff:16,log:[2,5,6,15,29,30,33,35,36,74,81,114,116,120],logger:[5,29,30,36],logic:[50,83,108],logic_jump:83,loglevel:[2,116],logo:101,lograng:57,logview:108,longer:[28,45,48,52],look:[3,6,11,25,26,27,29,33,36,45,60,65,108,116,119,120],loop:[0,1,7,9,10,13,14,15,18,19,21,28,29,33,35,37,38,42,43,46,48,54,55,59,61,65,83,87,91,97,101,111,112,118,120],loop_indic:15,loop_result:9,loopcount:83,lose:14,lost:64,lot:[3,34,42,83,108],loudli:11,love:[108,113],low:[3,11,15,28,33,35,83,119,120],lower:[42,119],lowest:[45,82],lua:[13,22,83],luasweepparamet:83,m1s:[30,83],m2s:[30,83],m3201a:63,m3300a:[63,103],m3300a_awg:68,m3300a_dig:68,m4i:[102,103,105],mac:[7,10,18,19,21,24],machin:[13,83,108],made:[2,4,33,68,74,116],mag:35,magic:30,magnet:[34,76,78,103,106,112,114,120],magnitud:[28,34,80,119],magnitur:28,mai:[3,4,11,20,22,25,26,27,28,29,30,33,38,43,46,47,57,58,83,89,90,99,108,111,116,119],mail:113,main:[1,83,119],mainfram:82,mainli:11,maintain:[3,77,82,108,109,113,119],major:4,majorana:116,make:[3,4,6,9,10,11,12,13,16,18,19,21,22,24,25,26,27,33,34,35,42,47,48,52,65,66,70,71,78,82,83,108,111,112,114,115,119],make_and_save_awg_fil:[30,83],make_directori:83,make_send_and_load_awg_fil:[30,83],manag:[3,19,43,45,46,71,78,82,88,119],mandatori:[16,83,108],mani:[1,3,4,9,33,42,43,48,57,58,65,68,105,108,119],manner:30,manual:[22,28,33,34,68,71,75,77,78,80,82,83,112,114,119,120],manualparamet:[0,1,3,9,18,97,120],map:[3,14,47,53,55,65,82,90,119],mark:[82,119],marker1:83,marker1_amplitude_n:83,marker1_high_n:83,marker1_low_n:83,marker1_method_n:83,marker1_offset_n:83,marker1_skew_n:83,marker2:83,marker2_amplitude_n:83,marker2_high_n:83,marker2_low_n:83,marker2_method_n:83,marker2_offset_n:83,marker2_skew_n:83,marker:[30,83],mashup:101,mass:83,master:[108,112,115],match:[4,27,30,33,45,47,48,54,55,64,78,80,82,83,119],math:34,matlab:1,matplot:[0,2,11,16,17,18,22,27,28,29,35,36,97,104,112],matplotlib:[0,2,5,6,10,12,13,15,16,17,18,19,20,21,24,27,28,29,30,31,33,34,35,36,90,112,116],matter:[4,30,108],maunual:2,max:[23,36,48,55,71,81,82],max_delai:56,max_frequ:82,max_sampl:[18,65],max_status_ag:70,max_subplot_column:1,max_val:67,max_val_ag:[55,56],max_work:120,maxim:[25,26,83],maximum:[34,55,67,76,81,116,119],mayb:[42,52,108],mea:[16,17],mean:[2,3,9,13,14,27,28,33,34,52,55,83,108,116,119,120],meaning:3,meaningless:108,meant:[47,74],meassur:28,measur:[0,1,3,7,9,10,12,13,14,15,16,17,18,19,21,22,27,28,29,34,36,37,42,43,48,52,54,55,58,59,63,68,74,77,80,82,85,91,97,105,112,118],measured_param:[3,77,82],measured_v:1,measured_val_2:1,measured_valu:58,measurerange_i:[13,22],measurerange_v:22,mechan:71,media:83,mega:73,mega_b:73,member:114,memori:[43,64,65,70,83,88,116,119],memory_s:[18,65],memrori:30,mention:[3,108],mercuri:[103,112],mercuryip:[24,63],mercuryipsarrai:78,merg:108,merger:3,merlin:7,messag:[5,15,23,29,30,67,68,70,71,82,83],message_len:71,messagebas:15,messur:28,met:[55,99],meta:[6,33,114,118,119],meta_fil:8,meta_serv:120,meta_server_nam:120,metadat:[50,58],metadata:[3,11,21,37,42,46,49,50,54,55,60,63,82,97,103,112,114,119],metadata_fil:48,meter:[3,7,10,11,22,78,83,106],method:[1,2,3,9,10,11,13,14,25,26,30,33,34,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,63,65,68,70,74,75,78,82,83,84,87,89,90,91,108,119,120],methodnam:[63,68,75,84],mhz:[28,33],microsoft:108,might:[20,22,65,108,119],millisecond:82,mimic:111,mimick:119,min:[23,71],min_val:67,min_valu:9,mind:65,mini:[35,48],minim:33,minimum:[55,67,71],minu:116,minut:3,mirror:119,misc:97,misinterpret:30,mismatch:64,miss:[108,120],mistak:108,mix:[3,108],mixer:71,mock:[6,34,108],mockgat:[7,10],mockinstru:111,mockmet:[7,10],mockparabola:5,mockparabola_run:5,mocksourc:[7,10],mode:[0,3,7,8,9,12,13,14,18,20,22,27,32,33,34,43,64,65,66,70,74,78,80,81,83,112,119,120],model:[3,7,8,10,11,13,18,21,22,27,35,64,65,68,69,76,77,78,79,80,82,83,108,111,116,119],model_336:63,modif:116,modifi:[1,26,55,57,74,108],modified_rang:46,modul:[2,3,4,11,15,19,99,108,116],modular:[114,119],mohm:[13,27],moment:[68,83],monitor:[10,52,61,85,91,111,114,119],more:[1,4,7,11,25,26,28,30,33,35,36,43,47,48,55,65,68,74,83,100,105,108,111,112,114,115,119],most:[1,2,3,4,9,15,19,20,27,28,33,54,55,65,68,75,80,83,108,111,115,119],mostli:[33,111],motiv:108,move:[3,10,34,35,78,83],mpl_connect:1,msec:[3,8],msg:78,mso:36,mso_chan4_trac:36,msos104a:[36,68],mua:25,much:[3,4,28,46,80,108,119],multi:[11,70,100,119],multichan_paramclass:39,multichannelinstrumentparamet:[39,70],multilin:108,multimet:[3,32,83,103],multiparamet:[3,28,74,77,78,80,82,97,103,112],multipl:[0,1,9,26,33,39,47,54,55,68,71,75,80,83,112,119,120],multipli:[55,119],multiprocess:[19,100,103,114,120],multityp:111,multmet:32,must:[3,9,11,27,29,30,33,35,37,42,45,48,49,54,57,58,65,67,68,74,80,82,83,88,108,111,116,119,120],mvpp:29,my47004267:8,my48002016:12,my54505281:14,my54505388:[12,15],my55510104:36,my57800256:23,my_experi:115,mycount:9,myget:11,myinstrument:120,myset:11,myvector:120,myvector_set:120,n48280:16,n5171b:68,n5181a:68,n51x1:63,n_avg:35,n_sampl:17,naiv:13,name:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,22,24,25,26,27,28,29,30,31,33,34,35,36,37,39,40,41,42,43,45,47,48,49,50,51,53,54,55,56,60,62,63,64,65,66,67,68,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,88,91,108,111,116,119,120],name_to_delet:3,nameofyourdriv:4,namespac:[10,97,116],nan:11,nativ:[11,82],navg:81,navig:[4,115],nbagg:[5,6,10,18,19,20,21,24,28,29,30,31],nbi:[108,113],ndarrai:[37,42,54,82,83,119],nearli:3,necessari:[18,33,42,58,64,65,74,114,119],necessarili:[37,54,108,111],need:[1,2,3,4,9,11,17,30,34,35,36,42,65,78,82,83,108,111,112,119,120],neg:[27,36,61,71],neither:108,nep:[33,74],nepbw:74,nepbw_to_timeconst:74,nest:[9,11,12,42,52,119],network:[35,36,66,80,119],never:[55,108],new_cmd:[78,83],new_data:[43,97],new_indic:15,new_nam:3,new_valu:15,newer:80,newlin:48,newlinestripp:83,next:[1,4,27,30,32,35,37,45,48,54,83,115,119,120],nice:[1,3,10,33,35,108],nick:108,nielsen:[108,113],nifti:3,nix:115,no_instru:120,nobodi:108,nois:[3,22,27,35],noisi:34,non:[30,34,87,108,120],none:[2,3,5,7,8,11,15,16,18,19,21,22,24,33,34,37,39,40,42,43,45,47,48,49,50,52,53,54,55,56,57,60,62,63,65,66,67,68,70,71,74,76,78,80,81,82,83,85,86,88,89,90,91,101,108],nonetyp:[37,39,50,54,55,63],nonstandard:[64,68,77,78,82,83],noofpoint:30,noofseqelem:30,nor:108,norm:[23,34],normal:[13,27,37,43,44,47,54,55,57,68,83,111,119],notabl:33,notat:[2,57,66],notch_filt:16,note:[1,2,3,4,9,11,22,25,26,30,32,33,34,36,37,39,43,54,55,57,58,60,67,70,74,77,78,81,82,83,86,88,99,114,116,119,120],notebook:[1,2,3,12,13,15,16,17,18,22,27,29,30,33,34,35,103,105,112,114,115,116,117],noth:[3,22,65,67],notic:[1,22,28],now:[0,4,7,9,10,11,16,25,26,27,28,30,32,33,34,35,37,54,80,91,103,108,115,116,120],nplc:[3,8,12,14,15,19,21,22,83,112],nplc_list:68,npoint:36,npt:[18,28,80],nr_bytes_written:15,nrep:[30,83],num:[7,13,14,15,35,57,90],num_acquisit:27,num_chan:70,num_channel:83,num_port:28,number:[0,1,3,8,9,10,11,12,14,15,19,21,25,26,27,28,30,33,45,48,49,52,54,55,57,60,63,64,65,67,68,70,71,74,78,79,80,82,83,85,108,111,116,119,120],number_dac:71,number_format:48,number_of_averag:35,number_of_channel:65,number_of_paramet:120,numdac:71,numer:[48,119],numpi:[0,3,4,5,9,10,12,13,14,15,19,21,24,25,26,29,30,31,32,33,34,37,42,54,74,82,83,105,119,120],numpoint:83,numval:[14,15],nxsingl:27,object:[0,1,2,3,7,8,10,11,15,16,17,18,19,21,24,27,28,29,31,33,35,37,39,42,44,46,47,52,54,55,57,58,65,67,70,71,81,86,88,91,108,109,116,119,120],obsolet:30,obtain:[1,55,65],obviou:52,occasion:46,occupi:[27,45,83],occur:[1,34,64,67,71,82,116,119],oct:16,oem:83,off:[3,8,12,14,15,20,22,23,25,26,27,28,29,32,33,35,47,68,70,75,78,80,83,85],off_modul:80,offer:[0,1,120],offload:119,offset:[18,20,27,29,33,34,80,83],often:[1,4,6,43,108,111],ohm:[18,27,33],old:[16,22,28,29,104],oldest:23,oldn:33,omit:[37,54,55,78],on_modul:80,onboard:22,onc:[0,6,9,10,11,42,46,83,108,111,115,119,120],one:[1,2,3,9,10,11,13,16,20,22,25,26,27,28,29,30,33,34,36,37,40,42,43,46,47,48,52,54,55,57,62,63,64,65,67,70,71,80,82,83,85,88,108,111,112,116,119,120],ones:[68,75,80,83,108],onli:[3,4,5,9,11,18,19,25,26,27,28,29,30,33,34,37,42,43,45,47,48,54,55,57,58,64,65,66,68,70,74,75,77,78,80,82,83,85,88,108,112,119],onlin:1,onto:[83,119],opc:83,open:[4,8,46,49,60,64,78,90,104,108,114,115,119],opendevic:81,oper:[1,3,15,18,37,38,44,54,57,64,67,83,112,116,119,120],oppos:[3,30],opposit:89,optim:114,option:[2,3,23,27,30,37,39,40,42,43,45,46,47,49,54,55,57,58,60,62,63,68,71,78,80,82,83,85,86,88,101,105,108],order:[2,3,11,30,33,34,40,43,47,62,74,76,108,116,119],ordereddict:[0,43],org:[1,60],organ:[108,112],orient:119,origin:[12,33,63,119],osc:33,oscil:[33,68],oscillator2_freq:33,oscilloscop:[3,4,68,80,83,112],osx:115,other:[1,2,3,9,25,26,27,28,30,33,36,45,46,52,59,61,64,65,67,68,77,78,82,83,87,89,90,108,114,119],otherclass:3,otherwis:[3,30,42,64,65,67,108,119],our:[4,27,28,48,108],out:[0,3,6,9,11,15,19,23,25,26,28,29,33,34,37,38,54,64,65,70,78,80,82,108,112,113,114,117,119,120],outer:[1,9,11,42,48,119],output:[3,4,8,10,13,18,19,20,21,22,24,25,26,27,28,30,32,35,47,52,55,64,67,68,70,71,74,77,79,80,82,83,85,87,108,112,119],output_interfac:16,output_pow:35,output_rang:85,output_waveform_name_n:83,outputchannel:68,outsid:[32,61,65,71,74,83],over:[0,3,4,11,28,32,33,36,39,46,52,57,58,65,81,108,111,119,120],overhead:[14,119],overid:78,overlap:4,overload:[67,80,82],overrid:[3,43,45,46,64,68,70,74,77,78,82,83,88],overridden:1,overview:[11,22,35,36,83,112,116,118],overwrit:[2,19,21,71,83,88,116],overwritten:45,ovsr:82,own:[2,3,11,28,47,64,65,90,108,119],oxford:[24,31,63,103,106],oxfordinstruments_ilm200:78,oxfordinstruments_ips120:78,oxfordinstruments_kelvinox_igh:78,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:83,pack_waveform:83,packag:[1,2,15,33,99,108,114,116],packard:[8,35,66],packed_waveform:83,pad:3,page:[82,97,99,108,119],pai:108,pair:12,panel:[33,67,83,114],panic:119,par:30,paraemt:63,parallel:78,param:[9,30,31,33,55,65,70,71],param_id:15,param_nam:[42,70],param_out:15,paramet:[1,6,7,8,10,11,13,18,20,21,22,25,26,28,30,31,33,34,35,36,37,38,39,40,42,43,44,45,47,48,49,50,51,52,53,54,57,58,59,60,61,62,63,64,65,66,67,68,70,71,74,75,76,77,78,80,81,82,83,85,86,87,88,89,90,91,97,100,102,105,108,109,112,114,118],parameter_class:3,parameter_nam:101,params_to_skip_upd:70,paramt:[0,62,120],parent:[3,37,39,47,51,54,55,58,67,68,69,70,74,80,82,83,85],parenthes:108,pars:[30,47,64,68,77,78,79,82,83],parse_awg_fil:[30,83],parse_multiple_output:79,parse_on_off:[68,75,80],parse_output_bool:83,parse_output_str:83,parse_single_output:79,parse_string_output:79,parsebool:83,parseint:83,parser:[3,47,66,82,83],parsestr:[66,83],part:[2,3,4,10,28,37,45,54,55,81,82,85,103,108,111,112,116,119],parti:36,partial:[35,79,120],particular:[9,30,33,34,111,119],particularli:[47,50,82,119],pass:[1,3,4,35,45,47,58,59,63,65,68,71,76,80,85,88,89,90,108,116,119,120],pat:83,patch:108,path:[2,4,11,30,41,43,44,46,65,78,83,86,88,115,119],pattern:83,paus:34,pci:[3,64],pcie:[64,65,103],pcie_1751:63,pcie_link_spe:[18,65],pcie_link_width:[18,65],pcserno:36,pdf:[70,82],peak:27,pend:83,pep8:108,per:[3,13,14,15,18,22,37,42,54,65,66,67,70,71,76,83,114,120],percent:[33,74],percentag:78,perf:108,perfom:12,perform:[1,4,11,12,16,18,22,25,26,27,33,34,46,55,60,65,71,74,81,83,87,104,106,108,119],perform_safety_check:76,perhap:[15,119,120],period:[27,36,43,89,90],persist:[49,76,78],persistent_switch:76,person:108,phase:[9,16,23,28,33,65,74,80,119],phase_delay_input_method_n:83,phase_n:83,phi:[33,34],phi_measur:34,physic:[3,4,25,26,43,63,67,86,88,91,119],pick:108,pictur:119,piec:[111,119],pillar:119,pin:64,ping:108,pinki:108,pip:[71,108,114,115],pixel:89,place:[1,2,25,26,27,68,89,108,119],plai:11,pleas:[3,22,30,33,36,70,82,83,108,113],plenti:36,plese:113,plot:[0,2,3,15,16,17,18,21,22,23,25,27,28,29,30,32,33,34,35,36,42,97,101,104,105,112,116,119],plot_1d:11,plotlib:[2,116],plotq:21,plotter:33,plt:[1,10,12,13,15,17,19,21,24,27,28,29,30,31,33,34,36,90],plu:116,plubic:99,plug:[13,68,114],plugin:108,plural:9,point:[11,12,13,14,15,16,28,33,34,40,44,48,52,62,74,78,80,81,83,97,114,119],poitn:83,polar:71,polish:114,poll:[13,16],polyfit:34,poor:20,popul:[42,50,51],popular:3,port:[20,28,31,34,49,64,67,76,78,81,114],port_count:64,posit:[47,80,119],possibl:[3,4,9,20,28,30,33,77,78,82,83,116,119],post:108,post_acquir:65,post_delai:[11,17,55],post_trigger_act:74,potenti:[22,37,43,52,54,114,119],power:[3,22,28,34,35,68,76,78,80,81,103,108,119],power_limit:38,ppi:64,pprint:[7,8],practic:108,pre:[86,112],pre_acquir:65,pre_start_captur:65,preamp:[3,77,82],preamplifi:[3,77,82],prece:74,preced:48,precis:[20,71,74,102],preconfigur:2,predefin:[30,59,82,83,112],prefer:[114,119],prefix:108,preliminari:12,prepar:[13,14,15,27,33,35,65,68,74,80,82,83,112,119],prepare_buffer_readout:[16,82],prepare_curvedata:[29,36,68,83],prepare_for_measur:81,prepare_readout:82,prepare_scop:[33,74],prepare_trac:[27,35,66,80],preparesweep:83,prepend:[42,83],preprocessor:64,prerequisit:112,present:[3,4,16,77,82,85,108,119],preservechannelset:83,preset:81,preset_data:42,press:[1,83,117],pretend:4,pretti:[25,26,35,70,74],prevent:[3,37,54,55,65,71,83],previou:[1,7,55,67,108],previous:[74,83,119],primari:114,princip:47,print:[0,1,2,9,10,11,12,14,15,18,19,21,22,24,25,26,30,31,32,33,34,67,68,70,74,83,120],print_al:66,print_cont:83,print_modstatu:66,print_overview:[25,26,70],print_readable_snapshot:[11,16,22,28,35],print_sweeper_set:[33,74],printslop:[25,26,70],prior:[35,63,67],prioriti:[45,119],privat:[65,97],privileg:64,probabl:[47,65,80,108,119],problem:[30,32,108],procedur:[70,119],process:[10,18,65,108,119],produc:[28,119],profit:115,program:[1,65],programm:[65,76,83],programmat:[2,83,114],progress:52,progress_interv:[15,52],project:[3,108],prompt:115,proper:[33,71],properli:[4,34,83],properti:[2,3,4,64,116,119],protect:71,protocol:[18,71,119],provid:[1,2,3,9,18,25,26,42,45,47,49,55,58,65,68,75,82,84,88,89,90,108,111,112,119],proxi:119,psu:78,pts:[16,33],pull:[15,33],pull_from_serv:[7,10,18,21,119],puls:[25,26,30,66,103],purchas:33,purpos:[3,9,119],push:119,push_to_serv:[7,21,119],put:[4,30,32,34,48,70,78,83,119,120],pxie:68,py_head:[63,72],pyenv:2,pyplot:[1,10,12,13,15,17,19,21,24,27,28,29,30,31,33,34,36],pyplot_tutori:1,pyqt:1,pyqtgraph:[0,1,2,21,23,25,32,97,104,106,116],pyqtmaxplot:116,pyqtplot:116,pytest:[4,108],python3:2,python:[3,11,36,43,64,65,71,78,83,86,88,101,108,114,115,119],pyvisa:[3,15,60,112,119],pywin32:106,qcmatplotlib:[0,2,18,97],qcode:[0,1,4,5,6,7,8,13,14,15,17,36,97,99,108,109,110,113,118,119,120],qcodes_colorbar:1,qcodes_config:116,qcodesrc:2,qcodesrc_schema:28,qdac:[12,14,63,103,104,105,106,112],qdac_ch01_v_set:14,qdac_ch02_v_set:15,qdac_ch41_v_set:12,qdac_ch42_v_set:12,qdac_channel:[63,112],qdac_setpoint:14,qdacchannel:70,qdacmultichannelparamet:70,qdev:[12,14,15,19,25,26,63,114,116],qtlab:81,qtplot:[0,2,11,15,21,23,25,32,35,97,112],qtwork:71,quadratur:9,quantiti:48,quantum:115,queri:[19,25,26,33,70,80,81,82,83,119],queriabl:4,querysweep:81,question:[68,70,80,108],queue:[19,23,30,67,68,83],quickli:30,quiet:15,quirk:100,quit:[1,3,38,108,119],quot:48,qutech:[17,63],qutech_controlbox:75,r_offset:16,rack:[17,71],rad_to_deg:75,rainbow:[10,45],rais:[2,3,4,15,19,32,34,36,38,39,55,58,61,63,64,65,68,71,74,75,78,82,83,84],raiseexc:82,ramiro:81,ramp:[3,11,15,20,23,25,26,32,34,55,67,76,78,83,85],ramp_al:67,ramp_curr:[32,85],ramp_rat:[34,67],ramp_to:85,ramp_voltag:[32,85],ramptim:25,randint:[6,11],random:[2,3,6,11,30,34,68],rang:[4,8,9,12,14,15,17,18,23,25,26,27,28,30,32,33,35,36,64,65,68,71,74,80,81,83,119,120],range_auto:8,rangei:8,rangev:8,rate:[16,18,33,34,36,65,67,71,76,82],rather:[20,33,68,108,120],ravel:119,raw:[3,14,71,111,112,114],raw_trac:68,raw_val:14,raw_valu:[11,55],rawtrac:68,reach:[34,82,108],read:[3,4,5,9,11,19,21,25,26,29,32,34,43,46,47,48,49,60,64,67,70,71,77,78,80,82,83,85,86,88,108,111,112,115,116,119],read_metadata:46,read_one_fil:46,read_pin:64,read_port:64,read_stat:70,readabl:[3,11,55,65,102,108],reader:11,readi:[9,11,33,66,83,88,108,115],readili:1,readm:108,readout:[70,82,104],readthedoc:[4,60],real:[3,11,28,68,77,82,108,111,114,119,120],realli:[4,25,26,42,68,115,119],realtim:[108,114],reappear:108,rear:83,reason:[11,34,108,120],recal:11,receiv:[1,3,23,67,82],recent:[2,15,19,55],recommend:[33,108],reconnect:119,reconsid:22,reconstruct:46,record:[11,18,45,74,83,88,112,114,119],records_per_buff:[18,65],recycl:65,redirect:[42,102],reduc:[35,47],redund:4,ref:[29,119],refactor:108,refer:[11,33,42,65,82,97,108,110,119,120],referenc:[37,54,55,119],reference_clock_frequency_select:83,reference_multiplier_r:83,reference_sourc:[16,83],refernc:81,reflect:80,refriger:78,reg:[31,63,72],regard:[27,65,119],regardless:108,regist:[82,108],registri:78,regular:[3,6,119],reimport:116,reinvent:108,reject:[3,4,81],rel:[11,28,43,44,86,88,119],relat:[1,119],relationship:119,releas:[46,114],relev:[4,15,27,55,65,82,83],reli:[1,3,65],reliabl:[65,119],reload:[5,46,63,119],remain:65,rememb:[14,28,29,34,36,74],remot:[8,19,24,27,78,89,119],remoteinstru:[8,119,120],remoteparamet:119,remov:[23,28,33,42,43,71,74,78,80,83,103,105,108,112],remove_signal_from_sweep:74,rep:83,repeat:[39,108,119],repet:83,repetit:[30,83],repetition_r:83,replac:[1,4,17,67,105],repo:[2,108],report:[36,109,114],repositori:[108,112,114],repr:[15,67],reprec:28,repres:[3,9,48,55,65,68,82,119],represent:[3,11,64,91,111],reproduc:[108,119],request:[14,34,36,109,119],requir:[4,9,11,33,37,47,54,57,58,60,64,71,74,80,85,88,106,108,116,119,120],res:19,research:[82,104],resend:83,resend_waveform:83,reserv:16,reset:[9,11,13,15,16,27,28,30,35,47,48,66,71,75,76,79,80,82,83],reset_modul:82,reset_voltag:71,resist:3,resistor:[13,32],resit:63,resolut:[8,11,27,71,80,105],resolv:68,resourc:[4,15,46,60,64,68,70,80,82,119],respect:[1,37,54,64,83],respond:3,respons:[3,4,19,47,49,55,60,64,66,67,68,70,77,78,82,83],ressourc:[3,83],restart:116,restrict:[82,111],restructur:108,result:[1,5,9,35,45,65,71,81,83,112,119],ret:15,ret_cod:15,ret_valu:15,retriev:[23,55,83,116],retur:83,return_count:15,return_pars:47,return_self:83,reus:119,revers:[55,57],review:[108,114],revion:67,revok:[25,26],rewrit:119,rewritten:108,rf_off:28,rf_on:28,rho:34,richer:119,rid:42,right:[1,30,34,36,63,65,82,89,91,115],rigol:63,rigol_dg4000:79,rise:[3,8,33],risetim:[3,8,21],robust:3,rohd:[80,112],rohde_schwarz:[27,28,63],rohdeschwarz_sgs100a:80,rohdeschwarz_smr40:80,rol:81,ron:83,root:[43,44,83,86,88],rotate_nvalv:78,rough:109,round:[71,85,105,119],round_dac:71,routin:[68,70],row:[1,48,80],rrm:33,rs232linkformat:71,rs_sgs100a:80,rs_smb100a:80,rst:[47,108],rto1000:[27,63],rto1024:27,rto:[78,112],rtoz:24,rtype:15,rule:[3,34],run:[0,1,4,6,7,10,11,12,13,14,15,16,17,18,19,21,23,28,29,33,34,35,36,52,63,64,66,68,74,75,83,101,112,114,116,119,120],run_cont:27,run_contin:66,run_mod:83,run_n_tim:[35,66],run_singl:27,run_stat:83,run_sweep:35,run_temp:9,run_to_field:78,run_to_field_wait:78,runtest:[63,68,75,84],runtim:[2,116],s11:[28,35],s12:28,s21:[28,35],s22:28,s44:28,s5i:63,s_paramet:35,sa124_max_freq:81,sa124_min_freq:81,sa44_max_freq:81,sa44_min_freq:81,sa_api:81,sa_audio:81,sa_audio_am:81,sa_audio_cw:81,sa_audio_fm:81,sa_audio_lsb:81,sa_audio_usb:81,sa_auto_atten:81,sa_auto_gain:81,sa_averag:81,sa_bypass:81,sa_idl:81,sa_iq:81,sa_iq_sample_r:81,sa_lin_full_scal:81,sa_lin_scal:81,sa_log_full_scal:81,sa_log_scal:81,sa_log_unit:81,sa_max_atten:81,sa_max_devic:81,sa_max_gain:81,sa_max_iq_decim:81,sa_max_rbw:81,sa_max_ref:81,sa_max_rt_rbw:81,sa_min_iq_bandwidth:81,sa_min_max:81,sa_min_rbw:81,sa_min_rt_rbw:81,sa_min_span:81,sa_power_unit:81,sa_real_tim:81,sa_sweep:81,sa_tg_sweep:81,sa_volt_unit:81,sabandwidthclamp:81,sabandwidtherr:81,sacompressionwarn:81,sadevicenotconfigurederr:81,sadevicenotfounderr:81,sadevicenotidleerr:81,sadevicenotopenerr:81,sadevicetypenon:81,sadevicetypesa124a:81,sadevicetypesa124b:81,sadevicetypesa44:81,sadevicetypesa44b:81,saexternalreferencenotfound:81,safe:[34,71,78,108,119],safe_reload:81,safe_vers:71,safeti:[28,34,68,78],safrequencyrangeerr:81,safti:28,sai:[43,86,88,108,120],said:[42,83],sainterneterr:81,sainvaliddetectorerr:81,sainvaliddeviceerr:81,sainvalidmodeerr:81,sainvalidparametererr:81,sainvalidscaleerr:81,sake:[4,35],same:[1,3,6,9,12,18,34,40,42,48,54,57,62,64,74,82,83,90,108,119,120],samp:[17,82],sampl:[14,16,18,36,57,58,63,65,71,82,112,119],sample_count:[14,15,82],sample_r:[18,65],sample_timer_minimum:[14,15],samples_per_buff:65,samples_per_record:[18,65],sampling_r:83,sane:41,saniti:32,sanocorrect:81,sanoerror:81,sanotconfigurederr:81,sanullptrerr:81,saovencolderr:81,saparameterclamp:81,sastatu:81,sastatus_invert:81,satisfi:34,satoomanydeviceserr:81,satrackinggeneratornotfound:81,saunknownerr:81,sausbcommerr:81,save:[0,4,11,15,30,35,37,42,43,46,48,54,55,65,83,87,88,101,108,111,112,114,115,119,120],save_to_cwd:2,save_to_env:2,save_to_hom:[2,116],savvi:114,sawtooth:23,sca:1,scalar:[6,9,11,37,54,68,87,119],scale:[9,28,29,33,35,36,55,63,80,81],scale_param:9,scale_set:9,scale_v:9,scan:28,scenario:[68,108],scene:33,scf:1,schema:[2,28,41,116],schema_cwd_file_nam:41,schema_default_file_nam:41,schema_env_file_nam:41,schema_file_nam:41,schema_home_file_nam:41,scheme:[3,4],schouten:71,schwarz:[80,112],scientist:115,scope:[4,27,29,36,68,74,80,83,112],scope_average_weight:33,scope_channel1_input:33,scope_channel2_input:33,scope_channel:33,scope_correctly_built:33,scope_dur:33,scope_length:33,scope_measur:29,scope_mod:33,scope_samplingr:33,scope_seg:33,scope_segments_count:33,scope_trig_delai:33,scope_trig_en:33,scope_trig_gating_en:33,scope_trig_gating_sourc:33,scope_trig_holdoffmod:33,scope_trig_holdoffsecond:33,scope_trig_hystabsolut:33,scope_trig_hystmod:33,scope_trig_level:33,scope_trig_refer:33,scope_trig_sign:33,scope_trig_slop:33,scopearrai:83,scopechannel:80,scopedata:33,scopetrac:80,scpi:[3,67],screen:[27,83,89,115],script:[4,22,83,112,114,120],sd_awg:68,sd_common:68,sd_dig:68,sd_modul:68,sdk:65,sdk_version:[18,65],seamless:68,search:[45,108,119],sec:[68,83],second:[1,4,7,9,11,16,23,32,33,37,42,43,49,52,54,55,60,61,65,67,71,76,78,82,83,85,88,89,90,113,119,120],section:[113,115],see:[0,1,2,3,6,10,23,25,27,29,30,32,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,65,71,80,82,83,87,89,90,91,108,119,120],seem:[48,108],seen:28,segm1_ch1:83,segm1_ch2:83,segm2_ch1:83,segm2_ch2:83,segment:[1,33,74,83],select:[3,18,34,65,74,83,108,115],self:[2,3,4,9,15,19,21,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,67,68,70,78,81,83,87,88,89,90,91,108,120],semant:114,semi:108,semicolon:[64,68,77,78,82,83],sen:[3,8,21,77],send:[3,13,14,15,34,49,71,77,78,82,83,112,113],send_awg_fil:83,send_dc_puls:83,send_pattern:83,send_sequ:83,send_sequence2:83,send_trigg:17,send_waveform:83,send_waveform_to_list:[30,83],sens:[3,108],sens_factor:[3,8,77],sens_x:21,sensit:[3,8,16,77],sensor:[69,112],sensorchannel:69,sent:[3,13,47,55,78,83,111,119],separ:[4,9,22,46,48,54,64,68,77,78,82,83,91,114,119,120],seper:[67,83],septemb:22,seq:83,seq_elem:30,sequanti:62,sequecn:83,sequenc:[9,30,37,42,52,54,57,67,83,87,90,119],sequence_cfg:83,sequence_length:30,sequence_po:30,sequenti:[33,40,120],seri:[3,68,75,79,80,83,112],serial:[3,4,7,8,11,12,13,14,15,16,17,18,22,23,27,28,29,32,34,35,36,64,65,67,68,77,78,82,83,111],serial_numb:21,serialis:83,seriou:27,serv:3,server:[4,18,19,24,33,65,74,119,120],server_err:19,server_nam:[5,8,18,24,66,120],session:[10,11,15,43,86,88,108],set:[0,1,2,3,4,5,6,8,9,10,12,15,16,18,19,20,21,22,23,24,28,30,32,34,35,36,40,42,43,46,48,52,53,55,57,58,62,63,64,65,66,67,68,70,71,74,75,76,77,78,80,81,82,83,86,87,88,111,112,114,116,119,120],set_al:67,set_arrai:42,set_cmd:[1,3,4,11,55,56,66,78,120],set_current_folder_nam:83,set_dacs_zero:71,set_default:83,set_ext_trig:80,set_field:76,set_funct:65,set_iq_st:80,set_jumpmod:83,set_level:83,set_measur:[7,8,10,19,21],set_mix_chamber_heater_mod:78,set_mix_chamber_heater_power_rang:78,set_mod:83,set_mode_volt_dc:83,set_mp_method:[7,10,18,19,21,24],set_pars:[55,56],set_persist:78,set_point:29,set_pol_dacrack:71,set_pulsemod_sourc:80,set_pulsemod_st:80,set_ramp:20,set_raw:63,set_remote_statu:78,set_sequ:83,set_set_point:29,set_setup_filenam:83,set_smooth:82,set_sqel_event_jump_target_index:83,set_sqel_event_jump_typ:83,set_sqel_event_target_index:[30,83],set_sqel_goto_st:83,set_sqel_goto_target_index:[30,83],set_sqel_loopcnt:[30,83],set_sqel_loopcnt_to_inf:[30,83],set_sqel_trigger_wait:[30,83],set_sqel_waveform:[30,83],set_statu:80,set_sweep:80,set_titl:[1,30],set_to_fast:78,set_to_slow:78,set_valu:58,set_voltag:82,set_ylim:30,setboth:120,setbothasync:120,setformatt:5,setlevel:[5,29,30,33,36],setpoint:[0,1,6,7,9,11,12,13,14,15,18,28,29,34,35,37,42,48,54,66,68,74,78,80,82,83,87,103,119,120],setpoint_arrai:[37,54],setpoint_label:[9,37,54],setpoint_nam:[9,37,54,74],setpoint_unit:[37,54],settabl:[3,4,55,58,111,119],setter:[4,111],settl:[33,108],setup:[28,80,91,112,114,115],setupclass:[63,68,75],setx:120,sever:[68,74,78,108,111,119],sg384:[63,102],sgs100a:63,shadow:2,shall:32,shape:[0,1,3,7,9,11,12,13,14,15,16,17,18,22,27,28,29,30,33,35,36,37,42,54,68,74,80,90,119,120],share:[20,113],shared_kwarg:120,shell:114,shift:33,ship:[2,33],shortcut:89,shorthand:1,shot:[22,27,100,108,112],should:[3,4,11,14,18,23,27,28,29,30,32,33,34,37,39,42,43,45,46,47,49,51,52,54,55,57,58,59,63,64,65,67,68,77,78,82,83,91,108,115,119],shouldn:42,show:[1,3,6,10,11,17,18,19,21,24,25,26,32,34,108],show_subprocess_widget:[7,10,18,19,21,24],show_window:89,shown:[1,34],side:[30,34,55,111,115,120],sig:33,sig_gen:108,signadyn:68,signal:[11,29,30,36,65,68,74,75,80,81,82,83,103,112,119],signal_hound:63,signal_input1:33,signal_input1_ac:33,signal_input1_diff:33,signal_input1_imped:33,signal_input1_rang:33,signal_input1_sc:33,signal_output1:33,signal_output1_ampdef:33,signal_output1_amplitud:33,signal_output1_autorang:33,signal_output1_en:33,signal_output1_imp50:33,signal_output1_offset:33,signal_output1_on:33,signal_output1_rang:33,signal_to_volt:65,signalhound_usb_sa124b:81,signatur:[30,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,64,83,87,89,90,91],significantli:28,silent:[3,68],sim900:82,sim928:[63,103],sim:[4,82],similar:[1,4,11,80,83,119],similarli:[26,33,119],simpl:[4,6,9,11,13,16,18,28,29,38,44,47,53,61,90,108,112,114,119],simpler:108,simplest:[4,119],simpli:[2,4,33,47,55,83],simplifi:[10,67,108],simul:[111,112,114,118,119],simultan:[16,26,67],simultani:76,sin:[30,79],sinc:[1,3,4,11,33,34,67,74,78,83,119,120],sine:[27,29,36],sing:28,singl:[1,3,9,11,19,21,22,27,28,37,48,55,57,64,65,67,68,69,70,76,83,87,90,100,108,111,112,119],single_iq:9,single_set:9,singleiqpair:9,sit:22,site:[1,2,15],situat:[11,48,119],six:[25,26,64],size:[1,7,11,37,43,54,55,65,71,82],skewed_parabola:5,skill:108,skip:[70,108],slack:[104,105,106,108,113,114],slash:44,sleep:[3,14,15,16,17,19,21,24,25,26,29,30,58,61,71,82],slice:[10,28,57,111],slider:1,slider_demo:1,slightli:[22,102],slope:[15,18,23,25,26,34,70],slot:[20,67,68,82],slot_mode_default:67,slot_nam:82,slow:[25,26,70,78,119],slow_external_clock:3,slower:30,slp:35,small:[22,25,26,28,33,64,66,100,108],smaller:[28,82],smart:[78,108],smooth_timestep:82,smoothli:82,smr40:63,smu:3,smua:[3,13,22,83],smub:[3,22,83],snap:8,snapshot:[0,3,7,8,11,18,21,37,39,42,49,50,54,55,60,70,82,83,91,102,105,106,119],snapshot_bas:70,snapshot_get:[37,54,55],snapshot_valu:[37,54,55,82],sochat:108,socket:[49,69],soft:83,softwar:[3,23,33,70,74,83,106,108,112,119],software_revis:21,software_triggered_read:14,sohail:108,solv:108,some:[0,3,4,11,26,32,33,37,47,49,54,55,57,67,68,82,83,108,112,116,119],somebodi:108,somehow:119,someon:[64,108],someth:[2,10,30,32,33,34,65,68,70,108,116,119],sometim:[3,9,11,33,48,119],soon:[67,108],sophist:65,sort:[30,48],sort_kei:8,sourc:[3,7,10,11,18,22,28,32,34,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,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,108,109,114,115,119],source_mod:32,sourcemet:[3,13,83,103],sourcerange_i:22,sourcerange_v:[13,22],space:[25,26,37,54,55,57,108,111],span:[28,71,81],spann:71,spanx:71,spawn:[7,10,18,19,21,24],spcerr:[63,72],speak:3,spec:4,special:[3,11,37,54,55,108,119],specif:[3,4,18,30,43,64,67,70,71,78,83,108,111,119],specifi:[1,23,30,34,37,46,52,54,63,64,68,71,74,75,81,82,83,84,85,90,91,108,116,119],specifiedta:83,spectrum:[63,102,103,119],speed:[12,14,28,55,65,119],speedup:105,spend:3,spheric:34,spherical_measur:34,spi:71,spi_rack:71,spirack:71,splat:1,split:[14,28,31],spread:113,spyder:115,sqel:83,sql:119,squar:29,squencer:83,sr560:[3,63],sr830:[63,101,104,112],sr860:[17,63],sr860m:82,sr865:63,sr86x:63,sr86xbuffer:82,sr86xbufferreadout:82,src:[2,28],srs_sg384:82,stabl:60,stackoverflow:1,stage:119,stai:[108,120],staircas:11,stale:119,stand:34,standalon:114,standard:[1,3,14,28,55,64,67,68,70,77,78,82,83,114],standardparamet:[1,7,9,18,21,97,111],stanford:[82,104],stanford_research:[3,16,17,63],stanford_research_system:[16,17],stanford_sr865:82,start:[0,1,3,7,10,11,12,13,14,15,16,18,21,23,28,33,35,36,41,42,43,48,55,57,59,64,65,67,78,80,82,83,85,86,88,108,112,119],start_captur:[17,82],start_freq:35,startcaptur:18,startup:[4,25,26,66,70],stat:[68,75,80],state:[3,25,26,27,30,33,64,66,67,70,80,83,85,108,111,114,119],statement:[71,108],station1:[19,21],station2:[19,21],station:[5,6,7,8,10,11,12,15,19,21,22,28,33,37,50,52,54,55,82,97,109,119],stationq:114,statu:[31,65,68,70,71,75,78,80,81,82,83],status:82,statuscod:83,std:[13,14],stderr:5,stdlib:64,stdout:15,step:[1,3,4,11,12,22,28,32,52,55,56,57,71,82,83,84,85,115,120],step_attenu:[68,75],stepper:78,stepsizen:71,still:[3,4,25,26,30,32,42,108,119],stop:[1,16,23,27,28,30,33,57,64,80,82,83],stop_captur:[17,82],stop_freq:35,storag:[83,114,119],store:[0,2,37,39,42,43,46,54,55,63,65,83,88,91,105,119],str:[3,15,37,39,40,41,42,43,44,45,47,49,50,51,54,55,60,62,63,66,67,68,70,71,74,77,78,80,82,83,85,86,88],straightforward:[30,119],strang:33,strategi:67,stream:[15,18,33],streamhandl:5,strftime:45,strictli:74,string:[2,3,4,15,19,21,37,39,45,46,47,48,54,55,64,65,66,68,71,74,76,77,78,79,80,82,83,88,91,108,111,116,119],strip:[48,80],strive:108,strongli:[1,3,33,108],struct:13,structur:[43,46,65,86,88,111,116,119],struggl:108,stuf:116,stuff:[4,34,78,83,112],stupid:34,sub:3,subclass:[3,9,33,37,39,46,47,49,54,55,58,60,64,65,78,83,111],subject:[108,119],sublim:108,sublimelint:108,submit:[4,120],submodul:[3,11,50,72],subplot:[28,29,33,34,90,112],subprocess:[10,18,19,21,24],subscrib:74,subsequ:59,subset:28,substitut:3,subtract:33,succes:83,success:55,successfulli:[34,64],succinct:108,suddenli:3,suffici:4,suit:[5,68,75,80,84,114],sum:[0,120],summari:112,superclass:3,superconduct:78,suppli:[3,44,46,76,78,103,119],support:[0,1,2,3,11,22,23,25,26,28,29,30,32,33,50,51,58,64,68,74,77,78,80,82,83,104,105,108,116,119],suppos:[64,68,77,78,82,83],suppress:[3,8,21,83],supress:68,sure:[4,12,16,27,33,34,78,83,108,111,115],sv2:57,sv3:57,sv4:57,swap:114,sweep:[0,6,7,11,13,14,15,22,28,33,39,40,55,57,58,62,66,74,78,80,81,83,100,111,112,114,118,119],sweep_tim:35,sweep_val:[0,1,120],sweep_val_2:1,sweep_val_2_set:1,sweep_val_set:1,sweep_valu:[7,11,52],sweepabl:62,sweepdata:33,sweeper:[74,103,112],sweeper_bw:33,sweeper_bwmod:33,sweeper_ord:33,sweeper_param:33,sweeper_samplecount:33,sweeper_start:33,sweeper_stop:33,sweeper_xmap:33,sweeper_xxx:33,sweepfixedvalu:[97,111],sweepvalu:[52,97,109],swept:[13,120],symmetr:36,symmetri:34,sync:[19,21,25,26,29,33,68,112,119],sync_delai:26,sync_dur:26,sync_filt:16,sync_output:23,sync_sourc:23,syncchannel:68,synchron:[67,119],syntax:114,synthes:103,sys:[5,15,28],system32:[3,65,81],system:[3,18,37,41,47,54,55,65,78,82,83,91,100,102,116,119],system_id:[3,18,65],t_actual:34,t_set:34,t_start:[12,15],t_stop:[12,15],tab:[33,48,108],tabl:[83,112,116,119],tag:108,tailor:1,take:[0,3,11,15,26,27,32,37,38,39,52,54,55,67,70,74,80,83,104,108,111,114,120],taken:[80,83],talent:108,talk:[3,77,82,119,120],target:[34,57,58,65,83,85],target_curr:34,target_field:34,task:[6,11,15,23,35,52,61,97,101,108,111,119],tcpip0:[3,12,13,14,15,22,23,27,28,30,36,80],tcpip:[36,119],tear:22,tech:114,techniqu:108,technolog:[8,12,14,15,23,36],tektp:29,tektron:106,tektronix:[3,8,13,19,21,22,63,103,104,112],tektronix_awg5014:[30,83],tektronix_awg5200:83,tektronix_awg520:83,tell:[46,48,61,108,119],temp0_0:[25,26],temp2_1:[25,26],temp5_2:[25,26],temperatur:[69,78,103,112],templat:108,temporari:[43,88],tempx_i:[25,26],tend:3,tens:108,term:[15,108],termin:[3,4,8,10,13,15,18,19,21,24,32,48,49,60,70,76,78,80,85,114,115,119],tesla:[34,76,78],test:[3,6,11,12,14,32,34,36,45,64,67,68,70,71,75,79,80,83,84,102,111,112,114,119],test_:4,test_ami430:34,test_attenu:84,test_attenuation_valid:4,test_awg_fil:30,test_channel_amplitud:68,test_channel_frequ:68,test_channel_offset:68,test_channel_phas:68,test_channel_wave_shap:68,test_chassis_and_slot:68,test_chassis_numb:68,test_clock_frequ:68,test_field_vector:34,test_firmware_vers:[75,84],test_frequ:75,test_hdf5formatt:5,test_init:4,test_instru:[63,108],test_metadata:108,test_on_off:75,test_open_clos:68,test_phas:75,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:75,test_pxi_trigg:68,test_send:83,test_serial_numb:68,test_slot_numb:68,test_snapshot:108,test_suit:63,test_weinschel_8320:4,testagilent_e8527d:75,testcas:63,testhdf5_format:5,testkeysight_m3201a:68,testkeysight_m3300a:68,testmetadat:108,testsd_modul:68,testsweep:[0,11,12,15,19,21],testweinschel_8320:84,text:[3,15,79,108,111,119],texttestrunn:5,textual:119,tg_thru_0db:81,tg_thru_20db:81,than:[1,3,4,25,26,28,33,52,55,108,114,119],thank:108,thebrain:108,thei:[2,3,4,6,10,11,18,19,21,24,42,43,52,59,64,65,77,82,83,108,111,116,119],them:[1,2,3,4,9,10,22,25,26,35,42,63,64,68,76,77,78,82,83,108,112,116,119,120],theme:89,theoret:119,therebi:23,therefor:[3,4,27,36],thermometri:31,theta:34,theta_measur:34,thi:[0,1,2,3,4,6,7,9,10,11,12,14,15,18,19,21,22,24,25,26,27,28,29,30,32,33,34,35,36,37,39,42,43,45,46,47,48,49,50,51,52,54,55,58,60,61,63,64,65,66,67,68,70,71,74,75,76,77,78,79,80,81,82,83,84,85,86,88,90,91,97,99,108,109,111,114,115,116,118,119,120],thing:[3,10,11,18,24,47,52,57,58,59,61,68,75,84,108,111,113,115,119,120],think:[108,116,119],thinksr:82,third:[36,119],those:[4,6,9,42,45,47,111,119],though:[1,3,55,57,58,64,68,77,78,82,83,119],thread:[71,119],thread_map:15,threadpoolexecutor:120,three:[1,9,25,26,33,48,57,76,83,119],through:[11,25,26,30,33,42,43,108,115,119,120],throughout:35,thu:[108,119],tick:[1,18],tight_layout:[1,28,30],tim:23,time:[1,3,8,9,10,11,12,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,38,45,46,52,55,57,58,64,67,68,71,74,81,82,83,85,108,112,114,119,120],time_const:16,timebase_posit:[27,36],timebase_rang:[27,36],timeit:[13,14],timeout:[8,15,16,18,19,22,30,33,35,49,60,68,78,80,82,83],timeout_tick:[18,65],timer:[19,21],timestamp:[114,119],titl:1,tmpfile:[31,78],to_setpoint:78,to_zero:78,toc:11,todo:[42,68,70,71,74,75,82,108],togeth:[1,6,30,80,119],toggl:20,tolist:[3,4],ton:3,too:[3,28,37,54,55,64,80,108],took:32,tool:[1,108],top:[1,89],toplevel:105,tortur:108,total:[3,9,28],touch:108,toymodel:[7,10],tps1:29,tps1_scope_measurement_0:29,tps1_scope_measurement_1:29,tps2012:[63,112],tps2012channel:83,tps:29,trace:[1,4,11,28,29,33,65,66,68,74,80,89,90,112],trace_point:35,traceback:[2,15,19,21,114],tracedata:35,tracenotreadi:[66,68,83],tracesetpointschang:68,track:[65,67,81,119],trail:108,transer:18,transfer:[30,83],transfer_offset:[18,65],transform:[34,47,55,61,65,78,83],translat:[3,46,74],transmiss:80,trcl:82,treat:[67,91,119],tree:[112,115],trg:[14,15],trig:[33,82,83],trig_engine_j:18,trig_engine_k:18,trig_engine_op_j:18,trig_slope_posit:18,trig_wait:[30,83],trigger:[15,18,23,29,30,33,74,80,83,106,112],trigger_count:14,trigger_delai:[18,65],trigger_edge_slop:[27,36],trigger_edge_sourc:36,trigger_en:36,trigger_engine1:[18,65],trigger_engine2:[18,65],trigger_input_imped:83,trigger_input_polar:83,trigger_input_slop:83,trigger_input_threshold:83,trigger_level1:[18,65],trigger_level2:[18,65],trigger_level:[27,29,36],trigger_mod:82,trigger_oper:[18,65],trigger_slop:15,trigger_slope1:[18,65],trigger_slope2:[18,65],trigger_sourc:[14,15,27,29,83],trigger_source1:[18,65],trigger_source2:[18,65],trigger_typ:[27,29],triton1_thermometri:31,triton:[63,103,112],trival:120,trivial:[1,4,108],trivialdictionari:65,troubleshoot:119,truncat:108,trust:55,truthi:[11,38],ts_start:7,tst:5,tstart:[19,21],tudelft:71,tune:[71,108],tupl:[1,9,30,33,37,39,42,47,54,70,74,83,89,90],turn:[3,14,22,27,28,32,33,78,83,85],turoti:11,tutori:[6,9,27,35,112,118],two:[1,3,9,11,13,14,16,22,28,29,30,42,55,66,70,74,76,81,82,83,108,112,120],txt:71,type:[0,1,2,7,9,11,12,13,14,15,16,17,18,19,21,22,27,28,29,30,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,63,64,65,66,68,70,71,74,77,78,82,83,87,89,90,91,105,108,115,116,119,120],typeerror:[15,38,58,83],typic:[42,108,112,119],typo:108,ufh:103,uhf:[74,112],unambigu:3,unassign:[25,26],unavail:64,uncanningli:4,uncommit:65,uncondit:83,undefin:[23,64],under:83,underli:[4,78,83,111,119],underscor:108,understand:[108,119],undesir:11,undo:83,unfortun:68,unga:[2,116],uni:71,unicorn:10,unimport:83,union:[37,39,42,47,50,54,55,57,63,66],uniqu:[42,68],unit:[0,3,4,7,8,9,11,18,21,25,26,33,37,40,42,54,55,62,65,66,71,74,78,80,82,85,102,103,108,119,120],unitless:[37,54,55],unittest:[5,63,108],unknown:3,unless:[25,26,42,108],unlik:[33,37,54,63],unload:83,unlock:[78,80],unnecessari:9,unrecogn:64,unrel:119,unsav:119,unsign:83,until:[3,30,55,78,119],unus:88,updat:[1,2,4,8,11,15,25,26,28,29,33,35,37,41,54,55,65,66,70,74,78,80,83,85,89,90,91,106,111,119],update_acquisitionkwarg:[18,65],update_curr:[15,25,26,70],update_display_off:28,update_display_on:28,update_measurement_en:85,update_snapshot:91,upfront:[37,54],upgrad:33,upload:[13,30,83],upon:[1,23,25,26,63,82],uppercas:78,ups:34,upsteam:2,upto:83,usag:[9,45,58,68,78,83,109,112,118],usb:[3,4],usb_sa124b:63,use:[0,1,2,3,4,6,9,11,13,28,29,30,33,35,36,42,45,47,48,55,57,58,60,61,63,65,68,70,71,75,76,77,78,82,83,84,90,108,111,112,113,115,116,118,119,120],use_lock:71,use_thread:15,used:[3,4,9,11,20,22,34,37,39,42,45,47,48,54,55,57,58,63,65,68,70,71,74,75,77,78,80,81,82,83,87,91,111,114,119],useful:[1,4,9,33,68,70,108,119],user:[1,2,3,7,15,19,28,30,55,60,64,65,74,82,83,114,115,116,119],usernam:108,usersadministratordocumentsdevelopmentqcodes_devqcodesinstrumentparamet:17,usersqcod:33,userwarn:[17,28,33],uses:[1,3,9,55,63,64,81,82,111,116,119],using:[1,3,11,22,25,26,30,33,34,41,46,48,60,66,68,71,76,81,83,108,111,114,119],usual:[3,11,36,50,51,70,83,119],util:[0,3,4,5,15,19,21,68,97,108,120],utilis:4,utility_freq:68,utopia:108,v11:29,v_amp_in:82,v_in:82,v_out:82,v_rang:[25,26],vaild:41,val:[0,3,4,7,9,11,33,55,56,57,58,65,83,85,120],val_map:[3,55,56],valid:[0,2,3,4,9,15,19,21,28,37,41,47,54,55,57,58,71,83,87,89,97,103,104,105,108,109,116,119,120],validate_al:47,validationerror:2,validator_for:2,valu:[0,1,2,3,4,6,7,8,9,11,12,13,15,16,18,19,21,22,25,26,28,30,33,34,35,37,40,41,42,45,47,48,52,54,55,57,58,62,63,64,65,66,67,68,70,71,74,76,78,80,82,83,111,119,120],valuabl:108,value_round:71,value_typ:2,valueerror:[3,4,32,39,61,63,68,74,75,83,84],valv:78,vari:[11,35,37,54,119],variabl:[48,55,68,82,83,108,111,112,116,119],variou:[64,68,77,78,82,83,108,111],vbw:81,vector:[34,76,119],vendor:[3,4,7,8,11,16,18,21,22,35,64,65,68,77,78,82,83],ver1:16,verbos:[5,11,63,66,68,70,80,83,108],verbose_channel:11,veri:[4,25,26,33,65,68,70,119],verifi:[3,32,34,82],vernier:82,versa:[22,33,34],version:[2,3,9,11,27,29,64,65,67,68,70,71,75,78,80,81,82,83,101,114,115,120],versu:[83,112],vertic:[29,33,80,112],vi_error_rsrc_nfound:119,vi_error_tmo:15,via:[1,3,10,26,33,50,51,69,77,82,83,91,112,119],vibuf:15,vice:[22,33],videobandwidth:81,view:[27,28,108],vipuint32:15,virtual:[3,76,77,80,82,115,120],virtualivvi:120,vis:34,visa:[3,4,15,30,55,60,64,66,67,68,69,70,71,75,77,78,79,80,82,83,84,85,119],visa_handl:[15,60,67,78],visainstru:[4,66,67,68,69,70,71,75,78,79,80,82,83,84,85,97,111,112,119],visaioerror:15,visalib:[4,15,60],visess:15,visibl:[25,26],vision:108,visit:108,visual:114,visualis:30,viuint32:15,viwrit:15,vna:[28,35,81],vna_:28,vna_output_power_set:35,vna_paramet:[28,80],vna_s11:28,vna_s11_magnitud:28,vna_s11_phas:28,vna_s11_power_set:28,vna_s11_trac:28,vna_s12_trac:28,vna_s13_trac:28,vna_s14_trac:28,vna_s21_trac:28,vna_s22_trac:28,vna_s23_trac:28,vna_s24_trac:28,vna_s31_trac:28,vna_s32_trac:28,vna_s33_trac:28,vna_s34_trac:28,vna_s41_trac:28,vna_s42_trac:28,vna_s43_trac:28,vna_s44_trac:28,vna_trac:35,vogel:108,volatg:32,volt:[3,8,11,12,13,14,19,21,22,32,33,65,67,71,82,83,85],volt_0:21,volt_1:21,volt_:82,volt_set:21,voltag:[3,4,8,9,11,12,13,14,20,22,25,26,32,55,63,67,68,70,71,77,82,83,85,103,104,111,119],voltage_limit:32,voltage_rang:32,voltage_range_statu:70,voltage_raw:[3,77,82],voltagedict:82,voltagedivid:63,voltageparamet:82,voltmet:[68,119],volunt:108,vpp:23,vrang:[3,15,25,26,70],vsd:[6,7,10],w8320_1:3,wai:[1,2,3,4,6,10,11,16,18,30,33,39,55,70,83,89,108,119,120],wait:[4,7,11,14,30,35,47,52,55,66,78,83,97,111,119,120],wait_trigg:83,wait_valu:83,walk:120,wall:28,want:[0,1,2,3,6,20,27,28,29,33,34,36,37,43,54,63,64,65,70,108,109,111,113,116,118,119,120],warn:[2,3,17,27,28,30,33,34,52,64,65,74,102,116],wav:70,wave:[27,29,36],waveform:[9,23,27,36,68,75,79,83,103,112,119],waveform_nam:83,waveformgenerator_33xxx:68,web:[33,74],week:[108,113],weight:2,wein_sim:4,weinschel:[3,4,63],weinschel_8320:[3,63,112],welcom:[108,113],well:[1,4,6,27,33,39,46,64,67,68,75,77,78,82,83,84,108,119],went:34,were:[42,43,55,65,99],wfm001ch1:83,wfm002ch1:83,wfm1ch1:83,wfm1ch2:83,wfm2ch1:83,wfm2ch2:83,wfm:[30,83],wfmname:[30,83],wfname_l:83,wfs1:83,wfs2:83,wfs:83,what:[2,10,11,25,26,30,33,34,49,52,54,57,58,60,67,78,83,85,97,108,112,116,119,120],whatev:[14,65],wheel:108,when:[1,3,4,7,9,22,23,25,26,28,29,30,32,34,37,38,39,42,45,54,55,58,59,63,64,65,67,68,70,71,74,75,77,82,83,84,88,108,114,119,120],whenev:[82,83,119],where:[3,4,9,11,25,26,37,43,46,54,57,58,65,67,68,71,74,77,78,82,83,86,88,89,108,119,120],wherea:14,whether:[20,27,46,48,49,55,70,76,79,83,108,119],which:[1,2,3,4,6,9,11,28,30,33,34,37,39,41,42,43,45,46,48,51,52,54,55,57,59,63,64,65,68,70,78,80,82,83,86,88,91,108,111,116,119,120],whish:0,white:[89,108],whitespac:48,who:[108,113],whole:[3,6,9,48,54,77,82,108,111,119],whose:[42,82,91,119,120],why:[33,108],widget:[1,10,18,19,21,24,101],width:[89,90],william:[15,33,108],williamhpnielsen:[70,82],win32:64,win:2,window:[3,7,10,18,19,21,24,28,65,78,81,83,90,106,115],window_titl:89,windowtitl:21,wish:83,with_bg_task:[1,11,15,35],within:[1,3,18,36,39,42,59,61,65,74,108,114,119],without:[20,32,34,80,105,112,116,119],won:28,wonder:33,word:[112,113],work:[2,3,4,6,18,24,32,43,44,68,71,75,79,80,82,83,84,86,88,108,114,115,116,119,120],workflow:[112,114],world:[65,108,114],worri:32,wors:108,would:[1,2,9,10,18,19,21,24,45,68,80,108,113,119],wouldn:4,wrap:[9,33,44,78,83,119],wrapper:[66,71,78,80],write:[2,3,4,14,15,19,23,43,46,47,48,49,60,64,67,70,71,78,82,83,85,88,108,118,119],write_confirm:49,write_copi:119,write_metadata:46,write_modul:82,write_period:[43,88],write_pin:64,write_port:64,write_raw:[15,78,83],written:[1,48,65,68,78,83],wrong:[32,34,67,108],x_actn:24,x_fld:24,x_fldc:24,x_length:1,x_offset:16,x_rate:24,x_setpoint:24,x_val:[0,120],xlabel:34,xml:108,xrm:33,xxx:67,y_length:1,y_offset:16,y_val:[0,120],yai:101,yaml:112,yeah:21,year:108,yes:119,yet:[33,36,46,68,108,119],yield:[4,52,82],ylabel:34,yml:115,yokogawa:[63,102,112],yolo:2,you:[0,1,2,3,4,6,9,10,11,22,27,28,29,30,33,34,36,37,41,42,43,44,46,47,52,54,55,57,58,63,65,70,77,82,83,86,88,90,109,111,112,113,115,116,118,119,120],your:[3,4,11,33,36,41,47,63,64,68,77,78,82,83,108,112,113,115,116,119,120],yourself:[65,82],yrm:33,yscale:33,z_val:[0,120],zero:[3,25,26,30,34,36,37,54,55,71,74,78,83],zip:[15,34],ziuhfli:[33,63],ziuhfli_rrm:33,ziuhfli_sig:33,ziuhfli_xrm:33,ziuhfli_yrm:33,zn20:112,znb20:63,znb4:80,znb8:[28,80,105],znb:[28,63],znbchannel:80,zone:34,zoom:74,zurich:33},titles:["Combined Parameters","Comprehensive Plotting How-To","QCoDeS config","Creating QCoDeS instrument drivers","Creating Simulated PyVISA Instruments","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","Lets capture by sending triggers. We use the IVVI to send triggers.","Qcodes example ATS_ONWORK","Qcodes example with Agilent 34400A","Qcodes example with Decadac","Qcodes example with Ithaco","Qcodes example with Keithley 2600","Qcodes example with Keysight 33500B","Qcodes example with Mercury IPS (Magnet)","Qcodes example with QDac","Qcodes example with QDac_channels","Qcodes example with Rohde Schwarz RTO 1000 series Oscilloscope","Qcodes example with Rohde Schwarz ZN20/8","QCoDeS Example with Tektronix TPS2012","QCoDeS Example with Tektronix AWG5014","Qcodes example with Triton","Qcodes example with Yokogawa GS200/GS210","QCoDeS Example with ZI UHF-LI","QCoDeS example with AMI430","Qcodes example with HP8753D","Example Notebook for Keysight Infiniium Oscilloscopes","qcodes.ArrayParameter","qcodes.BreakIf","qcodes.ChannelList","qcodes.CombinedParameter","qcodes.Config","qcodes.DataArray","qcodes.DataSet","qcodes.DiskIO","qcodes.FormatLocation","qcodes.Formatter","qcodes.Function","qcodes.GNUPlotFormat","qcodes.IPInstrument","qcodes.Instrument","qcodes.InstrumentChannel","qcodes.Loop","qcodes.ManualParameter","qcodes.MultiParameter","qcodes.Parameter","qcodes.StandardParameter","qcodes.SweepFixedValues","qcodes.SweepValues","qcodes.Task","qcodes.VisaInstrument","qcodes.Wait","qcodes.combine","qcodes.instrument_drivers package","qcodes.instrument_drivers.Advantech package","qcodes.instrument_drivers.AlazarTech package","qcodes.instrument_drivers.HP package","qcodes.instrument_drivers.Harvard package","qcodes.instrument_drivers.Keysight package","qcodes.instrument_drivers.Lakeshore package","qcodes.instrument_drivers.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":13,"33500b":23,"34400a":19,"34411a":12,"34465a":[12,14],"break":[100,101,102,103],"class":[3,97,98,99],"default":116,"function":[47,97,98,99],"import":[11,12,13,30,36],"new":[100,101,102,103,104,105,106,108],"public":99,"while":35,ATS:65,IPS:24,Not:4,THE:29,THERE:30,That:4,The:[4,11],Using:[2,23,33,116],abort:117,acquir:[29,35],acquisit:[16,27,29,36],action:[11,99],adding:3,advantech:64,aggreg:0,agil:[12,19,75],agilent_34400a:75,alazartech:65,all:6,american_magnet:76,ami430:[34,76],arrai:6,arrayparamet:[9,37],async:120,ats9870:65,ats_acquisition_control:65,ats_onwork:18,attent:[25,26],avanc:120,averag:27,awg5014:[30,83],awg5200:83,awg520:83,awg:30,awgfilepars:83,base:3,basic:[11,22,23,25,26,33,112],benchmark:[13,14,15,28,112],bonu:4,breakif:38,buffer:[15,16],bug:108,burst:23,can:11,captur:17,caution:33,chang:[2,100,101,102,103],changelog:[100,101,102,103,104,105,106,107],channel:[3,25,26,28],channellist:39,chat:113,clever:108,code:[108,110],combin:[0,62,120],combinedparamet:40,command:92,commit:108,commun:109,comprehens:1,config:[2,41,99,116],configur:[2,116],congratul:4,content:[11,30,33,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,108],continu:27,contribut:108,core:2,creat:[3,4,36],curv:[22,29],custom:[2,3],d5a:71,data:[5,11,36,99],dataarrai:42,dataformat:5,datasav:5,dataset:[43,119],decadac:[20,67],deferred_oper:93,defin:11,demo:6,demodul:33,depend:36,develop:108,devic:63,dg4000:79,diskio:44,dll:3,driver:[3,112,120],dummi:5,dynam:3,e8267c:75,e8527d:75,enter:115,error:23,event:1,exampl:[3,4,5,10,11,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,112,119],experi:2,f1d:71,familiar:108,faq:117,fast:22,featur:108,file:[4,30,116],fix:[100,101,102,103],format:[10,108],formatloc:45,formatt:46,from:[5,29],gener:5,get:[13,14,30,113,115],git:108,global:11,gnuplotformat:48,gs200:[32,85],gs210:32,guid:[109,118],handl:[1,23],harvard:67,help:113,helper:94,hierarchi:111,horizont:27,hour:113,how:[1,4,117],hp33210a:75,hp8133a:66,hp8753d:[35,66],hp_83650a:66,ilm200:78,improv:[100,101,102,103,104,105,106],includ:4,individu:33,infiniium:[36,68],initialis:[13,30],input:[27,33],instal:115,instanti:[6,11],instrument:[3,4,5,6,8,11,36,50,99,111,119,120],instrument_driv:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],instrumentchannel:51,interact:11,interfac:1,introduct:119,involv:3,ipinstru:49,ips120:78,ithaco:[21,77],ithaco_1211:77,ivvi:[17,71],keithlei:22,keithley_2000:83,keithley_2400:83,keithley_2600:83,keithley_2600_channel:83,keithley_2700:83,kelvinox:78,keysight:[12,14,15,23,36,68],keysight_33500b:68,keysight_33500b_channel:68,keysight_34465a:68,keysight_e8267d:68,keysightagilent_33xxx:68,lakeshor:69,lazi:30,let:17,linkag:111,list:[16,30],live:11,load:11,load_data:86,locat:[10,11],loop:[5,6,11,12,52,99,119],m3201a:68,m3300a:68,magnet:24,make:30,manual:3,manualparamet:53,matplot:[1,90],matplotlib:1,measur:[6,11,33,35,87,99,117,119,120],mercuri:24,mercuryip:78,messag:108,meta:120,metadata:[7,8,95],misc:99,mode:[23,30],model_336:69,modul:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],more:[3,113,116],multiparamet:[9,54],multipl:11,n51x1:68,need:6,new_data:88,note:108,notebook:36,nplc:13,object:111,offic:113,one:12,onli:6,oper:22,organ:3,oscilloscop:[27,29,36],out:27,output:[6,11,33],overview:[25,26,119],oxford:78,packag:[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85],paramet:[0,3,4,9,16,55,111,119,120],part:12,pcie_1751:64,phase:114,plan:114,plot:[1,11,89,90,99],pre:14,predefin:28,prepar:36,prerequisit:33,privat:98,project:114,provid:11,pull:108,push:108,py_head:73,pyqtgraph:89,pyvisa:4,qcmatplotlib:90,qcode:[2,3,9,10,11,12,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,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,91,92,93,94,95,96,100,101,102,103,104,105,106,112,114,115,116,117],qdac:[15,25,26,70],qdac_channel:[26,70],qdev:70,qtplot:[1,89],qutech:71,raw:12,read:[12,27],realli:108,record:27,reg:73,remov:3,report:108,request:108,requir:115,respons:119,result:[13,14],rigol:79,rohd:[27,28],rohde_schwarz:80,rough:111,rto1000:80,rto:27,run:[5,27,30,108,117],s5i:71,sampl:33,save:[2,116],schwarz:[27,28],scope:33,script:13,send:[17,30],sensor:[25,26],seri:27,set:[11,13,14,25,26,27,29,33],setup:[12,36,108],sg384:82,sgs100a:80,shot:15,signal:[27,33],signal_hound:81,sim928:82,simpl:[0,1,3],simul:[3,4,120],singl:[15,35],smr40:80,softwar:14,some:30,sourc:110,spcerr:73,spectrum:[72,73],sr560:82,sr830:[16,82],sr860:82,sr865:82,sr86x:82,standardparamet:56,stanford_research:82,start:[5,115],station:[91,99,111],stuff:15,style:108,submodul:[63,64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85],subpackag:[63,72],subplot:1,summari:14,sweep:[1,12,35,120],sweeper:33,sweepfixedvalu:57,sweepvalu:[58,111],sync:15,tabl:[11,30,33],task:59,tektronix:[29,30,83],temperatur:[25,26],test:[4,5,63,108],test_suit:[68,75,84],them:30,time:13,todo:[52,58,78,80,81,83,111,116,120],tps2012:[29,83],trace:[27,35,36],trigger:[14,17,27,36],triton:[31,78],tutori:[11,120],two:12,typic:11,uhf:33,updat:116,usag:[23,25,26,33,108,115,117],usb_sa124b:81,use:17,user:118,using:112,util:[92,93,94,95,96,99],valid:[96,111],valu:116,variabl:2,versu:12,vertic:27,via:30,visainstru:[3,60],wait:61,waveform:30,weinschel:84,weinschel_8320:[4,84],what:[3,4],without:[6,28],word:33,workflow:11,write:120,yaml:4,yokogawa:[32,85],you:108,your:2,ziuhfli:74,zn20:28,znb20:80,znb:80}}) \ No newline at end of file
        • __init__(*components[, monitor, default, …])Initialize self.
          add_component(component[, name, update_snapshot]) Record one component as part of this Station.Function(name[, instrument, call_cmd, args, …]) Defines a function that an instrument can execute.
          Parameter
          Parameter(name: str, …) A parameter that represents a single degree of freedom.
          StandardParameter(name[, instrument, …])
          ArrayParameter
          ArrayParameter(name: str, …) A gettable parameter that returns an array of values.
          MultiParameter
          MultiParameter(name: str, …) A gettable parameter that returns multiple values with separate names, each of arbitrary shape.
          ManualParameter(name[, instrument, …])