Skip to content

Commit f4881f9

Browse files
committed
add thermo_AB_384_wellplate_40uL_Vb_MicroAmp
1 parent a5cfff3 commit f4881f9

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
22.1 KB
Loading

docs/resources/library/thermo_fisher.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Thermo Fisher Scientific Inc. (TFS, aka "Thermo")
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` |
3333
| '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` |
3434
| 'thermo_AB_96_wellplate_300ul_Vb_MicroAmp'<br>Part no.: N8010560/4316813 (w/o barcode)<br>Part no.: 4306737/4326659 (with barcode) | ![](img/thermo_fisher/thermo_AB_96_wellplate_300ul_Vb_MicroAmp.webp) | `thermo_AB_96_wellplate_300ul_Vb_MicroAmp` |
35+
| 'thermo_AB_384_wellplate_40uL_Vb_MicroAmp'<br>Part no.: 4309849, 4326270, 4343814 (with barcode), 4343370 (w/o barcode). | ![](img/thermo_fisher/thermo_AB_384_wellplate_40uL_Vb_MicroAmp.jpg) | `thermo_AB_384_wellplate_40uL_Vb_MicroAmp` |
3536

3637
## Troughs
3738

pylabrobot/resources/thermo_fisher/plates.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,36 @@ def thermo_AB_96_wellplate_300ul_Vb_MicroAmp(name: str, with_lid: bool = False)
349349
),
350350
),
351351
)
352+
353+
354+
def thermo_AB_384_wellplate_40uL_Vb_MicroAmp(name: str) -> Plate:
355+
"""Thermo Fisher Scientific cat. no.: 4309849, 4326270, 4343814 (with barcode), 4343370 (w/o barcode).
356+
357+
https://documents.thermofisher.com/TFS-Assets/LSG/manuals/cms_042831.pdf
358+
"""
359+
diameter = 3.17
360+
return Plate(
361+
name=name,
362+
size_x=127.8,
363+
size_y=85.5,
364+
size_z=9.70,
365+
lid=None,
366+
model=thermo_AB_384_wellplate_40uL_Vb_MicroAmp.__name__,
367+
plate_type="non-skirted",
368+
ordered_items=create_ordered_items_2d(
369+
Well,
370+
num_items_x=24,
371+
num_items_y=16,
372+
dx=12.15 - diameter / 2,
373+
dy=9 - diameter / 2,
374+
dz=0.0,
375+
item_dx=4.5,
376+
item_dy=4.5,
377+
size_x=diameter,
378+
size_y=diameter,
379+
size_z=9.70 - 0.61,
380+
bottom_type=WellBottomType.V,
381+
material_z_thickness=0.61,
382+
cross_section_type=CrossSectionType.CIRCLE,
383+
),
384+
)

0 commit comments

Comments
 (0)