Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/resources/library/nest.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Wuxi NEST Biotechnology Co., Ltd. a leading life science plastic consumables man
| 'nest_1_troughplate_185000uL_Vb'<br>Part no.: 360101<br>[manufacturer website](https://www.nest-biotech.com/reagent-reserviors/59178415.html)<br>- Material: polypropylene | ![](img/nest/nest_1_troughplate_185000uL_Vb.webp) | `nest_1_troughplate_185000uL_Vb` |
| 'nest_8_troughplate_22000uL_Vb'<br>Part no.: 360101<br>[manufacturer website](https://www.nestscientificusa.com/product/detail/513006470820794368)<br>- Material: polypropylene | ![](img/nest/nest_8_troughplate_22000uL_Vb.jpg) | `nest_8_troughplate_22000uL_Vb` |
| 'nest_12_troughplate_15000uL_Vb'<br>Part no.: 360102<br>[manufacturer website](https://www.nestscientificusa.com/product/detail/513006470820794368)<br>- Material: polypropylene | ![](img/nest/nest_12_troughplate_15000uL_Vb.jpg) | `nest_12_troughplate_15000uL_Vb` |
| 'NEST_96_wellplate_2200uL_Ub'<br>Part no.: 503062<br>[manufacturer website](https://www.nest-biotech.com/deep-well-plates/59253727.html)<br>- Material: polypropylene | ![](img/nest/NEST_96_wellplate_2200uL_Ub.png) | `NEST_96_wellplate_2200uL_Ub` |
32 changes: 32 additions & 0 deletions pylabrobot/resources/nest/plates.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down Expand Up @@ -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)
),
)