-
Notifications
You must be signed in to change notification settings - Fork 142
feat: add Greiner half skirt plate PN: 652260 #950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,3 +81,38 @@ def Greiner_384_wellplate_28ul_Fb(name: str, with_lid: bool = False) -> Plate: | |
| # compute_height_from_volume=_compute_height_from_volume_Greiner_384_wellplate_28ul_Fb, | ||
| ), | ||
| ) | ||
|
|
||
| # # # # # # # # # # Greiner_96_half_skirt_wellplate_200uL_vb # # # # # # # # # # | ||
|
|
||
|
|
||
| def Greiner_96_half_skirt_wellplate_200uL_vb(name: str, with_lid: bool = False) -> Plate: | ||
| """Greiner cat. no.: 652260. | ||
| SAPPHIRE MICROPLATE, 96 WELL, PP, FOR PCR, NATURAL, HALF SKIRT | ||
| Spec: https://shop.gbo.com/en/usa/files/30114476/652260.pdf | ||
| """ | ||
| return Plate( | ||
| name=name, | ||
| size_x=125.24, # from spec | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isn't size_x 126.64? |
||
| size_y=85.98, # from spec | ||
| size_z=21.08, # from spec, total height to bottom of well | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is incorrect, this is the well size:
-> the well is a subset of the entire plate, i.e. the the "wall itself" is 10.11 - 7 .57 = 2.54 but looking more carefully at the technical drawing the wells appear to be protruding slightly above the surface. So This can be very important for a lot of different scenarios:
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can find more information in our plate definition tutorial video :) |
||
| lid=None, | ||
| model=Greiner_96_half_skirt_wellplate_200uL_vb.__name__, | ||
| plate_type="semi-skirted", | ||
| ordered_items=create_ordered_items_2d( | ||
| Well, | ||
| size_x=5.56, # from spec (inner well width) | ||
| size_y=5.56, # from spec (inner well length) | ||
| size_z=20.65, # from spec | ||
| dx=10.75, # measured | ||
| dy=8.5, # measured | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. when I compute it from the spec I get do your values work better? |
||
| dz=0, # semi-skirted plate | ||
| material_z_thickness=0.43, # from spec | ||
| item_dx=9, # from spec | ||
| item_dy=9, # from spec | ||
| num_items_x=12, # from spec | ||
| num_items_y=8, # from spec | ||
| cross_section_type=CrossSectionType.CIRCLE, | ||
| bottom_type=WellBottomType.V, | ||
| max_volume=200, # from spec (0.2 mL) | ||
| ), | ||
| ) | ||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
half_skirtshould not be in the name because thePlateclass has a dedicated attribute for it:_vbshould be_Vb(representing "V-bottom"