Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/resources/library/eppendorf.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Company page: [Eppendorf Wikipedia](https://en.wikipedia.org/wiki/Eppendorf_(com
| Description | Image | PLR definition |
|--------------------|--------------------|--------------------|
| 'Eppendorf_96_wellplate_250ul_Vb'<br>Part no.: 0030133374<br>[manufacturer website](https://www.eppendorf.com/gb-en/Products/Laboratory-Consumables/Plates/Eppendorf-twintec-PCR-Plates-p-0030133374) <br><br> - Material: polycarbonate (frame), polypropylene (wells)<br> - part of the twin.tec(R) product line<br> - WARNING: not ANSI/SLAS 1-2004 footprint dimensions (123x81 mm^2!) ==> requires `PlateAdapter`<br> - 'Can be divided into 4 segments of 24 wells each to prevent waste and save money'. | ![](img/eppendorf/Eppendorf_96_wellplate_250ul_Vb_COMPLETE.png) ![](img/eppendorf/Eppendorf_96_wellplate_250ul_Vb_DIVIDED.png) | `Eppendorf_96_wellplate_250ul_Vb` |
| 'eppendorf_96_wellplate_500ul_Vb.avif'<br>Part no.: 951032107<br>[manufacturer website](https://www.eppendorf.com/us-en/Products/Lab-Consumables/Plates/Protein-LoBind-Plates-p-951032107) | ![](img/eppendorf/eppendorf_96_wellplate_500ul_Vb.avif) | `'eppendorf_96_wellplate_500ul_Vb` |
| 'eppendorf_96_wellplate_1000ul_Vb.avif'<br>Part no.: 951032921<br>[manufacturer website](https://www.eppendorf.com/ca-en/Products/Lab-Consumables/Plates/Protein-LoBind-Plates-p-951032921) | ![](img/eppendorf/eppendorf_96_wellplate_1000ul_Vb.avif) | `'eppendorf_96_wellplate_1000ul_Vb` |
| 'eppendorf_96_wellplate_2000ul_Vb.avif'<br>Part no.: 951033502<br>[manufacturer website](https://www.eppendorf.com/ca-en/Products/Lab-Consumables/Plates/Protein-LoBind-Plates-p-951033502) | ![](img/eppendorf/eppendorf_96_wellplate_2000ul_Vb.avif) | `'eppendorf_96_wellplate_2000ul_Vb` |

Expand Down
Binary file not shown.
38 changes: 38 additions & 0 deletions pylabrobot/resources/eppendorf/plates.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,44 @@ def Eppendorf_96_wellplate_250ul_Vb(name: str, with_lid: bool = False) -> Plate:
)


def eppendorf_96_wellplate_500ul_Vb(name: str) -> Plate:
"""Eppendorf Deepwell Plate 96/500uL, cat. no.: 951032107

https://archive.vn/WCuMF
"""

material_z_thickness = 1.05 # measured with ztouch_probe_z_height_using_channel
well_diameter_top = 7.0 # from spec

return Plate(
name=name,
size_x=127.8, # w
size_y=85.5, # l
size_z=27.1, # h
lid=None,
model=eppendorf_96_wellplate_500ul_Vb.__name__,
plate_type="skirted",
ordered_items=create_ordered_items_2d(
Well,
num_items_x=12,
num_items_y=8,
dx=14.4 - well_diameter_top / 2, # P1 - well width / 2
dy=11.2 - well_diameter_top / 2, # P3 - well width / 2
dz=2.1 - material_z_thickness, # b - material_z_thickness
item_dx=9.0,
item_dy=9.0,
size_x=well_diameter_top,
size_y=well_diameter_top,
size_z=21.4 + 2.6, # well depth: h1 + h2
bottom_type=WellBottomType.V,
material_z_thickness=material_z_thickness,
cross_section_type=CrossSectionType.CIRCLE,
compute_volume_from_height=None,
compute_height_from_volume=None,
),
)


def eppendorf_96_wellplate_1000ul_Vb(name: str) -> Plate:
"""Eppendorf Deepwell Plate 96/1000uL, cat. no.: 951032921

Expand Down
Loading