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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
|
#!/usr/bin/env python
"""
This module provides support for the EPICS motor record.
"""
#
# Author: Mark Rivers / Matt Newville
# Created: Sept. 16, 2002
# Modifications:
# Oct 15, 2010 MN
# API Change, fuller inttegration with epics.Device,
# much simpler interface
# m = Motor('XXX:m1')
# print(m.get_field('drive')) # mapped to .VAL
# becomes
# m = Motor('XXX:m1')
# print(m.VAL)
# print(m.drive) # now an alias to 'VAL'
#
# Jun 14, 2010 MN
# migrated more fully to pyepics3, using epics.Device
#
# Jan 16, 2008 MN
# use new EpicsCA.PV put-with-user-wait
# wait() method no longer needed
# added MotorException and MotorLimitException
# many fixes to use newer python constructs
#
# Aug 19, 2004 MN
# 1. improved setting/checking of monitors on motor attributes
# 2. add 'RTYP' and 'DTYP' to motor parameters.
# 3. make sure the motor is a motor object, else
# raise a MotorException.
# May 11, 2003 MN
# 1. added get_pv(attribute) to return PV for attribute
# 2. added __check_attr_stored(attr) method to
# consolidate checking if a PV is currently stored.
# Feb 27, 2003 M Newville altered EpicsMotor:
# 1. uses the EpicsCA.PV class, which automatically
# uses monitors to efficiently determine when to
# get PV values from the IOC
# 2. increase the number of Motor attributes.
# 3. increase the number of 'virtual attributes'.
# For example,
# >>>m = EpicsMotor('13BMD:m38')
# >>>m.drive = 20.
# causes the motor to move to 20 (user units).
#
import sys
import time
from . import ca
from . import device
class MotorLimitException(Exception):
""" raised to indicate a motor limit has been reached """
def __init__(self, msg, *args):
Exception.__init__(self, *args)
self.msg = msg
def __str__(self):
return str(self.msg)
class MotorException(Exception):
""" raised to indicate a problem with a motor"""
def __init__(self, msg, *args):
Exception.__init__(self, *args)
self.msg = msg
def __str__(self):
return str(self.msg)
class Motor(device.Device):
"""Epics Motor Class for pyepics3
This module provides a class library for the EPICS motor record.
It uses the epics.Device and epics.PV classese
Virtual attributes:
These attributes do not appear in the dictionary for this class, but
are implemented with the __getattr__ and __setattr__ methods. They
simply get or putthe appropriate motor record fields. All attributes
can be both read and written unless otherwise noted.
Attribute Description Field
--------- ----------------------- -----
drive Motor Drive Value .VAL
readback Motor Readback Value .RBV (read-only)
slew_speed Slew speed or velocity .VELO
base_speed Base or starting speed .VBAS
acceleration Acceleration time (sec) .ACCL
description Description of motor .DESC
resolution Resolution (units/step) .MRES
high_limit High soft limit (user) .HLM
low_limit Low soft limit (user) .LLM
dial_high_limit High soft limit (dial) .DHLM
dial_low_limit Low soft limit (dial) .DLLM
backlash Backlash distance .BDST
offset Offset from dial to user .OFF
done_moving 1=Done, 0=Moving, read-only .DMOV
Exceptions:
The check_limits() method raises an 'MotorLimitException' if a soft limit
or hard limit is detected. The move() method calls
check_limits() unless they are called with the
ignore_limits=True keyword set.
Example use:
from epics import Motor
m = Motor('13BMD:m38')
m.move(10) # Move to position 10 in user coordinates
m.move(100, dial=True) # Move to position 100 in dial coordinates
m.move(1, step=True, relative=True) # Move 1 step relative to current position
m.stop() # Stop moving immediately
high = m.high_limit # Get the high soft limit in user coordinates
m.dial_high_limit = 100 # Set the high limit to 100 in dial coodinates
speed = m.slew_speed # Get the slew speed
m.acceleration = 0.1 # Set the acceleration to 0.1 seconds
p=m.get_position() # Get the desired motor position in user coordinates
p=m.get_position(dial=1) # Get the desired motor position in dial coordinates
p=m.get_position(readback=1) # Get the actual position in user coordinates
p=m.get_position(readback=1, step=1) Get the actual motor position in steps
p=m.set_position(100) # Set the current position to 100 in user coordinates
# Puts motor in Set mode, writes value, puts back in Use mode.
p=m.set_position(10000, step=1) # Set the current position to 10000 steps
"""
# parameter name (short), PV suffix, longer description
#
_extras = {
'disabled': '_able.VAL', }
_alias = {
'acceleration': 'ACCL',
'back_accel': 'BACC',
'backlash': 'BDST',
'back_speed': 'BVEL',
'card': 'CARD',
'dial_high_limit': 'DHLM',
'direction': 'DIR',
'dial_low_limit': 'DLLM',
'settle_time': 'DLY',
'done_moving': 'DMOV',
'dial_readback': 'DRBV',
'description': 'DESC',
'dial_drive': 'DVAL',
'units': 'EGU',
'encoder_step': 'ERES',
'freeze_offset': 'FOFF',
'move_fraction': 'FRAC',
'hi_severity': 'HHSV',
'hi_alarm': 'HIGH',
'hihi_alarm': 'HIHI',
'high_limit': 'HLM',
'high_limit_set': 'HLS',
'hw_limit': 'HLSV',
'home_forward': 'HOMF',
'home_reverse': 'HOMR',
'high_op_range': 'HOPR',
'high_severity': 'HSV',
'integral_gain': 'ICOF',
'jog_accel': 'JAR',
'jog_forward': 'JOGF',
'jog_reverse': 'JOGR',
'jog_speed': 'JVEL',
'last_dial_val': 'LDVL',
'low_limit': 'LLM',
'low_limit_set': 'LLS',
'lo_severity': 'LLSV',
'lolo_alarm': 'LOLO',
'low_op_range': 'LOPR',
'low_alarm': 'LOW',
'last_rel_val': 'LRLV',
'last_dial_drive': 'LRVL',
'last_SPMG': 'LSPG',
'low_severity': 'LSV',
'last_drive': 'LVAL',
'soft_limit': 'LVIO',
'in_progress': 'MIP',
'missed': 'MISS',
'moving': 'MOVN',
'resolution': 'MRES',
'motor_status': 'MSTA',
'offset': 'OFF',
'output_mode': 'OMSL',
'output': 'OUT',
'prop_gain': 'PCOF',
'precision': 'PREC',
'readback': 'RBV',
'retry_max': 'RTRY',
'retry_count': 'RCNT',
'retry_deadband': 'RDBD',
'dial_difference': 'RDIF',
'raw_encoder_pos': 'REP',
'raw_high_limit': 'RHLS',
'raw_low_limit': 'RLLS',
'relative_value': 'RLV',
'raw_motor_pos': 'RMP',
'raw_readback': 'RRBV',
'readback_res': 'RRES',
'raw_drive': 'RVAL',
'dial_speed': 'RVEL',
's_speed': 'S',
's_back_speed': 'SBAK',
's_base_speed': 'SBAS',
's_max_speed': 'SMAX',
'set': 'SET',
'stop_go': 'SPMG',
's_revolutions': 'SREV',
'stop_command': 'STOP',
't_direction': 'TDIR',
'tweak_forward': 'TWF',
'tweak_reverse': 'TWR',
'tweak_val': 'TWV',
'use_encoder': 'UEIP',
'u_revolutions': 'UREV',
'use_rdbl': 'URIP',
'drive': 'VAL',
'base_speed': 'VBAS',
'slew_speed': 'VELO',
'version': 'VERS',
'max_speed': 'VMAX',
'use_home': 'ATHM',
'deriv_gain': 'DCOF',
'use_torque': 'CNEN',
'device_type': 'DTYP',
'record_type': 'RTYP',
'status': 'STAT'}
_init_list = ('VAL', 'DESC', 'RTYP', 'RBV', 'PREC', 'TWV',
'FOFF', 'VELO', 'STAT', 'SET', 'LLM', 'HLM',
'SPMG', 'LVIO', 'HLS', 'LLS', 'disabled')
_nonpvs = ('_prefix', '_pvs', '_delim', '_init', '_init_list',
'_alias', '_extras')
def __init__(self, name=None, timeout=3.0):
if name is None:
raise MotorException("must supply motor name")
if name.endswith('.VAL'):
name = name[:-4]
if name.endswith('.'):
name = name[:-1]
self._prefix = name
device.Device.__init__(self, name, delim='.',
attrs=self._init_list,
timeout=timeout)
# make sure this is really a motor!
rectype = self.get('RTYP')
if rectype != 'motor':
raise MotorException("%s is not an Epics Motor" % name)
for key, val in self._extras.items():
pvname = "%s%s" % (name, val)
self.add_pv(pvname, attr=key)
self._callbacks = {}
def __repr__(self):
return "<epics.Motor: %s: '%s'>" % (self._prefix, self.DESC)
def __str__(self):
return self.__repr__()
def __getattr__(self, attr):
" internal method "
if attr in self._alias:
attr = self._alias[attr]
if attr in self._pvs:
return self.get(attr)
if not attr.startswith('__'):
pv = self.PV(attr, connect=True)
if not pv.connected:
raise MotorException("EpicsMotor has no attribute %s" % attr)
return self.get(attr)
else:
return self._pvs[attr]
def __setattr__(self, attr, val):
if attr in ('name', '_prefix', '_pvs', '_delim', '_init',
'_alias', '_nonpvs', '_extra', '_callbacks'):
self.__dict__[attr] = val
return
if attr in self._alias:
attr = self._alias[attr]
if attr in self._pvs:
return self.put(attr, val)
elif attr in self.__dict__:
self.__dict__[attr] = val
elif self._init:
try:
self.PV(attr)
return self.put(attr, val)
except:
raise MotorException("EpicsMotor has no attribute %s" % attr)
def put(self, attr, value, wait=False, use_complete=False, timeout=10):
"""put a Motor attribute value,
optionally wait for completion or
up to a supplied timeout value
"""
if attr in self._alias:
attr = self._alias[attr]
thispv = self.PV(attr)
thispv.wait_for_connection()
return thispv.put(value, wait=wait, use_complete=use_complete,
timeout=timeout)
def get(self, attr, as_string=False, count=None, timeout=None):
"""get a Motor attribute value,
option as_string returns a string representation
"""
if attr in self._alias:
attr = self._alias[attr]
return self.PV(attr).get(as_string=as_string, count=count,
timeout=timeout)
def check_limits(self):
""" check motor limits:
returns None if no limits are violated
raises expection if a limit is violated"""
for field, msg in (('LVIO', 'Soft limit violation'),
('HLS', 'High hard limit violation'),
('LLS', 'Low hard limit violation')):
if self.get(field) != 0:
raise MotorLimitException(msg)
return
def within_limits(self, val, dial=False):
""" returns whether a value for a motor is within drive limits
with dial=True dial limits are used (default is user limits)"""
ll_name, hl_name = 'LLM', 'HLM'
if dial:
ll_name, hl_name = 'DLLM', 'DHLM'
return (val <= self.get(hl_name) and val >= self.get(ll_name))
def move(self, val=None, relative=False, wait=False, timeout=300.0,
dial=False, step=False, raw=False,
ignore_limits=False, confirm_move=False):
""" moves motor drive to position
arguments:
==========
val value to move to (float) [Must be provided]
relative move relative to current position (T/F) [F]
wait whether to wait for move to complete (T/F) [F]
dial use dial coordinates (T/F) [F]
raw use raw coordinates (T/F) [F]
step use raw coordinates (backward compat)(T/F) [F]
ignore_limits try move without regard to limits (T/F) [F]
confirm_move try to confirm that move has begun (T/F) [F]
timeout max time for move to complete (in seconds) [300]
return values:
-13 : invalid value (cannot convert to float). Move not attempted.
-12 : target value outside soft limits. Move not attempted.
-11 : drive PV is not connected: Move not attempted.
-8 : move started, but timed-out.
-7 : move started, timed-out, but appears done.
-5 : move started, unexpected return value from PV.put()
-4 : move-with-wait finished, soft limit violation seen
-3 : move-with-wait finished, hard limit violation seen
0 : move-with-wait finish OK.
0 : move-without-wait executed, not cpmfirmed
1 : move-without-wait executed, move confirmed
3 : move-without-wait finished, hard limit violation seen
4 : move-without-wait finished, soft limit violation seen
"""
step = step or raw
NONFLOAT, OUTSIDE_LIMITS, UNCONNECTED = -13, -12, -11
TIMEOUT, TIMEOUT_BUTDONE = -8, -7
UNKNOWN_ERROR = -5
DONEW_SOFTLIM, DONEW_HARDLIM = -4, -3
DONE_OK = 0
MOVE_BEGUN, MOVE_BEGUN_CONFIRMED = 0, 1
NOWAIT_SOFTLIM, NOWAIT_HARDLIM = 4, 3
try:
val = float(val)
except TypeError:
return NONFLOAT
drv, rbv = ('VAL', 'RBV')
if dial:
drv, rbv = ('DVAL', 'DRBV')
elif step:
drv, rbv = ('RVAL', 'RRBV')
if relative:
val += self.get(drv)
# Check for limit violations
if not ignore_limits and not step:
if not self.within_limits(val, dial=dial):
return OUTSIDE_LIMITS
stat = self.put(drv, val, wait=wait, timeout=timeout)
if stat is None:
return UNCONNECTED
if wait and stat == -1: # move started, exceeded timeout
if self.get('DMOV') == 0:
return TIMEOUT
return TIMEOUT_BUTDONE
if 1 == stat:
if wait: # ... and finished OK
if 1 == self.get('LVIO'):
return DONEW_SOFTLIM
elif 1 == self.get('HLS') or 1 == self.get('LLS'):
return DONEW_HARDLIM
return DONE_OK
else:
if 1 == self.get('LVIO') or confirm_move:
ca.poll(evt=1.e-2)
moving = False
if confirm_move:
t0 = time.time()
while self.get('MOVN')==0:
ca.poll(evt=1.e-3)
if time.time() - t0 > 0.25: break
if 1 == self.get('MOVN'):
return MOVE_BEGUN_CONFIRMED
elif 1 == self.get('LVIO'):
return NOWAIT_SOFTLIM
elif 1 == self.get('HLS') or 1 == self.get('LLS'):
return NOWAIT_HARDLIM
else:
return MOVE_BEGUN
return UNKNOWN_ERROR
def get_position(self, dial=False, readback=False, step=False, raw=False):
"""
Returns the target or readback motor position in user, dial or step
coordinates.
Keywords:
readback:
Set readback=True to return the readback position in the
desired coordinate system. The default is to return the
drive position of the motor.
dial:
Set dial=True to return the position in dial coordinates.
The default is user coordinates.
raw (or step):
Set raw=True to return the raw position in steps.
The default is user coordinates.
Notes:
The "raw" or "step" and "dial" keywords are mutually exclusive.
The "readback" keyword can be used in user, dial or step
coordinates.
Examples:
m=epicsMotor('13BMD:m38')
m.move(10) # Move to position 10 in user coordinates
p=m.get_position(dial=True) # Read the target position in dial coordinates
p=m.get_position(readback=True, step=True) # Read the actual position in steps
"""
pos, rbv = ('VAL','RBV')
if dial:
pos, rbv = ('DVAL', 'DRBV')
elif step or raw:
pos, rbv = ('RVAL', 'RRBV')
if readback:
pos = rbv
return self.get(pos)
def tweak(self, direction='foreward', wait=False, timeout=300.0):
""" move the motor by the tweak_val
takes optional args:
direction direction of motion (forward/reverse) [forward]
must start with 'rev' or 'back' for a reverse tweak.
wait wait for move to complete before returning (T/F) [F]
timeout max time for move to complete (in seconds) [300]
"""
ifield = 'TWF'
if direction.startswith('rev') or direction.startswith('back'):
ifield = 'TWR'
stat = self.put(ifield, 1, wait=wait, timeout=timeout)
ret = stat
if stat == 1:
ret = 0
if stat == -2:
ret = -1
try:
self.check_limits()
except MotorLimitException:
ret = -1
return ret
def set_position(self, position, dial=False, step=False, raw=False):
"""
Sets the motor position in user, dial or step coordinates.
Inputs:
position:
The new motor position
Keywords:
dial:
Set dial=True to set the position in dial coordinates.
The default is user coordinates.
raw:
Set raw=True to set the position in raw steps.
The default is user coordinates.
Notes:
The 'raw' and 'dial' keywords are mutually exclusive.
Examples:
m=epicsMotor('13BMD:m38')
m.set_position(10, dial=True) # Set the motor position to 10 in
# dial coordinates
m.set_position(1000, raw=True) # Set the motor position to 1000 steps
"""
# Put the motor in "SET" mode
self.put('SET', 1)
# determine which drive value to use
drv = 'VAL'
if dial:
drv = 'DVAL'
elif step or raw:
drv = 'RVAL'
self.put(drv, position)
# Put the motor back in "Use" mode
self.put('SET', 0)
def get_pv(self, attr):
"return PV for a field"
return self.PV(attr)
def clear_callback(self, attr='drive'):
"clears callback for attribute"
try:
index = self._callbacks.get(attr, None)
if index is not None:
self.PV(attr).remove_callback(index=index)
except:
self.PV(attr).clear_callbacks()
def set_callback(self, attr='VAL', callback=None, kws=None):
"define a callback for an attribute"
self.get(attr)
kw_args = {}
kw_args['motor_field'] = attr
if kws is not None:
kw_args.update(kws)
index = self.PV(attr).add_callback(callback=callback, **kw_args)
self._callbacks[attr] = index
def refresh(self):
""" refresh all motor parameters currently in use:
make sure all used attributes are up-to-date."""
ca.poll()
def StopNow(self):
"stop motor as soon as possible"
self.stop()
def stop(self):
"stop motor as soon as possible"
self.STOP = 1
def make_step_list(self, minstep=0.0, maxstep=None, decades=10):
""" create a reasonable list of motor steps, as for a dropdown menu
The list is based on motor range Mand precision"""
if maxstep is None:
maxstep = 0.6 * abs(self.HLM - self.LLM)
steplist = []
for i in range(decades):
for step in [j* 10**(i - self.PREC) for j in (1, 2, 5)]:
if (step <= maxstep and step > 0.98*minstep):
steplist.append(step)
return steplist
def get_info(self):
"return information, current field values"
out = {}
for attr in ('DESC', 'VAL', 'RBV', 'PREC', 'VELO', 'STAT',
'SET', 'TWV','LLM', 'HLM', 'SPMG'):
out[attr] = self.get(attr, as_string=True)
return out
def show_info(self):
" show basic motor settings "
ca.poll()
out = []
out.append(repr(self))
out.append( "--------------------------------------")
for nam, val in self.get_info().items():
if len(nam) < 16:
nam = "%s%s" % (nam, ' '*(16-len(nam)))
out.append("%s = %s" % (nam, val))
out.append("--------------------------------------")
ca.write("\n".join(out))
def show_all(self):
""" show all motor attributes"""
out = []
add = out.append
add("# Motor %s" % (self._prefix))
add("# field value PV name")
add("#------------------------------------------------------------")
ca.poll()
klist = list( self._alias.keys())
klist.sort()
for attr in klist:
suff = self._alias[attr]
# pvn = self._alias[attr]
label = attr + ' '*(18-min(18, len(attr)))
value = self.get(suff, as_string=True)
pvname = self.PV(suff).pvname
if value is None:
value = 'Not Connected??'
value = value + ' '*(18-min(18, len(value)))
add(" %s %s %s" % (label, value, pvname))
ca.write("\n".join(out))
if (__name__ == '__main__'):
for arg in sys.argv[1:]:
m = Motor(arg)
m.show_info()
|