I’ve been trying to use a DeepWell_96_plate with my Tecan, but I think the carrier definition doesn’t make full sense. It mostly matches FreedomEvo interface, but for me the Well definition is odd.
Correct me if I am wrong, but the area is basically the well area right? Looking at PLR code, it consider the well as a cylinder per default and then uses the following formula to calculate a Well volume:
max_volume = math.pi * (size_x / 2) ** 2 * size_z
However, with a size_x of 9 mm (as defined in DeepWell_96_Well definition), this will results in something closer to 64 mm^2. Is there something I don’t understand on PLR? Shouldn’t size_x and size_y be around 6.5 mm (to match Freedom Evo area)? That might also explain some issues I have with the position of the tip on that plate.
→ a well of a 96-wellplate cannot be size_x/y = 9 mm (diameter) because with a 9 mm distance between wells there would be no walls of the wells and therefore no wells
I can see that the Tecan plates have also not been updated to the standard PLR wellplate nomenclature: see Corning-Falcon Plates as an example
But I can also see that TecanPlate requires some extra information that I don’t yet know about
yes you are correct. please submit a PR for it if you have time!
in general we now avoid generic names like “96 well deep well” plate and other vague concepts like that, preferring to build a library of actual plate definitions with part numbers. I think over time we might want phase out DeepWell_96_Well because it’s just not clear which resource it refers to, and almost certainly requires offset to make it work. A problem with the tecan definitions is they have their own mystery attributes like “z_start” (explained here: PyLabRobot Tecan Error in adding labware to Carrier - #4 by evwolfson - PyLabRobot Development - Lab Automation Forums). In an ideal world we just have one complete physical definition of a plate that captures all information that any robot can then use. For this we would have to figure out how the derived properties like z start are computed from physical reality. See this GitHub issue for more information on that: Remove Tecan-Specific Attributes from resource model · Issue #552 · PyLabRobot/pylabrobot · GitHub
But yeah in the meantime fixing the well size attribute is the way to do it.