mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-06-25 20:21:08 +02:00
feat: added galil for flomni
This commit is contained in:
394
ophyd_devices/galil/fgalil_ophyd.py
Normal file
394
ophyd_devices/galil/fgalil_ophyd.py
Normal file
@ -0,0 +1,394 @@
|
|||||||
|
import functools
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
from typing import List
|
||||||
|
|
||||||
|
import numpy as np
|
||||||
|
from bec_lib.core import bec_logger
|
||||||
|
from ophyd import Component as Cpt
|
||||||
|
from ophyd import Device, PositionerBase, Signal
|
||||||
|
from ophyd.status import wait as status_wait
|
||||||
|
from ophyd.utils import LimitError, ReadOnlyError
|
||||||
|
from prettytable import PrettyTable
|
||||||
|
|
||||||
|
from ophyd_devices.galil.galil_ophyd import (
|
||||||
|
BECConfigError,
|
||||||
|
GalilCommunicationError,
|
||||||
|
GalilController,
|
||||||
|
GalilError,
|
||||||
|
)
|
||||||
|
from ophyd_devices.utils.controller import Controller, threadlocked
|
||||||
|
from ophyd_devices.utils.socket import SocketIO, SocketSignal, raise_if_disconnected
|
||||||
|
|
||||||
|
logger = bec_logger.logger
|
||||||
|
|
||||||
|
|
||||||
|
class FlomniGalilController(GalilController):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class GalilSignalBase(SocketSignal):
|
||||||
|
def __init__(self, signal_name, **kwargs):
|
||||||
|
self.signal_name = signal_name
|
||||||
|
super().__init__(**kwargs)
|
||||||
|
self.controller = self.parent.controller
|
||||||
|
self.sock = self.parent.controller.sock
|
||||||
|
|
||||||
|
|
||||||
|
class GalilSignalRO(GalilSignalBase):
|
||||||
|
def __init__(self, signal_name, **kwargs):
|
||||||
|
super().__init__(signal_name, **kwargs)
|
||||||
|
self._metadata["write_access"] = False
|
||||||
|
|
||||||
|
def _socket_set(self, val):
|
||||||
|
raise ReadOnlyError("Read-only signals cannot be set")
|
||||||
|
|
||||||
|
|
||||||
|
class GalilReadbackSignal(GalilSignalRO):
|
||||||
|
@retry_once
|
||||||
|
@threadlocked
|
||||||
|
def _socket_get(self) -> float:
|
||||||
|
"""Get command for the readback signal
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
float: Readback value after adjusting for sign and motor resolution.
|
||||||
|
"""
|
||||||
|
|
||||||
|
current_pos = float(self.controller.socket_put_and_receive(f"TD{self.parent.axis_Id}"))
|
||||||
|
current_pos *= self.parent.sign
|
||||||
|
step_mm = self.parent.motor_resolution.get()
|
||||||
|
return current_pos / step_mm
|
||||||
|
|
||||||
|
def read(self):
|
||||||
|
self._metadata["timestamp"] = time.time()
|
||||||
|
val = super().read()
|
||||||
|
if self.parent.axis_Id_numeric == 2:
|
||||||
|
try:
|
||||||
|
rt = self.parent.device_manager.devices[self.parent.rt]
|
||||||
|
if rt.enabled:
|
||||||
|
rt.obj.controller.set_rotation_angle(val[self.parent.name]["value"])
|
||||||
|
except KeyError:
|
||||||
|
logger.warning("Failed to set RT value during readback.")
|
||||||
|
return val
|
||||||
|
|
||||||
|
|
||||||
|
class GalilSetpointSignal(GalilSignalBase):
|
||||||
|
setpoint = 0
|
||||||
|
|
||||||
|
def _socket_get(self) -> float:
|
||||||
|
"""Get command for receiving the setpoint / target value.
|
||||||
|
The value is not pulled from the controller but instead just the last setpoint used.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
float: setpoint / target value
|
||||||
|
"""
|
||||||
|
return self.setpoint
|
||||||
|
|
||||||
|
@retry_once
|
||||||
|
@threadlocked
|
||||||
|
def _socket_set(self, val: float) -> None:
|
||||||
|
"""Set a new target value / setpoint value. Before submission, the target value is adjusted for the axis' sign.
|
||||||
|
Furthermore, it is ensured that all axes are referenced before a new setpoint is submitted.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
val (float): Target value / setpoint value
|
||||||
|
|
||||||
|
Raises:
|
||||||
|
GalilError: Raised if not all axes are referenced.
|
||||||
|
|
||||||
|
"""
|
||||||
|
target_val = val * self.parent.sign
|
||||||
|
self.setpoint = target_val
|
||||||
|
axes_referenced = float(self.controller.socket_put_and_receive("MG allaxref"))
|
||||||
|
if axes_referenced:
|
||||||
|
while self.controller.is_thread_active(0):
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
if self.parent.axis_Id_numeric == 2:
|
||||||
|
angle_status = self.parent.device_manager.devices[
|
||||||
|
self.parent.rt
|
||||||
|
].obj.controller.feedback_status_angle_lamni()
|
||||||
|
|
||||||
|
if angle_status:
|
||||||
|
self.controller.socket_put_confirmed("angintf=1")
|
||||||
|
|
||||||
|
self.controller.socket_put_confirmed(f"naxis={self.parent.axis_Id_numeric}")
|
||||||
|
self.controller.socket_put_confirmed(f"ntarget={target_val:.3f}")
|
||||||
|
self.controller.socket_put_confirmed("movereq=1")
|
||||||
|
self.controller.socket_put_confirmed("XQ#NEWPAR")
|
||||||
|
while self.controller.is_thread_active(0):
|
||||||
|
time.sleep(0.005)
|
||||||
|
else:
|
||||||
|
raise GalilError("Not all axes are referenced.")
|
||||||
|
|
||||||
|
|
||||||
|
class GalilMotorResolution(GalilSignalRO):
|
||||||
|
@retry_once
|
||||||
|
@threadlocked
|
||||||
|
def _socket_get(self):
|
||||||
|
return float(
|
||||||
|
self.controller.socket_put_and_receive(f"MG stppermm[{self.parent.axis_Id_numeric}]")
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class GalilMotorIsMoving(GalilSignalRO):
|
||||||
|
@threadlocked
|
||||||
|
def _socket_get(self):
|
||||||
|
return (
|
||||||
|
self.controller.is_axis_moving(self.parent.axis_Id, self.parent.axis_Id_numeric)
|
||||||
|
or self.controller.is_thread_active(0)
|
||||||
|
or self.controller.is_thread_active(2)
|
||||||
|
)
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
val = super().get()
|
||||||
|
if val is not None:
|
||||||
|
self._run_subs(
|
||||||
|
sub_type=self.SUB_VALUE,
|
||||||
|
value=val,
|
||||||
|
timestamp=time.time(),
|
||||||
|
)
|
||||||
|
return val
|
||||||
|
|
||||||
|
|
||||||
|
class GalilAxesReferenced(GalilSignalRO):
|
||||||
|
@threadlocked
|
||||||
|
def _socket_get(self):
|
||||||
|
return self.controller.socket_put_and_receive("MG allaxref")
|
||||||
|
|
||||||
|
|
||||||
|
class GalilMotor(Device, PositionerBase):
|
||||||
|
USER_ACCESS = ["controller"]
|
||||||
|
readback = Cpt(
|
||||||
|
GalilReadbackSignal,
|
||||||
|
signal_name="readback",
|
||||||
|
kind="hinted",
|
||||||
|
)
|
||||||
|
user_setpoint = Cpt(GalilSetpointSignal, signal_name="setpoint")
|
||||||
|
motor_resolution = Cpt(GalilMotorResolution, signal_name="resolution", kind="config")
|
||||||
|
motor_is_moving = Cpt(GalilMotorIsMoving, signal_name="motor_is_moving", kind="normal")
|
||||||
|
all_axes_referenced = Cpt(GalilAxesReferenced, signal_name="all_axes_referenced", kind="config")
|
||||||
|
high_limit_travel = Cpt(Signal, value=0, kind="omitted")
|
||||||
|
low_limit_travel = Cpt(Signal, value=0, kind="omitted")
|
||||||
|
|
||||||
|
SUB_READBACK = "readback"
|
||||||
|
SUB_CONNECTION_CHANGE = "connection_change"
|
||||||
|
_default_sub = SUB_READBACK
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
axis_Id,
|
||||||
|
prefix="",
|
||||||
|
*,
|
||||||
|
name,
|
||||||
|
kind=None,
|
||||||
|
read_attrs=None,
|
||||||
|
configuration_attrs=None,
|
||||||
|
parent=None,
|
||||||
|
host="mpc2680.psi.ch",
|
||||||
|
port=8081,
|
||||||
|
limits=None,
|
||||||
|
sign=1,
|
||||||
|
socket_cls=SocketIO,
|
||||||
|
device_manager=None,
|
||||||
|
**kwargs,
|
||||||
|
):
|
||||||
|
self.axis_Id = axis_Id
|
||||||
|
self.sign = sign
|
||||||
|
self.controller = FlomniGalilController(socket=socket_cls(host=host, port=port))
|
||||||
|
self.controller.set_axis(axis=self, axis_nr=self.axis_Id_numeric)
|
||||||
|
self.tolerance = kwargs.pop("tolerance", 0.5)
|
||||||
|
self.device_mapping = kwargs.pop("device_mapping", {})
|
||||||
|
self.device_manager = device_manager
|
||||||
|
|
||||||
|
if len(self.device_mapping) > 0 and self.device_manager is None:
|
||||||
|
raise BECConfigError(
|
||||||
|
"device_mapping has been specified but the device_manager cannot be accessed."
|
||||||
|
)
|
||||||
|
self.rt = self.device_mapping.get("rt")
|
||||||
|
|
||||||
|
super().__init__(
|
||||||
|
prefix,
|
||||||
|
name=name,
|
||||||
|
kind=kind,
|
||||||
|
read_attrs=read_attrs,
|
||||||
|
configuration_attrs=configuration_attrs,
|
||||||
|
parent=parent,
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
self.readback.name = self.name
|
||||||
|
self.controller.subscribe(
|
||||||
|
self._update_connection_state, event_type=self.SUB_CONNECTION_CHANGE
|
||||||
|
)
|
||||||
|
self._update_connection_state()
|
||||||
|
# self.readback.subscribe(self._forward_readback, event_type=self.readback.SUB_VALUE)
|
||||||
|
|
||||||
|
if limits is not None:
|
||||||
|
assert len(limits) == 2
|
||||||
|
self.low_limit_travel.put(limits[0])
|
||||||
|
self.high_limit_travel.put(limits[1])
|
||||||
|
|
||||||
|
@property
|
||||||
|
def limits(self):
|
||||||
|
return (self.low_limit_travel.get(), self.high_limit_travel.get())
|
||||||
|
|
||||||
|
@property
|
||||||
|
def low_limit(self):
|
||||||
|
return self.limits[0]
|
||||||
|
|
||||||
|
@property
|
||||||
|
def high_limit(self):
|
||||||
|
return self.limits[1]
|
||||||
|
|
||||||
|
def check_value(self, pos):
|
||||||
|
"""Check that the position is within the soft limits"""
|
||||||
|
low_limit, high_limit = self.limits
|
||||||
|
|
||||||
|
if low_limit < high_limit and not (low_limit <= pos <= high_limit):
|
||||||
|
raise LimitError(f"position={pos} not within limits {self.limits}")
|
||||||
|
|
||||||
|
def _update_connection_state(self, **kwargs):
|
||||||
|
for walk in self.walk_signals():
|
||||||
|
walk.item._metadata["connected"] = self.controller.connected
|
||||||
|
|
||||||
|
def _forward_readback(self, **kwargs):
|
||||||
|
kwargs.pop("sub_type")
|
||||||
|
self._run_subs(sub_type="readback", **kwargs)
|
||||||
|
|
||||||
|
@raise_if_disconnected
|
||||||
|
def move(self, position, wait=True, **kwargs):
|
||||||
|
"""Move to a specified position, optionally waiting for motion to
|
||||||
|
complete.
|
||||||
|
|
||||||
|
Parameters
|
||||||
|
----------
|
||||||
|
position
|
||||||
|
Position to move to
|
||||||
|
moved_cb : callable
|
||||||
|
Call this callback when movement has finished. This callback must
|
||||||
|
accept one keyword argument: 'obj' which will be set to this
|
||||||
|
positioner instance.
|
||||||
|
timeout : float, optional
|
||||||
|
Maximum time to wait for the motion. If None, the default timeout
|
||||||
|
for this positioner is used.
|
||||||
|
|
||||||
|
Returns
|
||||||
|
-------
|
||||||
|
status : MoveStatus
|
||||||
|
|
||||||
|
Raises
|
||||||
|
------
|
||||||
|
TimeoutError
|
||||||
|
When motion takes longer than `timeout`
|
||||||
|
ValueError
|
||||||
|
On invalid positions
|
||||||
|
RuntimeError
|
||||||
|
If motion fails other than timing out
|
||||||
|
"""
|
||||||
|
self._started_moving = False
|
||||||
|
timeout = kwargs.pop("timeout", 100)
|
||||||
|
status = super().move(position, timeout=timeout, **kwargs)
|
||||||
|
self.user_setpoint.put(position, wait=False)
|
||||||
|
|
||||||
|
def move_and_finish():
|
||||||
|
while self.motor_is_moving.get():
|
||||||
|
logger.info("motor is moving")
|
||||||
|
val = self.readback.read()
|
||||||
|
self._run_subs(
|
||||||
|
sub_type=self.SUB_READBACK,
|
||||||
|
value=val,
|
||||||
|
timestamp=time.time(),
|
||||||
|
)
|
||||||
|
time.sleep(0.1)
|
||||||
|
val = self.readback.read()
|
||||||
|
success = np.isclose(
|
||||||
|
val[self.name]["value"],
|
||||||
|
position,
|
||||||
|
atol=self.tolerance,
|
||||||
|
)
|
||||||
|
|
||||||
|
if not success:
|
||||||
|
print(" stop")
|
||||||
|
self._done_moving(success=success)
|
||||||
|
logger.info("Move finished")
|
||||||
|
|
||||||
|
threading.Thread(target=move_and_finish, daemon=True).start()
|
||||||
|
try:
|
||||||
|
if wait:
|
||||||
|
status_wait(status)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
self.stop()
|
||||||
|
raise
|
||||||
|
|
||||||
|
return status
|
||||||
|
|
||||||
|
@property
|
||||||
|
def axis_Id(self):
|
||||||
|
return self._axis_Id_alpha
|
||||||
|
|
||||||
|
@axis_Id.setter
|
||||||
|
def axis_Id(self, val):
|
||||||
|
if isinstance(val, str):
|
||||||
|
if len(val) != 1:
|
||||||
|
raise ValueError(f"Only single-character axis_Ids are supported.")
|
||||||
|
self._axis_Id_alpha = val
|
||||||
|
self._axis_Id_numeric = ord(val.lower()) - 97
|
||||||
|
else:
|
||||||
|
raise TypeError(f"Expected value of type str but received {type(val)}")
|
||||||
|
|
||||||
|
@property
|
||||||
|
def axis_Id_numeric(self):
|
||||||
|
return self._axis_Id_numeric
|
||||||
|
|
||||||
|
@axis_Id_numeric.setter
|
||||||
|
def axis_Id_numeric(self, val):
|
||||||
|
if isinstance(val, int):
|
||||||
|
if val > 26:
|
||||||
|
raise ValueError(f"Numeric value exceeds supported range.")
|
||||||
|
self._axis_Id_alpha = val
|
||||||
|
self._axis_Id_numeric = (chr(val + 97)).capitalize()
|
||||||
|
else:
|
||||||
|
raise TypeError(f"Expected value of type int but received {type(val)}")
|
||||||
|
|
||||||
|
@property
|
||||||
|
def egu(self):
|
||||||
|
"""The engineering units (EGU) for positions"""
|
||||||
|
return "mm"
|
||||||
|
|
||||||
|
def stage(self) -> List[object]:
|
||||||
|
return super().stage()
|
||||||
|
|
||||||
|
def unstage(self) -> List[object]:
|
||||||
|
return super().unstage()
|
||||||
|
|
||||||
|
def stop(self, *, success=False):
|
||||||
|
self.controller.stop_all_axes()
|
||||||
|
return super().stop(success=success)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
mock = False
|
||||||
|
if not mock:
|
||||||
|
leyey = GalilMotor("H", name="leyey", host="mpc2680.psi.ch", port=8081, sign=-1)
|
||||||
|
leyey.stage()
|
||||||
|
status = leyey.move(0, wait=True)
|
||||||
|
status = leyey.move(10, wait=True)
|
||||||
|
leyey.read()
|
||||||
|
|
||||||
|
leyey.get()
|
||||||
|
leyey.describe()
|
||||||
|
|
||||||
|
leyey.unstage()
|
||||||
|
else:
|
||||||
|
from ophyd_devices.utils.socket import SocketMock
|
||||||
|
|
||||||
|
leyex = GalilMotor(
|
||||||
|
"G", name="leyex", host="mpc2680.psi.ch", port=8081, socket_cls=SocketMock
|
||||||
|
)
|
||||||
|
leyey = GalilMotor(
|
||||||
|
"H", name="leyey", host="mpc2680.psi.ch", port=8081, socket_cls=SocketMock
|
||||||
|
)
|
||||||
|
leyex.stage()
|
||||||
|
# leyey.stage()
|
||||||
|
|
||||||
|
leyex.controller.galil_show_all()
|
Reference in New Issue
Block a user