Skip to content

Commit 71fdc15

Browse files
authored
grey-tabbed mfx plateholder pedestal height is 0 (#423)
1 parent d331136 commit 71fdc15

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/resources/carrier/mfx-carrier/mfx_carriers.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@
185185
"source": [
186186
"try:\n",
187187
" carrier[1]\n",
188-
"except KeyError as e:\n",
189-
" print(f\"KeyError, as expected.\")"
188+
"except KeyError:\n",
189+
" print(\"KeyError, as expected.\")"
190190
]
191191
},
192192
{

pylabrobot/resources/hamilton/mfx_modules.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ def MFX_DWP_rackbased_module(name: str) -> PlateHolder:
4343

4444
def MFX_DWP_module_flat(name: str) -> PlateHolder:
4545
"""Hamilton cat. no.: 6601988-01
46-
Module to position a Deep Well Plate. Flat, plastic base; no metal clamps like
46+
Module to position a Deep Well Plate. Flat, metal base; no metal clamps like
4747
MFX_DWP_rackbased_module.
48+
Grey plastic corner clips secure plate. Plates rest on corners,
49+
rather than pedestal, so pedestal_size_z=0,
4850
"""
4951

5052
width = 134.0
@@ -57,5 +59,5 @@ def MFX_DWP_module_flat(name: str) -> PlateHolder:
5759
size_z=66.4, # measured with caliper
5860
child_location=Coordinate(x=(width - 127.76) / 2, y=(length - 85.48) / 2, z=66.4),
5961
model=MFX_DWP_rackbased_module.__name__,
60-
pedestal_size_z=-4.74,
62+
pedestal_size_z=0,
6163
)

0 commit comments

Comments
 (0)