Skip to content

Commit 48a75b7

Browse files
committed
add PerkinElmer_96_wellplate_400ul_Fb
1 parent 2a79bc6 commit 48a75b7

File tree

6 files changed

+53
-1
lines changed

6 files changed

+53
-1
lines changed
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Perkin Elmer
2+
3+
## Plates
4+
5+
| Description | Image | PLR definition |
6+
|-|-|-|
7+
| 'PerkinElmer_96_wellplate_400ul_Fb'<br>Part no.: 6005680, 6005688 and 6005689<br>[manufacturer website](https://www.revvity.com/product/culturplate-96-lid-50w-6055680) | ![](img/perkin_elmer/PerkinElmer_96_wellplate_400ul_Fb.webp) | `PerkinElmer_96_wellplate_400ul_Fb` |

pylabrobot/resources/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
from .liquid import Liquid
2727
from .nest import *
2828
from .opentrons import *
29+
from .perkin_elmer import *
2930
from .petri_dish import PetriDish, PetriDishHolder
3031
from .plate import Lid, Plate
3132
from .plate_adapter import PlateAdapter

pylabrobot/resources/celltreat/plates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def CellTreat_96_wellplate_350ul_Ub(name: str, with_lid: bool = False) -> Plate:
2121
2222
Same as 229590 (229590 is sold with lids)
2323
24-
229195, 229196
24+
229195, 229196
2525
2626
- Material: Polystyrene
2727
- Tissue culture treated: No (229591 and 229590) / Yes (229195, 229196)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .plates import *
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
from pylabrobot.resources import CrossSectionType, Plate, Well, WellBottomType
2+
from pylabrobot.resources.utils import create_ordered_items_2d
3+
4+
5+
def PerkinElmer_96_wellplate_400ul_Fb(name: str) -> Plate:
6+
"""Creates a PerkinElmer 96 well plate with 400 µL wells.
7+
8+
Part number 6005680, 6005688, 6005689
9+
10+
http://per-form.hu/wp-content/uploads/2015/08/perkinelmer-Microplates.pdf
11+
"""
12+
13+
WELL_DIAMETER = 7.15
14+
15+
well_kwargs = {
16+
"size_x": WELL_DIAMETER,
17+
"size_y": WELL_DIAMETER,
18+
"size_z": 10.80,
19+
"bottom_type": WellBottomType.FLAT,
20+
"material_z_thickness": 0.87, # measured using ztouch probing, dependent on dz (caliper)
21+
"cross_section_type": CrossSectionType.CIRCLE,
22+
"max_volume": 400,
23+
}
24+
25+
return Plate(
26+
name=name,
27+
size_x=127.76, # from spec
28+
size_y=85.47, # from spec
29+
size_z=14.60, # from spec
30+
lid=None,
31+
model=PerkinElmer_96_wellplate_400ul_Fb.__name__,
32+
ordered_items=create_ordered_items_2d(
33+
Well,
34+
num_items_x=12,
35+
num_items_y=8,
36+
dx=14.38 - WELL_DIAMETER / 2, # from spec
37+
dy=11.24 - WELL_DIAMETER / 2, # from spec
38+
dz=2.88, # caliper
39+
item_dx=9,
40+
item_dy=9,
41+
**well_kwargs,
42+
),
43+
)

0 commit comments

Comments
 (0)