|
69 | 69 | STARLET_SIZE_X,
|
70 | 70 | )
|
71 | 71 | from pylabrobot.resources.liquid import Liquid
|
| 72 | +from pylabrobot.resources.trash import Trash |
72 | 73 | from pylabrobot.utils.linalg import matrix_vector_multiply_3x3
|
73 | 74 |
|
74 | 75 | T = TypeVar("T")
|
@@ -1387,7 +1388,8 @@ async def setup(
|
1387 | 1388 | core96_head_initialized = await self.request_core_96_head_initialization_status()
|
1388 | 1389 | if not core96_head_initialized:
|
1389 | 1390 | 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), |
1391 | 1393 | )
|
1392 | 1394 |
|
1393 | 1395 | # After setup, STAR will have thrown out anything mounted on the pipetting channels, including
|
@@ -2176,7 +2178,7 @@ async def drop_tips96(
|
2176 | 2178 | tip_a1 = drop.resource.get_item("A1")
|
2177 | 2179 | position = tip_a1.get_absolute_location() + tip_a1.center() + drop.offset
|
2178 | 2180 | else:
|
2179 |
| - position = drop.resource.get_absolute_location() + drop.offset |
| 2181 | + position = self._position_96_head_in_resource(drop.resource) + drop.offset |
2180 | 2182 |
|
2181 | 2183 | x_direction = 0 if position.x > 0 else 1
|
2182 | 2184 | return await self.discard_tips_core96(
|
@@ -3098,6 +3100,17 @@ async def core_check_resource_exists_at_location_center(
|
3098 | 3100 | audio.play_got_item()
|
3099 | 3101 | return True
|
3100 | 3102 |
|
| 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 | + |
3101 | 3114 | # ============== Firmware Commands ==============
|
3102 | 3115 |
|
3103 | 3116 | # -------------- 3.2 System general commands --------------
|
@@ -5116,46 +5129,28 @@ async def request_tadm_status(self):
|
5116 | 5129 | # -------------- 3.10.1 Initialization --------------
|
5117 | 5130 |
|
5118 | 5131 | 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 |
5125 | 5133 | ):
|
5126 | 5134 | """Initialize CoRe 96 Head
|
5127 | 5135 |
|
5128 |
| - Initialize CoRe 96 Head. Dependent to configuration initialization change. |
5129 |
| -
|
5130 | 5136 | 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]. |
5140 | 5140 | """
|
5141 | 5141 |
|
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) |
5149 | 5144 |
|
5150 | 5145 | return await self.send_command(
|
5151 | 5146 | module="C0",
|
5152 | 5147 | command="EI",
|
5153 | 5148 | 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)}", |
5159 | 5154 | )
|
5160 | 5155 |
|
5161 | 5156 | async def move_core_96_to_safe_position(self):
|
|
0 commit comments