Skip to content

Commit 984c83d

Browse files
authored
CellVis_96_wellplate_350uL_Fb (#404)
1 parent fa40bea commit 984c83d

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

docs/resources/library/cellvis.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
| Description | Image | PLR definition |
88
|-|-|-|
99
| 'CellVis_24_wellplate_3600uL_Fb'<br>Part no.: P24-1.5P<br>[manufacturer website](https://www.cellvis.com/_24-well-plate-with--number-1.5-glass-like-polymer-coverslip-bottom-tissue-culture-treated-for-better-cell-attachment-than-cover-glass_/product_detail.php?product_id=65) | ![](img/cellvis/CellVis_24_wellplate_3600uL_Fb.jpg) | `CellVis_24_wellplate_3600uL_Fb` |
10+
| 'CellVis_96_wellplate_350uL_Fb'<br>Part no.: P96-1.5H-N<br>[manufacturer website](https://www.cellvis.com/_96-well-glass-bottom-plate-with-high-performance-number-1.5-cover-glass_/product_detail.php?product_id=50) | ![](img/cellvis/CellVis_96_wellplate_350uL_Fb.jpg) | `CellVis_96_wellplate_350uL_Fb` |
177 KB
Loading

pylabrobot/resources/cellvis/plates.py

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,46 @@ def CellVis_24_wellplate_3600uL_Fb(name: str, with_lid: bool = False) -> Plate:
4848
cross_section_type=CrossSectionType.CIRCLE,
4949
),
5050
)
51+
52+
53+
def CellVis_96_wellplate_350uL_Fb_Lid(name: str) -> Lid:
54+
return Lid(
55+
name=name,
56+
size_x=127.6, # from spec
57+
size_y=85.75, # from spec
58+
size_z=10, # from spec
59+
nesting_z_height=10 - (16.03 - 13.83), # from spec
60+
model="CellVis_24_wellplate_3600uL_Fb_Lid",
61+
)
62+
63+
64+
def CellVis_96_wellplate_350uL_Fb(name: str, with_lid: bool = False) -> Plate:
65+
"""p/n P96-1.5H-N
66+
67+
https://www.cellvis.com/_96-well-glass-bottom-plate-with-high-performance-number-1.5-cover-glass_/product_detail.php?product_id=50
68+
"""
69+
70+
return Plate(
71+
name=name,
72+
size_x=127.6, # from spec
73+
size_y=85.75, # from spec
74+
size_z=13.83, # from spec
75+
lid=CellVis_24_wellplate_3600uL_Fb_Lid(name + "_Lid") if with_lid else None,
76+
model="CellVis_24_wellplate_3600uL_Fb",
77+
ordered_items=create_ordered_items_2d(
78+
Well,
79+
num_items_x=12,
80+
num_items_y=8,
81+
dx=14.3 - (6.8 / 2), # from spec
82+
dy=11.36 - (6.8 / 2), # from spec
83+
dz=13.83 - 11.93, # from spec
84+
item_dx=9, # from spec
85+
item_dy=9, # from spec
86+
size_x=6.8, # from spec
87+
size_y=6.8, # from spec
88+
size_z=11.93, # from spec
89+
bottom_type=WellBottomType.FLAT,
90+
material_z_thickness=0.17, # +- 0.005mm
91+
cross_section_type=CrossSectionType.CIRCLE,
92+
),
93+
)

0 commit comments

Comments
 (0)