Skip to content

Commit 30d8dd1

Browse files
committed
CellVis_24_wellplate_3600uL_Fb
1 parent af1fbbb commit 30d8dd1

File tree

5 files changed

+61
-0
lines changed

5 files changed

+61
-0
lines changed

docs/resources/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ library/azenta
6969
library/biorad
7070
library/boekel
7171
library/celltreat
72+
library/cellvis
7273
library/corning_axygen
7374
library/corning_costar
7475
library/eppendorf

docs/resources/library/cellvis.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Cellvis
2+
3+
[Company Page](https://www.cellvis.com)
4+
5+
## Plates
6+
7+
| Description | Image | PLR definition |
8+
|-|-|-|
9+
| '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` |
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .plates import *
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
from pylabrobot.resources.plate import Lid, Plate
2+
from pylabrobot.resources.utils import create_ordered_items_2d
3+
from pylabrobot.resources.well import (
4+
CrossSectionType,
5+
Well,
6+
WellBottomType,
7+
)
8+
9+
10+
def CellVis_24_wellplate_3600uL_Fb_Lid(name: str) -> Lid:
11+
return Lid(
12+
name=name,
13+
size_x=127.15, # from spec
14+
size_y=85.05, # from spec
15+
size_z=10, # from spec
16+
nesting_z_height=7.5, # from spec
17+
model="CellVis_24_wellplate_3600uL_Fb_Lid",
18+
)
19+
20+
21+
def CellVis_24_wellplate_3600uL_Fb(name: str, with_lid: bool = False) -> Plate:
22+
"""p/n P24-1.5P
23+
24+
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
25+
"""
26+
27+
return Plate(
28+
name=name,
29+
size_x=127.5, # from spec
30+
size_y=85.25, # from spec
31+
size_z=16.1, # from spec
32+
lid=CellVis_24_wellplate_3600uL_Fb_Lid(name + "_Lid") if with_lid else None,
33+
model="CellVis_24_wellplate_3600uL_Fb",
34+
ordered_items=create_ordered_items_2d(
35+
Well,
36+
num_items_x=6,
37+
num_items_y=4,
38+
dx=17.05 - (15.54 / 2), # from spec
39+
dy=13.67 - (15.54 / 2), # from spec
40+
dz=1 - 0.25, # from spec
41+
item_dx=19.3, # from spec
42+
item_dy=19.3, # from spec
43+
size_x=15.54, # from spec
44+
size_y=15.54, # from spec
45+
size_z=19, # from spec
46+
bottom_type=WellBottomType.FLAT,
47+
material_z_thickness=0.25,
48+
cross_section_type=CrossSectionType.CIRCLE,
49+
),
50+
)

0 commit comments

Comments
 (0)