Skip to content
Draft
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
29 changes: 29 additions & 0 deletions pylabrobot/resources/eppendorf/plates.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,35 @@ def Eppendorf_96_wellplate_250ul_Vb(name: str, with_lid: bool = False) -> Plate:
),
)

def Eppendorf_96_wellplate_250ul_Vb_semiskirted(name: str, with_lid: bool = False) -> Plate:
"""
Eppendorf cat. no.: 0030129334
- part of the twin.tec(R) product line.
"""
return Plate(
name=name,
size_x=123.7,
size_y=82.2,
size_z=29.4,
model="Eppendorf_96_wellplate_250ul_Vb_semiskirted",
plate_type="semiskirted",
ordered_items=create_ordered_items_2d(
Well,
num_items_x=12,
num_items_y=8,
dx=12.4,
dy=9.6,
dz=0.81,
item_dx=9,
item_dy=9,
size_x=5.48,
size_y=5.48,
size_z=19.5,
bottom_type=WellBottomType.V,
material_z_thickness=0.6,
cross_section_type=CrossSectionType.CIRCLE
)
)

def Eppendorf_96_wellplate_250ul_Vb_L(name: str, with_lid: bool = False) -> Plate:
# https://github.com/PyLabRobot/pylabrobot/issues/252
Expand Down
1 change: 1 addition & 0 deletions pylabrobot/resources/hamilton/plate_carriers.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ def PLT_CAR_L5PCR(name: str) -> PlateCarrier:
],
resource_size_x=127.0,
resource_size_y=86.0,
resource_size_z=0,
name_prefix=name,
),
model="PLT_CAR_L5PCR",
Expand Down
Loading