forked from MBI-Div-B/sardana-KepcoMotorController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KepcoMotorController.py
91 lines (74 loc) · 2.79 KB
/
KepcoMotorController.py
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
import visa, time
from sardana import State
from sardana.pool.controller import MotorController
from sardana.pool.controller import Type, Description, DefaultValue
class KepcoMotorController(MotorController):
ctrl_properties = {'resource': {Type: str, Description: 'GPIB resource', DefaultValue: 'GPIB0::6::INSTR'}}
MaxDevice = 1
def __init__(self, inst, props, *args, **kwargs):
super(kepcoController, self).__init__(
inst, props, *args, **kwargs)
self.rm = visa.ResourceManager('@py')
self.inst = self.rm.open_resource(self.resource)
print 'Kepco Initialization'
idn = self.inst.query('*IDN?')
if idn:
print idn
print 'Kepco is initialized!'
else:
print 'Kepco is NOT initialized!'
# initialize hardware communication
self._motors = {}
self._isMoving = None
self._moveStartTime = None
self._threshold = 0.1
self._target = None
self._timeout = 10
def AddDevice(self, axis):
self._motors[axis] = True
self.inst.write('FUNC:MODE CURR')
self.inst.write('CURR:MODE FIX')
self.inst.write('CURR:LIM:NEG 5')
self.inst.write('CURR:LIM:POS 5')
self.inst.write('OUTP ON')
def DeleteDevice(self, axis):
del self._motors[axis]
def StateOne(self, axis):
limit_switches = MotorController.NoLimitSwitch
pos = self.ReadOne(axis)
now = time.time()
if self._isMoving == False:
state = State.On
elif self._isMoving & (abs(pos-self._target) > self._threshold):
# moving and not in threshold window
if (now-self._moveStartTime) < self._timeout:
# before timeout
state = State.Moving
else:
# after timeout
self._log.warning('Kepco Timeout')
self._isMoving = False
state = State.On
elif self._isMoving & (abs(pos-self._target) <= self._threshold):
# moving and within threshold window
self._isMoving = False
state = State.On
#print('Kepco Tagret: %f Kepco Current Pos: %f' % (self._target, pos))
else:
state = State.Fault
return state, 'some text', limit_switches
def ReadOne(self, axis):
res = float(self.inst.query('MEAS:CURR?'))
time.sleep(0.001)
return res
def StartOne(self, axis, position):
self._moveStartTime = time.time()
self._isMoving = True
self._target = position
cmd = 'CURR {:f}'.format(position)
time.sleep(0.01)
self.inst.write(cmd)
def StopOne(self, axis):
pass
def AbortOne(self, axis):
pass