-
Notifications
You must be signed in to change notification settings - Fork 0
Fast energy scan plan #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 10 commits
6df5186
ae7b06f
d805566
6eb20a5
d29da35
b243409
1a17c37
790de1b
136e6f6
4e12bd6
2b8b789
aaf7bd0
b2c7332
9e617d1
c7edd5c
1fd75c1
8290031
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,10 @@ | ||
| from collections.abc import Hashable, Iterator | ||
| import uuid | ||
| from collections.abc import Generator, Hashable, Iterator | ||
| from typing import Any | ||
|
|
||
| import bluesky.plan_stubs as bps | ||
| from bluesky.plan_stubs import abs_set | ||
| from bluesky.utils import MsgGenerator, plan | ||
| from bluesky.utils import Msg, MsgGenerator, plan | ||
| from dodal.devices.slits import Slits | ||
| from ophyd_async.epics.motor import Motor | ||
| from pydantic import RootModel | ||
|
|
@@ -172,3 +173,26 @@ def get_velocity_and_step_size( | |
| ideal_velocity = round(max_velocity, 3) | ||
|
|
||
| return ideal_velocity, ideal_step_size | ||
|
|
||
|
|
||
| def cache_speed( | ||
| devices_and_speeds: list[Motor], | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this just be |
||
| ) -> Generator[Msg, Any, dict[Motor, float]]: | ||
| speeds = {} | ||
| for axis in devices_and_speeds: | ||
| speed = yield from bps.rd(axis.velocity) | ||
| speeds[axis] = speed | ||
| return speeds | ||
|
|
||
|
|
||
| @plan | ||
| def restore_speed( | ||
| devices_and_speeds: dict[Motor, float], | ||
| group: str | None = None, | ||
| wait_for_all: bool = True, | ||
| ) -> MsgGenerator: | ||
| reset_group = f"reset-{group if group else str(uuid.uuid4())[:6]}" | ||
| for device, speed in devices_and_speeds.items(): | ||
| yield from bps.abs_set(device.velocity, speed, group=reset_group) | ||
| if wait_for_all: | ||
| yield from bps.wait(reset_group) | ||
|
Comment on lines
+178
to
+199
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add doc strings |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,112 @@ | ||
| from collections import defaultdict | ||
| from unittest.mock import ANY | ||
|
|
||
| import pytest | ||
| from bluesky.run_engine import RunEngine | ||
| from dodal.devices.apple2_undulator import ( | ||
| EnergySetter, | ||
| UndulatorGateStatus, | ||
| ) | ||
| from dodal.devices.i10.i10_apple2 import I10Apple2 | ||
| from dodal.devices.pgm import PGM | ||
| from ophyd_async.core import ( | ||
| Device, | ||
| StrictEnum, | ||
| init_devices, | ||
| ) | ||
| from ophyd_async.testing import assert_emitted, set_mock_value | ||
|
|
||
| from sm_bluesky.common.plans import soft_fly_energy_scan | ||
|
|
||
| from ...sim_devices.sim_stage import SimMotorExtra | ||
| from ...test_data.common import ( | ||
| LOOKUP_TABLE_PATH, | ||
| ) | ||
|
|
||
|
|
||
| class Grating(StrictEnum): | ||
| TESTING = "Grating" | ||
|
|
||
|
|
||
| class FakePGM(Device): | ||
| def __init__(self, name=""): | ||
| self.energy = SimMotorExtra(instant=False) | ||
| super().__init__(name=name) | ||
|
|
||
|
|
||
| @pytest.fixture | ||
| async def mock_pgm(prefix: str = "BLXX-EA-DET-007:") -> FakePGM: | ||
| async with init_devices(mock=True): | ||
| mock_pgm = FakePGM() | ||
| return mock_pgm | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why create a
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I need simMotor rather than just mock, I need the motor to be non instant to test flying scan. |
||
|
|
||
|
|
||
| @pytest.fixture | ||
| async def mock_energy(mock_pgm: PGM) -> EnergySetter: | ||
| async with init_devices(mock=True): | ||
| mock_energy = EnergySetter( | ||
| id=I10Apple2( | ||
| look_up_table_dir=LOOKUP_TABLE_PATH, | ||
| source=("Source", "idu"), | ||
| prefix="BLWOW-MO-SERVC-01:", | ||
| ), | ||
| pgm=mock_pgm, | ||
| ) | ||
|
|
||
| set_mock_value(mock_energy.id.gap.gate, UndulatorGateStatus.CLOSE) | ||
| set_mock_value(mock_energy.id.gap.high_limit_travel, 200) | ||
| set_mock_value(mock_energy.id.gap.low_limit_travel, 10) | ||
| set_mock_value(mock_energy.id.gap.acceleration_time, 0.2) | ||
| set_mock_value(mock_energy.id.phase.gate, UndulatorGateStatus.CLOSE) | ||
| set_mock_value(mock_energy.id.id_jaw_phase.gate, UndulatorGateStatus.CLOSE) | ||
| set_mock_value(mock_energy.id.id_jaw_phase.jaw_phase.velocity, 1) | ||
| set_mock_value(mock_energy.id.gap.velocity, 2) | ||
| set_mock_value(mock_energy.id.gap.max_velocity, 200) | ||
| set_mock_value(mock_energy.id.gap.min_velocity, 0.0) | ||
|
|
||
| set_mock_value(mock_energy.id.phase.btm_inner.velocity, 1) | ||
| set_mock_value(mock_energy.id.phase.top_inner.velocity, 1) | ||
| set_mock_value(mock_energy.id.phase.btm_outer.velocity, 1) | ||
Relm-Arrowny marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| set_mock_value(mock_energy.id.phase.top_outer.velocity, 1) | ||
| set_mock_value(mock_energy.pgm_ref().energy.acceleration_time, 0.1) | ||
| set_mock_value(mock_energy.pgm_ref().energy.user_readback, 500) | ||
| set_mock_value(mock_energy.pgm_ref().energy.user_setpoint, 500) | ||
| set_mock_value(mock_energy.pgm_ref().energy.max_velocity, 50) | ||
| set_mock_value(mock_energy.pgm_ref().energy.high_limit_travel, 1700) | ||
| set_mock_value(mock_energy.pgm_ref().energy.low_limit_travel, 400) | ||
| return mock_energy | ||
|
|
||
|
|
||
| async def test_soft_fly_energy_scan_success( | ||
| mock_energy: EnergySetter, RE: RunEngine, det | ||
Relm-Arrowny marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ): | ||
Relm-Arrowny marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| docs = defaultdict(list) | ||
| det.start_simulation() | ||
|
|
||
| def capture_emitted(name, doc): | ||
| docs[name].append(doc) | ||
Relm-Arrowny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| RE( | ||
| soft_fly_energy_scan([det], mock_energy, 700, 800, 0.2, 1e-3), | ||
| capture_emitted, | ||
| wait=True, | ||
| ) | ||
|
|
||
| assert_emitted(docs, start=1, descriptor=1, event=ANY, stop=1) | ||
| # Number of event depend how fast motor is moving, it has to be more than 1 | ||
| assert len(docs["event"]) > 1 | ||
| # check the starting point | ||
| assert docs["event"][0]["data"] == { | ||
| "rand": ANY, | ||
| "mock_energy-id-energy": 750, | ||
| "mock_pgm-energy": 700.0, | ||
| } | ||
| # check end point | ||
| assert docs["event"][-1]["data"] == { | ||
| "rand": ANY, | ||
| "mock_energy-id-energy": 750, | ||
| "mock_pgm-energy": 810.0, | ||
| } | ||
| # speed reset | ||
| assert await mock_energy.pgm_ref().energy.velocity.get_value() == 1.0 | ||
| assert await mock_energy.id.gap.velocity.get_value() == 2.0 | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be tagged with plan?