1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
# This file is part of the PyMeasure package.
#
# Copyright (c) 2013-2024 PyMeasure Developers
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
import logging
import time
from warnings import warn
import numpy as np
from pymeasure.instruments import Instrument, SCPIUnknownMixin
from pymeasure.instruments.validators import truncated_range, strict_discrete_set
# Setup logging
log = logging.getLogger(__name__)
log.addHandler(logging.NullHandler())
class Keithley2600(SCPIUnknownMixin, Instrument):
"""Represents the Keithley 2600 series (channel A and B) SourceMeter"""
def __init__(self, adapter, name="Keithley 2600 SourceMeter", **kwargs):
super().__init__(
adapter,
name,
**kwargs
)
self.ChA = Channel(self, 'a')
self.ChB = Channel(self, 'b')
@property
def next_error(self):
""" Returns a tuple of an error code and message from a
single error. """
err = self.ask('print(errorqueue.next())')
err = err.split('\t')
# Keithley Instruments Inc. sometimes on startup
# if tab delimitated message is greater than one, grab first two as code, message
# otherwise, assign code & message to returned error
if len(err) > 1:
err = (int(float(err[0])), err[1])
code = err[0]
message = err[1].replace('"', '')
else:
code = message = err[0]
log.info(f"ERROR {str(code)},{str(message)} - len {str(len(err))}")
return (code, message)
@property
def error(self):
warn("Deprecated to use `error`, use `next_error` instead.", FutureWarning)
return self.next_error
class Channel:
def __init__(self, instrument, channel):
self.instrument = instrument
self.channel = channel
def ask(self, cmd):
return float(self.instrument.ask(f'print(smu{self.channel}.{cmd})'))
def write(self, cmd):
self.instrument.write(f'smu{self.channel}.{cmd}')
def values(self, cmd, **kwargs):
""" Reads a set of values from the instrument through the adapter,
passing on any key-word arguments.
"""
return self.instrument.values(f'print(smu{self.channel}.{cmd})')
def binary_values(self, cmd, header_bytes=0, dtype=np.float32):
return self.instrument.binary_values('print(smu%s.%s)' %
(self.channel, cmd,), header_bytes, dtype)
def check_errors(self):
return self.instrument.check_errors()
source_output = Instrument.control(
'source.output', 'source.output=%d',
"""Property controlling the channel output state (ON of OFF)
""",
validator=strict_discrete_set,
values={'OFF': 0, 'ON': 1},
map_values=True
)
source_mode = Instrument.control(
'source.func', 'source.func=%d',
"""Property controlling the channel source function (Voltage or Current)
""",
validator=strict_discrete_set,
values={'voltage': 1, 'current': 0},
map_values=True
)
measure_nplc = Instrument.control(
'measure.nplc', 'measure.nplc=%f',
""" Property controlling the nplc value """,
validator=truncated_range,
values=[0.001, 25],
map_values=True
)
###############
# Current (A) #
###############
current = Instrument.measurement(
'measure.i()',
""" Reads the current in Amps """
)
source_current = Instrument.control(
'source.leveli', 'source.leveli=%f',
""" Property controlling the applied source current """,
validator=truncated_range,
values=[-1.5, 1.5]
)
compliance_current = Instrument.control(
'source.limiti', 'source.limiti=%f',
""" Property controlling the source compliance current """,
validator=truncated_range,
values=[-1.5, 1.5]
)
source_current_range = Instrument.control(
'source.rangei', 'source.rangei=%f',
"""Property controlling the source current range """,
validator=truncated_range,
values=[-1.5, 1.5]
)
current_range = Instrument.control(
'measure.rangei', 'measure.rangei=%f',
"""Property controlling the measurement current range """,
validator=truncated_range,
values=[-1.5, 1.5]
)
###############
# Voltage (V) #
###############
voltage = Instrument.measurement(
'measure.v()',
""" Reads the voltage in Volts """
)
source_voltage = Instrument.control(
'source.levelv', 'source.levelv=%f',
""" Property controlling the applied source voltage """,
validator=truncated_range,
values=[-200, 200]
)
compliance_voltage = Instrument.control(
'source.limitv', 'source.limitv=%f',
""" Property controlling the source compliance voltage """,
validator=truncated_range,
values=[-200, 200]
)
source_voltage_range = Instrument.control(
'source.rangev', 'source.rangev=%f',
"""Property controlling the source current range """,
validator=truncated_range,
values=[-200, 200]
)
voltage_range = Instrument.control(
'measure.rangev', 'measure.rangev=%f',
"""Property controlling the measurement voltage range """,
validator=truncated_range,
values=[-200, 200]
)
####################
# Resistance (Ohm) #
####################
resistance = Instrument.measurement(
'measure.r()',
""" Reads the resistance in Ohms """
)
wires_mode = Instrument.control(
'sense', 'sense=%d',
"""Property controlling the resistance measurement mode: 4 wires or 2 wires""",
validator=strict_discrete_set,
values={'4': 1, '2': 0},
map_values=True
)
#######################
# Measurement Methods #
#######################
def measure_voltage(self, nplc=1, voltage=21.0, auto_range=True):
""" Configures the measurement of voltage.
:param nplc: Number of power line cycles (NPLC) from 0.001 to 25
:param voltage: Upper limit of voltage in Volts, from -200 V to 200 V
:param auto_range: Enables auto_range if True, else uses the set voltage
"""
log.info("%s is measuring voltage." % self.channel)
self.write('measure.v()')
self.write('measure.nplc=%f' % nplc)
if auto_range:
self.write('measure.autorangev=1')
else:
self.voltage_range = voltage
self.check_errors()
def measure_current(self, nplc=1, current=1.05e-4, auto_range=True):
""" Configures the measurement of current.
:param nplc: Number of power line cycles (NPLC) from 0.001 to 25
:param current: Upper limit of current in Amps, from -1.5 A to 1.5 A
:param auto_range: Enables auto_range if True, else uses the set current
"""
log.info("%s is measuring current." % self.channel)
self.write('measure.i()')
self.write('measure.nplc=%f' % nplc)
if auto_range:
self.write('measure.autorangei=1')
else:
self.current_range = current
self.check_errors()
def auto_range_source(self):
""" Configures the source to use an automatic range.
"""
if self.source_mode == 'current':
self.write('source.autorangei=1')
else:
self.write('source.autorangev=1')
def apply_current(self, current_range=None, compliance_voltage=0.1):
""" Configures the instrument to apply a source current, and
uses an auto range unless a current range is specified.
The compliance voltage is also set.
:param compliance_voltage: A float in the correct range for a
:attr:`~.Keithley2600.compliance_voltage`
:param current_range: A :attr:`~.Keithley2600.current_range` value or None
"""
log.info("%s is sourcing current." % self.channel)
self.source_mode = 'current'
if current_range is None:
self.auto_range_source()
else:
self.source_current_range = current_range
self.compliance_voltage = compliance_voltage
self.check_errors()
def apply_voltage(self, voltage_range=None,
compliance_current=0.1):
""" Configures the instrument to apply a source voltage, and
uses an auto range unless a voltage range is specified.
The compliance current is also set.
:param compliance_current: A float in the correct range for a
:attr:`~.Keithley2600.compliance_current`
:param voltage_range: A :attr:`~.Keithley2600.voltage_range` value or None
"""
log.info("%s is sourcing voltage." % self.channel)
self.source_mode = 'voltage'
if voltage_range is None:
self.auto_range_source()
else:
self.source_voltage_range = voltage_range
self.compliance_current = compliance_current
self.check_errors()
def ramp_to_voltage(self, target_voltage, steps=30, pause=0.1):
""" Ramps to a target voltage from the set voltage value over
a certain number of linear steps, each separated by a pause duration.
:param target_voltage: A voltage in Amps
:param steps: An integer number of steps
:param pause: A pause duration in seconds to wait between steps """
voltages = np.linspace(self.source_voltage, target_voltage, steps)
for voltage in voltages:
self.source_voltage = voltage
time.sleep(pause)
def ramp_to_current(self, target_current, steps=30, pause=0.1):
""" Ramps to a target current from the set current value over
a certain number of linear steps, each separated by a pause duration.
:param target_current: A current in Amps
:param steps: An integer number of steps
:param pause: A pause duration in seconds to wait between steps """
currents = np.linspace(self.source_current, target_current, steps)
for current in currents:
self.source_current = current
time.sleep(pause)
def shutdown(self):
""" Ensures that the current or voltage is turned to zero
and disables the output. """
log.info("Shutting down channel %s." % self.channel)
if self.source_mode == 'current':
self.ramp_to_current(0.0)
else:
self.ramp_to_voltage(0.0)
self.source_output = 'OFF'
|