Skip to content

Commit ceeea96

Browse files
authored
add Thermo_Nunc_96_well_plate_1300uL_Rb (#405)
1 parent 6e48b50 commit ceeea96

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Loading

docs/resources/library/thermo_fisher.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Thermo Fisher Scientific Inc. (TFS, aka "Thermo")
3030
|--------------------|--------------------|--------------------|
3131
| 'Thermo_TS_96_wellplate_1200ul_Rb'<br>Part no.: AB-1127 or 10243223<br>[manufacturer website](https://www.fishersci.co.uk/shop/products/product/10243223) <br><br>- Material: Polypropylene (AB-1068, polystyrene) <br> | ![](img/thermo_fisher/Thermo_TS_96_wellplate_1200ul_Rb.webp) | `Thermo_TS_96_wellplate_1200ul_Rb` |
3232
| 'Thermo_AB_96_wellplate_300ul_Vb_EnduraPlate'<br>Part no.: 4483354 (TFS) or 15273005 (FS) (= with barcode)<br>Part no.: 16698853 (FS) (= **without** barcode)<br>[manufacturer website](https://www.thermofisher.com/order/catalog/product/4483354) <br><br>- Material: Polycarbonate, Polypropylene<br>- plate_type: semi-skirted<br>- product line: "MicroAmp"<br>- (sub)product line: "EnduraPlate" | ![](img/thermo_fisher/Thermo_AB_96_wellplate_300ul_Vb_EnduraPlate.png) | `Thermo_AB_96_wellplate_300ul_Vb_EnduraPlate` |
33+
| 'Thermo_Nunc_96_well_plate_1300uL_Rb'<br>Part no.: 26025X | ![](img/thermo_fisher/Thermo_Nunc_96_well_plate_1300uL_Rb.jpg) | `Thermo_Nunc_96_well_plate_1300uL_Rb` |
3334

3435
## Troughs
3536

pylabrobot/resources/thermo_fisher/plates.py

+29
Original file line numberDiff line numberDiff line change
@@ -242,3 +242,32 @@ def Thermo_AB_96_wellplate_300ul_Vb_EnduraPlate_P(name: str, with_lid: bool = Fa
242242
"_L and _P definitions are deprecated. Use "
243243
"Thermo_AB_96_wellplate_300ul_Vb_EnduraPlate.rotated(90) instead."
244244
)
245+
246+
247+
def Thermo_Nunc_96_well_plate_1300uL_Rb(name: str) -> Plate:
248+
# https://assets.thermofisher.com/TFS-Assets/LSG/manuals/D03011.pdf
249+
well_diameter = 8.40 # measured
250+
return Plate(
251+
name=name,
252+
size_x=127.76, # from definition, A
253+
size_y=85.47, # from definition, B
254+
size_z=2.5 + 29.1, # from definition, E + L
255+
lid=None,
256+
model="Thermo_Nunc_96_well_plate_1300uL_Rb",
257+
ordered_items=create_ordered_items_2d(
258+
Well,
259+
num_items_x=12,
260+
num_items_y=8,
261+
dx=14.4 - well_diameter / 2, # from definition, H - well_diameter/2
262+
dy=11.2 - well_diameter / 2, # from definition, J - well_diameter/2
263+
dz=1.4, # from definition, N
264+
item_dx=9,
265+
item_dy=9,
266+
size_x=well_diameter,
267+
size_y=well_diameter,
268+
size_z=29.1, # from definition, L
269+
bottom_type=WellBottomType.U,
270+
material_z_thickness=2.5 - 1.4, # from definition, E - N
271+
cross_section_type=CrossSectionType.CIRCLE,
272+
),
273+
)

0 commit comments

Comments
 (0)