-
Notifications
You must be signed in to change notification settings - Fork 76
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
Probe y-position of resource using channel with cLLD #353
base: main
Are you sure you want to change the base?
Probe y-position of resource using channel with cLLD #353
Conversation
Small clarifications to the method:
|
Just some inputs on this:
|
Thank you @jrast, these are some excellent points!
Do you know whether there is some (perhaps machine-accessible) database of the diameters of the bottom of Hamilton tips that we could integrate into PLR for this purpose? ![]() -> Once we know the value of return material_y_pos = y_pos_at_which_capacitance_sensor_triggered + `tip_bottom_diameter` / 2 # if the channel was sent "foward" OR return material_y_pos = y_pos_at_which_capacitance_sensor_triggered - `tip_bottom_diameter` / 2 # if the channel was sent "backward" |
I'm not aware of such a database, at least not a public accessible one. Maybe ask in the labautomation forum, there are a couple of Hamilton guys, maybe they have more information available than me. |
Okay, I've got the measurements of the tip_bottom_diameter that we need. But I'm not sure what's the best way to integrate them? Directly requiring inputting them into this class method seems very error prone - measuring the tip_bottom_diameter is not super precise. Idea: 💡 What do you think about requiring tip Len as input, and this class method contains a dict that maps the known tip_bottom_diameter-to-tip_len relationship? If tip_len is None, no problem, that's what I made the measure tip_len method for 😅 This would be very similar to how the ztouch method handles tip_len. Pushing the proposed integration tomorrow but wanted to hear your guys opinion on the design choice first. |
how about storing this information on the tip class, and just passing the class? |
This! It's 100% a property if the resource and any other variant would be strange. Sadly the LH Backend does not know which tip is present (only the LH itself knows), so the Tip Instance must be passed to the method. |
is it time to change this? i ran into a context where i need this as well |
What does that look like in practice? We cannot give this method a 'class'. And then we have to ask... Which instance of a tip are we giving it? And hopefully we don't make a mistake and give it the wrong Tip instance. If the backend would have information regarding deck state, including what tip instance is currently attached, then I agree, it would make things a lot easier. But that is not the case yet. That's why I think making the robot actually figure out what it doesn't know by itself is the safest option. Though I like the idea of storing and using all information in the Tip class itself. That way we could also add a class attribute for whether the tip is conductive. And write in checks for it. |
Let's move this to a topic on discuss.pylabrobot? It's off-topic for this PR. |
How so? Finding a solution for this is the key to finishing this PR, even if it is just a temporary one we upgrade later? |
i just went ahead (#361), it seemed like a good idea |
# Machine-compatability check of calculated parameters | ||
assert 0 <= max_y_search_pos_increments <= 13_714, ( | ||
"Maximum y search position must be between \n0 and" | ||
+ f"{STAR.y_drive_increment_to_mm(13_714)+9} mm, is {max_y_search_pos_increments} mm" | ||
) |
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.
we check that the y_pos in increments is lower than 13_714, but the error message says STAR.y_drive_increment_to_mm(13_714)+9
. It would be good to compute this value once, store in a variable, and use throughout the rest of the method. Currently, the magic number 13_714 (or +9?) appears multiple times
Sorry, off-topic was not what I meant. It's more like "this does not only affect this addition / PR, but might also affect other possible features." But with #361 @rickwierenga already implemented this, which seems a good idea for the moment. |
# Dynamically evaluate post-detection distance to avoid crashes | ||
if probing_direction == "forward": | ||
if channel_idx == self.num_channels - 1: # safe default | ||
adjacent_y_pos = 6.0 | ||
else: # next channel | ||
adjacent_y_pos = await self.request_y_pos_channel_n(channel_idx + 1) | ||
|
||
max_safe_y_mov_dist_post_detection = detected_material_y_pos - adjacent_y_pos - 9.0 | ||
move_target = detected_material_y_pos - min( | ||
post_detection_dist, max_safe_y_mov_dist_post_detection | ||
) | ||
|
||
else: # probing_direction == "backwards" | ||
if channel_idx == 0: # safe default | ||
adjacent_y_pos = STAR.y_drive_increment_to_mm(13_714) + 9 # y-position=635 mm | ||
else: # previous channel | ||
adjacent_y_pos = await self.request_y_pos_channel_n(channel_idx - 1) | ||
|
||
max_safe_y_mov_dist_post_detection = adjacent_y_pos - detected_material_y_pos - 9.0 | ||
move_target = detected_material_y_pos + min( | ||
post_detection_dist, max_safe_y_mov_dist_post_detection | ||
) | ||
|
||
await self.move_channel_y(y=move_target, channel=channel_idx) |
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.
move_channel_y already checks for this now (#355), but it doesn't automatically cap the target distance.
i wonder if we should have a check_y_allow(channel)
function, or if that is too much ("a little duplication is better than the wrong abstraction")
Hi everyone,
In this PR I created a new
STAR
method which enables the detection of a conductive item in the y-dimension.Background
In biowetlab automation we constantly have to measure various resources.
Automating this measurement taking provides many advantages, including...
In PR#69 - Probe z height using channel and PR#260 - Build ztouch Probing Function I created two functions which enable automated measurements of items in the z-dimension:
STAR.clld_probe_z_height_using_channel
- uses capacitance-sensing to detect the item on deckSTAR.ztouch_probe_z_height_using_channel
- uses force-sensing to detect the item on deckPR Content
Here I create
STAR.clld_probe_y_position_using_channel
:This method enables the detection of conductive items in the y-dimension.
I have added various features to make this method as safe as possible - please report any issues that you might encounter.
Use
The method is designed with intuition and simplicity in mind:
Basic mode:
(I recommend
await lh.backend.prepare_for_manual_channel_operation(channel=7)
before this to give your channel maximal y-space to move in)The method has various safety features to avoid collisions.
e.g. it computes the position of the previous and next channels, and the front/back of the arm to generate a "safe y space" in which it can move without crashing into another channel.
Nevertheless, PLR takes no responsibility for damage to any machine or material, so please use caution when using this function.
Next steps
With automated measurements of items on a deck in the
y
dimension (conductive materials only) andz
dimension (conductive & non-conductive materials), the logical step would be to search whether we can achieve the same in thex
dimension.I will continue keeping an eye out for such functionality.
However, the x-drive appears to be controlled separately from the capacitance sensor (which is the same controller as the y and z drive), and it is therefore questionable whether a
clld_probe_x_position
method is hardware/firmware-achievable.Please report any issues with and/or suggestions for improvement of
STAR.clld_probe_y_position_using_channel()
in this PR so we compile the information here.Happy automation 🦾