diff --git a/docs/resources/library/img/nest/NEST_96_wellplate_2200uL_Ub.png b/docs/resources/library/img/nest/NEST_96_wellplate_2200uL_Ub.png new file mode 100644 index 00000000000..ccf0ae108c9 Binary files /dev/null and b/docs/resources/library/img/nest/NEST_96_wellplate_2200uL_Ub.png differ diff --git a/docs/resources/library/nest.md b/docs/resources/library/nest.md index a64780f0bbd..19ee44fdf53 100644 --- a/docs/resources/library/nest.md +++ b/docs/resources/library/nest.md @@ -10,3 +10,4 @@ Wuxi NEST Biotechnology Co., Ltd. a leading life science plastic consumables man | 'nest_1_troughplate_185000uL_Vb'
Part no.: 360101
[manufacturer website](https://www.nest-biotech.com/reagent-reserviors/59178415.html)
- Material: polypropylene | ![](img/nest/nest_1_troughplate_185000uL_Vb.webp) | `nest_1_troughplate_185000uL_Vb` | | 'nest_8_troughplate_22000uL_Vb'
Part no.: 360101
[manufacturer website](https://www.nestscientificusa.com/product/detail/513006470820794368)
- Material: polypropylene | ![](img/nest/nest_8_troughplate_22000uL_Vb.jpg) | `nest_8_troughplate_22000uL_Vb` | | 'nest_12_troughplate_15000uL_Vb'
Part no.: 360102
[manufacturer website](https://www.nestscientificusa.com/product/detail/513006470820794368)
- Material: polypropylene | ![](img/nest/nest_12_troughplate_15000uL_Vb.jpg) | `nest_12_troughplate_15000uL_Vb` | +| 'NEST_96_wellplate_2200uL_Ub'
Part no.: 503062
[manufacturer website](https://www.nest-biotech.com/deep-well-plates/59253727.html)
- Material: polypropylene | ![](img/nest/NEST_96_wellplate_2200uL_Ub.png) | `NEST_96_wellplate_2200uL_Ub` | \ No newline at end of file diff --git a/pylabrobot/resources/nest/plates.py b/pylabrobot/resources/nest/plates.py index fce17313992..ce9ccb5e1c8 100644 --- a/pylabrobot/resources/nest/plates.py +++ b/pylabrobot/resources/nest/plates.py @@ -7,6 +7,7 @@ from pylabrobot.resources.plate import Plate from pylabrobot.resources.utils import create_ordered_items_2d from pylabrobot.resources.well import ( + CrossSectionType, Well, WellBottomType, ) @@ -172,3 +173,34 @@ def nest_12_troughplate_15000uL_Vb(name: str) -> Plate: **well_kwargs, ), ) + + +def NEST_96_wellplate_2200uL_Ub(name: str) -> Plate: + """NEST Cat. No. 503062 + Spec: http://manage-en.nestscientificusa.com/Resource/File/2023/02/13/NEST-Deep-Well-Plates.pdf + """ + return Plate( + name=name, + size_x=127.1, # from spec + size_y=85.10, # from spec + size_z=41.85, # from spec + lid=None, + model=NEST_96_wellplate_2200uL_Ub.__name__, + ordered_items=create_ordered_items_2d( + Well, + size_x=8.0, # from spec (inner well width) + size_y=8.0, # from spec (inner well length) + size_z=39.30, # from spec + dx=10.05, # from spec + dy=7.05, # from spec + dz=2.55, # from spec + material_z_thickness=0.8, # measured + item_dx=9.0, # from spec + item_dy=9.0, # from spec + num_items_x=12, # from spec + num_items_y=8, # from spec + cross_section_type=CrossSectionType.RECTANGLE, + bottom_type=WellBottomType.U, + max_volume=2200, # from spec (2.2 mL) + ), + )