Skip to content

Commit bad8f01

Browse files
committed
fix 96 head trash
1 parent 140cd81 commit bad8f01

File tree

4 files changed

+31
-36
lines changed

4 files changed

+31
-36
lines changed

pylabrobot/liquid_handling/backends/hamilton/STAR.py

+26-31
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
STARLET_SIZE_X,
7070
)
7171
from pylabrobot.resources.liquid import Liquid
72+
from pylabrobot.resources.trash import Trash
7273
from pylabrobot.utils.linalg import matrix_vector_multiply_3x3
7374

7475
T = TypeVar("T")
@@ -1387,7 +1388,8 @@ async def setup(
13871388
core96_head_initialized = await self.request_core_96_head_initialization_status()
13881389
if not core96_head_initialized:
13891390
await self.initialize_core_96_head(
1390-
z_position_at_the_command_end=int(self._traversal_height * 10)
1391+
trash96=self.deck.get_trash_area96(),
1392+
z_position_at_the_command_end=int(self._traversal_height * 10),
13911393
)
13921394

13931395
# After setup, STAR will have thrown out anything mounted on the pipetting channels, including
@@ -2176,7 +2178,7 @@ async def drop_tips96(
21762178
tip_a1 = drop.resource.get_item("A1")
21772179
position = tip_a1.get_absolute_location() + tip_a1.center() + drop.offset
21782180
else:
2179-
position = drop.resource.get_absolute_location() + drop.offset
2181+
position = self._position_96_head_in_resource(drop.resource) + drop.offset
21802182

21812183
x_direction = 0 if position.x > 0 else 1
21822184
return await self.discard_tips_core96(
@@ -3098,6 +3100,17 @@ async def core_check_resource_exists_at_location_center(
30983100
audio.play_got_item()
30993101
return True
31003102

3103+
def _position_96_head_in_resource(self, resource: Resource) -> Coordinate:
3104+
"""The firmware command expects location of tip A1 of the head. We center the head in the given
3105+
resource."""
3106+
head_size_x = 9 * 11 # 12 channels, 9mm spacing in between
3107+
head_size_y = 9 * 7 # 8 channels, 9mm spacing in between
3108+
channel_size = 9
3109+
loc = resource.get_absolute_location()
3110+
loc.x += (resource.get_size_x() - head_size_x) / 2 + channel_size / 2
3111+
loc.y += (resource.get_size_y() - head_size_y) / 2 + channel_size / 2
3112+
return loc
3113+
31013114
# ============== Firmware Commands ==============
31023115

31033116
# -------------- 3.2 System general commands --------------
@@ -5116,46 +5129,28 @@ async def request_tadm_status(self):
51165129
# -------------- 3.10.1 Initialization --------------
51175130

51185131
async def initialize_core_96_head(
5119-
self,
5120-
x_position: int = 2321,
5121-
x_direction: int = 1,
5122-
y_position: int = 1103,
5123-
z_deposit_position: int = 1890,
5124-
z_position_at_the_command_end: int = 2450,
5132+
self, trash96: Trash, z_position_at_the_command_end: float = 245.0
51255133
):
51265134
"""Initialize CoRe 96 Head
51275135
5128-
Initialize CoRe 96 Head. Dependent to configuration initialization change.
5129-
51305136
Args:
5131-
x_position: X-Position [0.1mm] (discard position of tip A1). Must be between 0 and 30000.
5132-
Default 0.
5133-
x_direction: X-direction. 0 = positive 1 = negative. Must be between 0 and 1. Default 0.
5134-
y_position: Y-Position [0.1mm] (discard position of tip A1 ). Must be between 1054 and 5743.
5135-
Default 5743.
5136-
z_deposit_position_[0.1mm]: Z- deposit position [0.1mm] (collar bearing position). Must be
5137-
between 0 and 3425. Default 3425.
5138-
z_position_at_the_command_end: Z-Position at the command end [0.1mm]. Must be between 0 and
5139-
3425. Default 3425.
5137+
trash96: Trash object where tips should be disposed. The 96 head will be positioned in the
5138+
center of the trash.
5139+
z_position_at_the_command_end: Z position at the end of the command [mm].
51405140
"""
51415141

5142-
assert 0 <= x_position <= 30000, "x_position must be between 0 and 30000"
5143-
assert 0 <= x_direction <= 1, "x_direction must be between 0 and 1"
5144-
assert 1054 <= y_position <= 5743, "y_position must be between 1054 and 5743"
5145-
assert 0 <= z_deposit_position <= 3425, "z_deposit_position must be between 0 and 3425"
5146-
assert (
5147-
0 <= z_position_at_the_command_end <= 3425
5148-
), "z_position_at_the_command_end must be between 0 and 3425"
5142+
# The firmware command expects location of tip A1 of the head.
5143+
loc = self._position_96_head_in_resource(trash96)
51495144

51505145
return await self.send_command(
51515146
module="C0",
51525147
command="EI",
51535148
read_timeout=60,
5154-
xs=f"{x_position:05}",
5155-
xd=x_direction,
5156-
yh=f"{y_position}",
5157-
za=f"{z_deposit_position}",
5158-
ze=f"{z_position_at_the_command_end}",
5149+
xs=f"{abs(round(loc.x * 10)):05}",
5150+
xd=0 if loc.x >= 0 else 1,
5151+
yh=f"{abs(round(loc.y * 10)):04}",
5152+
za=f"{round(loc.z * 10):04}",
5153+
ze=f"{round(z_position_at_the_command_end*10)}",
51595154
)
51605155

51615156
async def move_core_96_to_safe_position(self):

pylabrobot/liquid_handling/backends/hamilton/STAR_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ async def test_core_96_tip_discard(self):
626626
await self.lh.discard_tips96()
627627

628628
self._assert_command_sent_once(
629-
"C0ERid0213xs02321xd1yh1103za2164zh2450ze2450",
629+
"C0ERid0213xs00420xd1yh1203za2164zh2450ze2450",
630630
"xs#####xd#yh####za####zh####ze####",
631631
)
632632

pylabrobot/resources/hamilton/hamilton_deck_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_summary(self):
4646
"""
4747
Rail Resource Type Coordinates (mm)
4848
=================================================================================
49-
(-13) ├── trash_core96 Trash (-232.100, 110.300, 189.000)
49+
(-6) ├── trash_core96 Trash (-58.200, 106.000, 229.000)
5050
5151
(1) ├── tip_carrier TipCarrier (100.000, 063.000, 100.000)
5252
│ ├── tip_rack_01 TipRack (106.200, 073.000, 214.950)

pylabrobot/resources/hamilton/hamilton_decks.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,11 @@ def __init__(
399399
self._trash96: Optional[Trash] = None
400400
if with_trash96:
401401
# got this location from a .lay file, but will probably need to be adjusted by the user.
402-
self._trash96 = Trash("trash_core96", size_x=82.6, size_y=122.4, size_z=0) # size of tiprack
402+
self._trash96 = Trash("trash_core96", size_x=122.4, size_y=82.6, size_z=0) # size of tiprack
403403
self.assign_child_resource(
404404
resource=self._trash96,
405-
location=Coordinate(x=-232.1, y=110.3, z=189.0),
406-
) # 165.0 -> 189.0
405+
location=Coordinate(x=-42.0 - 16.2, y=120.3 - 14.3, z=229.0),
406+
)
407407

408408
if with_teaching_rack:
409409
teaching_carrier = Resource(name="teaching_carrier", size_x=30, size_y=445.2, size_z=100)

0 commit comments

Comments
 (0)