From 054a80fe96fa90cd5c1ce762c0f1f111b7441256 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Fri, 9 May 2025 14:52:58 -0400 Subject: [PATCH 01/20] Limit geometry tests to just the most recent version of each labware. --- .../js/__tests__/labwareDefSchemaV2.test.ts | 121 ++++++++---------- 1 file changed, 52 insertions(+), 69 deletions(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index fb36df9f29d..7e779008693 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -46,13 +46,10 @@ const standard384WellNames = generateStandardWellNames(16, 24) // Wells whose tops lie above the labware's zDimension. // These are known bugs in the labware definition. See Jira RSS-202. const expectedWellsHigherThanZDimension: Record> = { - 'geb_96_tiprack_10ul/1.json': standard96WellNames, - 'opentrons_24_aluminumblock_generic_2ml_screwcap/1.json': standard24WellNames, - 'opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/1.json': standard24WellNames, - 'opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/2.json': standard24WellNames, - 'opentrons_96_aluminumblock_generic_pcr_strip_200ul/1.json': standard96WellNames, - 'opentrons_96_filtertiprack_200ul/1.json': standard96WellNames, - 'opentrons_96_tiprack_300ul/1.json': standard96WellNames, + geb_96_tiprack_10ul: standard96WellNames, + opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap: standard24WellNames, + opentrons_96_filtertiprack_200ul: standard96WellNames, + opentrons_96_tiprack_300ul: standard96WellNames, } // Wells whose tops do not lie exactly at the labware's zDimension. @@ -66,31 +63,19 @@ const expectedWellsNotMatchingZDimension: Record> = { // These tube racks simultaneously hold tubes of different heights. // The labware's zDimension should match the height of the taller tubes, // not the shorter tubes listed here. - 'opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/1.json': new Set([ + opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical: new Set([ 'A3', 'B3', 'A4', 'B4', ]), - 'opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/2.json': new Set([ + opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic: new Set([ 'A3', 'B3', 'A4', 'B4', ]), - 'opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/1.json': new Set([ - 'A3', - 'B3', - 'A4', - 'B4', - ]), - 'opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/1.json': new Set([ - 'A3', - 'B3', - 'A4', - 'B4', - ]), - 'opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/2.json': new Set([ + opentrons_10_tuberack_nest_4x50ml_6x15ml_conical: new Set([ 'A3', 'B3', 'A4', @@ -98,7 +83,7 @@ const expectedWellsNotMatchingZDimension: Record> = { ]), // This is probably legitimate. Heterogeneous tubes. - 'opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/1.json': new Set( + 'opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip': new Set( [ 'A3', 'B3', @@ -128,36 +113,27 @@ const expectedWellsNotMatchingZDimension: Record> = { ), // These height mismatches are legitimate. The zDimension should match the taller side. - 'opentrons_calibrationblock_short_side_left/1.json': new Set(['A1']), - 'opentrons_calibrationblock_short_side_right/1.json': new Set(['A2']), + opentrons_calibrationblock_short_side_left: new Set(['A1']), + opentrons_calibrationblock_short_side_right: new Set(['A2']), // this labware has a lip - 'ev_resin_tips_flex_96_labware/1.json': standard96WellNames, - 'ibidi_96_square_well_plate_300ul/1.json': standard96WellNames, - 'ibidi_96_square_well_plate_300ul/2.json': standard96WellNames, - - // Presumably a bug. Fixed in v3 of this labware. - 'nest_1_reservoir_195ml/1.json': new Set(['A1']), - 'nest_1_reservoir_195ml/2.json': new Set(['A1']), + ev_resin_tips_flex_96_labware: standard96WellNames, + ibidi_96_square_well_plate_300ul: standard96WellNames, // These were probably bugs, but it's moot now, since these adapter+wellplate // combo-definitions have been superseded by proper labware stacking. - 'opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/1.json': standard96WellNames, - 'opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1.json': standard96WellNames, - 'opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1.json': standard384WellNames, + opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat: standard96WellNames, + opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt: standard96WellNames, + opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat: standard384WellNames, // This batch may have incompletely-updated geometry from recent work related to // liquid level detection and meniscus-relative pipetting. Probably, the wells were // updated but not the overall labware dimensions. This needs to be investigated and fixed. - 'nest_96_wellplate_100ul_pcr_full_skirt/3.json': standard96WellNames, - 'nest_96_wellplate_100ul_pcr_full_skirt/4.json': standard96WellNames, - 'opentrons_24_tuberack_nest_1.5ml_screwcap/2.json': standard24WellNames, - 'opentrons_24_tuberack_nest_2ml_screwcap/2.json': standard24WellNames, - 'usascientific_12_reservoir_22ml/2.json': generateStandardWellNames(1, 12), // Fixed in v3 of this labware. - 'corning_12_wellplate_6.9ml_flat/3.json': generateStandardWellNames(3, 4), - 'corning_12_wellplate_6.9ml_flat/4.json': generateStandardWellNames(3, 4), - 'biorad_96_wellplate_200ul_pcr/3.json': standard96WellNames, - 'biorad_96_wellplate_200ul_pcr/4.json': standard96WellNames, + nest_96_wellplate_100ul_pcr_full_skirt: standard96WellNames, + 'opentrons_24_tuberack_nest_1.5ml_screwcap': standard24WellNames, + opentrons_24_tuberack_nest_2ml_screwcap: standard24WellNames, + 'corning_12_wellplate_6.9ml_flat': generateStandardWellNames(3, 4), + biorad_96_wellplate_200ul_pcr: standard96WellNames, } const filterWells = ( @@ -340,35 +316,27 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { const labwareWithWellDepthMismatches = [ // todo(mm, 2025-03-17): Investigate and resolve these mismatches. - 'agilent_1_reservoir_290ml/2', // Fixed in v3 of this labware. - 'corning_24_wellplate_3.4ml_flat/3', - 'corning_24_wellplate_3.4ml_flat/4', - 'corning_6_wellplate_16.8ml_flat/3', - 'corning_6_wellplate_16.8ml_flat/4', - 'corning_96_wellplate_360ul_flat/3', - 'corning_96_wellplate_360ul_flat/4', - 'nest_96_wellplate_2ml_deep/3', - 'nest_96_wellplate_2ml_deep/4', - 'opentrons_15_tuberack_falcon_15ml_conical/2', - 'opentrons_24_aluminumblock_nest_1.5ml_screwcap/2', - 'opentrons_24_aluminumblock_nest_2ml_screwcap/2', - 'opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/2', - 'opentrons_6_tuberack_falcon_50ml_conical/2', - 'opentrons_6_tuberack_nest_50ml_conical/2', + 'corning_24_wellplate_3.4ml_flat', + 'corning_6_wellplate_16.8ml_flat', + 'corning_96_wellplate_360ul_flat', + 'nest_96_wellplate_2ml_deep', + 'opentrons_15_tuberack_falcon_15ml_conical', + 'opentrons_24_aluminumblock_nest_1.5ml_screwcap', + 'opentrons_24_aluminumblock_nest_2ml_screwcap', + 'opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap', + 'opentrons_6_tuberack_falcon_50ml_conical', + 'opentrons_6_tuberack_nest_50ml_conical', ] if ( labwareDef.parameters.loadName === - 'opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical' && - labwareDef.version === 2 + 'opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical' ) { // todo(mm, 2025-03-17): Some of the well heights in this definition do match // and some of them don't, so we can't assert either way. Investigate and // resolve the mismatches. } else if ( - labwareWithWellDepthMismatches.includes( - labwareDef.parameters.loadName + '/' + labwareDef.version - ) + labwareWithWellDepthMismatches.includes(labwareDef.parameters.loadName) ) { expect(wellDepth).not.toStrictEqual(topFrustumHeight) } else { @@ -445,20 +413,28 @@ describe('test that the dimensions in all opentrons definitions make sense', () const labwareDef = require(fullLabwarePath) as LabwareDefinition2 const expectedWellsNotMatching = - expectedWellsNotMatchingZDimension[labwarePath] ?? new Set() - it(`has the expected ${expectedWellsNotMatching.size} wells not matching the labware's zDimension`, () => { + expectedWellsNotMatchingZDimension[labwareDef.parameters.loadName] ?? + new Set() + it(`has the expected ${expectedWellsNotMatching.size} wells not matching the labware's zDimension`, context => { + if (!isLatestDefinition(labwareDef)) context.skip() const wellsNotMatching = getWellsNotMatchingZDimension(labwareDef) expect(wellsNotMatching).toEqual(expectedWellsNotMatching) }) const expectedWellsHigher = - expectedWellsHigherThanZDimension[labwarePath] ?? new Set() - it(`has the expected ${expectedWellsHigher.size} wells above the labware's zDimension`, () => { + expectedWellsHigherThanZDimension[labwareDef.parameters.loadName] ?? + new Set() + it(`has the expected ${expectedWellsHigher.size} wells above the labware's zDimension`, context => { + if (!isLatestDefinition(labwareDef)) context.skip() const wellsHigher = getWellsHigherThanZDimension(labwareDef) expect(wellsHigher).toEqual(expectedWellsHigher) }) - checkGeometryDefinitions(labwareDef) + // todo(mm, 2025-08-04): Replace if-statement with Vitest context.skip() or skipif(). + // We need Vitest >= 3.0 to replace describe.each() with describe.for() and get context. + if (isLatestDefinition(labwareDef)) { + checkGeometryDefinitions(labwareDef) + } }) }) @@ -538,6 +514,13 @@ function findLatestDefinition(loadName: string): LabwareDefinition2 { return latest } +function isLatestDefinition(definition: LabwareDefinition2): boolean { + return ( + findLatestDefinition(definition.parameters.loadName).version === + definition.version + ) +} + /** * Extract the given geometry from the given definition. * From 177a41ed111c615fbdaba53095e925090342222b Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Wed, 7 May 2025 10:58:05 -0400 Subject: [PATCH 02/20] Test xDimension/yDimension/diameter, in addition to depth, against geometry. --- .../js/__tests__/labwareDefSchemaV2.test.ts | 97 ++++++++++++++++--- shared-data/js/types.ts | 4 +- 2 files changed, 84 insertions(+), 17 deletions(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index 7e779008693..f684fb660ac 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -12,6 +12,7 @@ import type { LabwareDefinition2, LabwareWell, UserDefinedVolumes, + WellSegment, } from '../types' const definitionsDir = path.join(__dirname, '../../labware/definitions/2') @@ -237,7 +238,7 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { } }) - test('sections of a well geometry should be sorted top to bottom', () => { + test('sections of a well geometry, or elements in a height-volume map, should be sorted top to bottom', () => { const geometries = Object.values(labwareDef.innerLabwareGeometry ?? []) for (const geometry of geometries) { if ('sections' in geometry) { @@ -296,23 +297,23 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { } }) - function isInnerWellGeometry( - def: InnerWellGeometry | UserDefinedVolumes - ): def is InnerWellGeometry { - return 'sections' in def - } - - test("a well's depth should equal the height of its geometry", () => { + test("a well's dimensions (depth/xDimension/yDimension/diameter) should agree with its geometry", () => { for (const well of Object.values(labwareDef.wells)) { const wellGeometryId = well.geometryDefinitionId - if (wellGeometryId === undefined) return - const wellDepth = well.depth - + if (wellGeometryId == null) return const innerGeometryObject = labwareDef.innerLabwareGeometry?.[wellGeometryId] - if (innerGeometryObject === undefined) return + if (innerGeometryObject == null) return if (!isInnerWellGeometry(innerGeometryObject)) return - const topFrustumHeight = innerGeometryObject.sections[0].topHeight + + const topSection = innerGeometryObject.sections[0] + + const depthFromWell = well.depth + const xyDimensionsFromWell = extractXYDimensionsFromWell(well) + const depthFromGeometry = topSection.topHeight + const xyDimensionsFromGeometry = extractTopDimensionsFromGeometrySection( + topSection + ) const labwareWithWellDepthMismatches = [ // todo(mm, 2025-03-17): Investigate and resolve these mismatches. @@ -338,10 +339,12 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { } else if ( labwareWithWellDepthMismatches.includes(labwareDef.parameters.loadName) ) { - expect(wellDepth).not.toStrictEqual(topFrustumHeight) + expect(depthFromWell).not.toStrictEqual(depthFromGeometry) } else { - expect(wellDepth).toStrictEqual(topFrustumHeight) + expect(depthFromWell).toStrictEqual(depthFromGeometry) } + + expect(xyDimensionsFromWell).toStrictEqual(xyDimensionsFromGeometry) } }) } @@ -552,3 +555,67 @@ function getGeometry( return result } } + +function isInnerWellGeometry( + def: InnerWellGeometry | UserDefinedVolumes +): def is InnerWellGeometry { + return 'sections' in def +} + +/** + * Extract some shape-specific properties from a well. + * Fall back to undefined if that property doesn't exist, given the well's shape. + */ +function extractXYDimensionsFromWell( + well: LabwareWell +): { + diameter?: number + xDimension?: number + yDimension?: number +} { + switch (well.shape) { + case 'circular': + return { diameter: well.diameter } + case 'rectangular': + return { + xDimension: well.xDimension, + yDimension: well.yDimension, + } + // Deliberately no default case, for exhaustiveness checking. + } +} + +/** + * Extract some shape-specific properties from a geometry section. + * Fall back to undefined if that property doesn't exist, given the geometry section's shape. + */ +function extractTopDimensionsFromGeometrySection( + section: WellSegment +): { diameter?: number; xDimension?: number; yDimension?: number } { + switch (section.shape) { + case 'spherical': + return {} + case 'conical': + return { diameter: section.topDiameter } + case 'cuboidal': + return { + xDimension: section.topXDimension, + yDimension: section.topYDimension, + } + case 'roundedcuboid': + case 'squaredcone': { + switch (section.bottomCrossSection) { + case 'circular': // Circular bottom, rectangular top. + return { + xDimension: section.rectangleXDimension, + yDimension: section.rectangleYDimension, + } + case 'rectangular': // Rectangular bottom, circular top. + return { + diameter: section.circleDiameter, + } + } + } + // Deliberately no default case, for exhaustiveness checking. + } +} diff --git a/shared-data/js/types.ts b/shared-data/js/types.ts index 8e801bfaed8..9ae4b0e7315 100644 --- a/shared-data/js/types.ts +++ b/shared-data/js/types.ts @@ -204,7 +204,7 @@ export interface CuboidalFrustum { export interface SquaredConeSegment { shape: 'squaredcone' - bottomCrossSection: string + bottomCrossSection: 'circular' | 'rectangular' circleDiameter: number rectangleXDimension: number rectangleYDimension: number @@ -214,7 +214,7 @@ export interface SquaredConeSegment { export interface RoundedCuboidSegment { shape: 'roundedcuboid' - bottomCrossSection: string + bottomCrossSection: 'circular' | 'rectangular' circleDiameter: number rectangleXDimension: number rectangleYDimension: number From 99224e757afbf36ee376edabd8b4eb56ed3e35f1 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 4 Aug 2025 14:04:13 -0400 Subject: [PATCH 03/20] Create drafts from the latest versions of each labware. --- .../2/agilent_1_reservoir_290ml/draft.json | 80 + .../draft.json | 4737 +++++++++++++++ .../draft.json | 1167 ++++ .../2/axygen_1_reservoir_90ml/draft.json | 72 + .../2/axygen_96_wellplate_500ul/draft.json | 1159 ++++ .../2/biorad_384_wellplate_50ul/draft.json | 4748 +++++++++++++++ .../biorad_96_wellplate_200ul_pcr/draft.json | 1187 ++++ .../draft.json | 210 + .../draft.json | 342 ++ .../draft.json | 5116 +++++++++++++++++ .../draft.json | 610 ++ .../draft.json | 134 + .../draft.json | 1177 ++++ .../corning_96_wellplate_360ul_lid/draft.json | 111 + .../draft.json | 1019 ++++ .../draft.json | 1019 ++++ .../eppendorf_96_wellplate_1000ul/draft.json | 1149 ++++ .../ev_resin_tips_flex_96_labware/draft.json | 1067 ++++ .../draft.json | 44 + .../draft.json | 44 + .../draft.json | 44 + .../2/geb_96_tiprack_1000ul/draft.json | 1017 ++++ .../2/geb_96_tiprack_10ul/draft.json | 1017 ++++ .../draft.json | 1216 ++++ .../draft.json | 110 + .../2/milliplex_microtiter_plate/draft.json | 1018 ++++ .../milliplex_microtiter_plate_lid/draft.json | 110 + .../2/nest_12_reservoir_15ml/draft.json | 226 + .../2/nest_12_reservoir_22ml/draft.json | 232 + .../2/nest_1_reservoir_195ml/draft.json | 83 + .../2/nest_1_reservoir_290ml/draft.json | 80 + .../2/nest_24_wellplate_10.4ml/draft.json | 386 ++ .../2/nest_8_reservoir_22ml/draft.json | 162 + .../draft.json | 1166 ++++ .../2/nest_96_wellplate_200ul_flat/draft.json | 1145 ++++ .../2/nest_96_wellplate_2ml_deep/draft.json | 1261 ++++ .../draft.json | 232 + .../draft.json | 162 + .../draft.json | 235 + .../draft.json | 259 + .../draft.json | 257 + .../opentrons_1_trash_1100ml_fixed/draft.json | 50 + .../opentrons_1_trash_3200ml_fixed/draft.json | 50 + .../opentrons_1_trash_850ml_fixed/draft.json | 50 + .../draft.json | 352 ++ .../draft.json | 370 ++ .../draft.json | 356 ++ .../draft.json | 358 ++ .../draft.json | 350 ++ .../draft.json | 386 ++ .../draft.json | 418 ++ .../draft.json | 473 ++ .../draft.json | 309 + .../draft.json | 298 + .../draft.json | 351 ++ .../draft.json | 371 ++ .../draft.json | 357 ++ .../draft.json | 359 ++ .../draft.json | 351 ++ .../draft.json | 387 ++ .../draft.json | 481 ++ .../draft.json | 145 + .../draft.json | 150 + .../draft.json | 1029 ++++ .../draft.json | 1149 ++++ .../draft.json | 1027 ++++ .../opentrons_96_deep_well_adapter/draft.json | 41 + .../draft.json | 1121 ++++ .../draft.json | 41 + .../draft.json | 1017 ++++ .../draft.json | 1017 ++++ .../draft.json | 1017 ++++ .../draft.json | 1017 ++++ .../draft.json | 41 + .../draft.json | 1027 ++++ .../2/opentrons_96_pcr_adapter/draft.json | 1032 ++++ .../draft.json | 1027 ++++ .../draft.json | 1025 ++++ .../2/opentrons_96_tiprack_1000ul/draft.json | 1019 ++++ .../2/opentrons_96_tiprack_10ul/draft.json | 1019 ++++ .../2/opentrons_96_tiprack_20ul/draft.json | 1019 ++++ .../2/opentrons_96_tiprack_300ul/draft.json | 1019 ++++ .../draft.json | 1032 ++++ .../draft.json | 1174 ++++ .../draft.json | 41 + .../draft.json | 62 + .../draft.json | 62 + .../draft.json | 69 + .../draft.json | 71 + .../draft.json | 71 + .../draft.json | 1031 ++++ .../draft.json | 1031 ++++ .../draft.json | 1031 ++++ .../draft.json | 1031 ++++ .../draft.json | 1031 ++++ .../draft.json | 1031 ++++ .../opentrons_flex_96_tiprack_20ul/draft.json | 1031 ++++ .../opentrons_flex_96_tiprack_50ul/draft.json | 1031 ++++ .../draft.json | 41 + .../2/opentrons_flex_deck_riser/draft.json | 41 + .../draft.json | 57 + .../2/opentrons_flex_tiprack_lid/draft.json | 122 + .../draft.json | 228 + .../draft.json | 83 + .../draft.json | 114 + .../draft.json | 134 + .../opentrons_tough_universal_lid/draft.json | 96 + .../draft.json | 151 + .../draft.json | 4710 +++++++++++++++ .../draft.json | 151 + .../draft.json | 48 + .../2/smc_384_read_plate/draft.json | 5100 ++++++++++++++++ .../draft.json | 1141 ++++ .../draft.json | 1141 ++++ .../2/tipone_96_tiprack_200ul/draft.json | 1017 ++++ .../draft.json | 237 + .../draft.json | 1243 ++++ 117 files changed, 85771 insertions(+) create mode 100644 shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json create mode 100644 shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json create mode 100644 shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json create mode 100644 shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json create mode 100644 shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json create mode 100644 shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json create mode 100644 shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json create mode 100644 shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json create mode 100644 shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json create mode 100644 shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json create mode 100644 shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json create mode 100644 shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json create mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json create mode 100644 shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json create mode 100644 shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json create mode 100644 shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json create mode 100644 shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json create mode 100644 shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json create mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json create mode 100644 shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json create mode 100644 shared-data/labware/definitions/2/smc_384_read_plate/draft.json create mode 100644 shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json create mode 100644 shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json create mode 100644 shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json create mode 100644 shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json create mode 100644 shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json diff --git a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json new file mode 100644 index 00000000000..0de84dd662f --- /dev/null +++ b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json @@ -0,0 +1,80 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Agilent", + "brandId": ["201252-100"], + "links": ["https://www.agilent.com/store/en_US/Prod-201252-100/201252-100"] + }, + "metadata": { + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "wells": { + "A1": { + "depth": 39.23, + "shape": "rectangular", + "xDimension": 108, + "yDimension": 72, + "totalLiquidVolume": 290000, + "x": 63.88, + "y": 42.785, + "z": 4.81, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.5, + "topYDimension": 71.25, + "bottomXDimension": 106.785, + "bottomYDimension": 71.0, + "topHeight": 39.23, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 106.785, + "topYDimension": 8, + "bottomXDimension": 100.75, + "bottomYDimension": 1.66, + "topHeight": 2, + "bottomHeight": 0, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json b/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json new file mode 100644 index 00000000000..8397aa71f85 --- /dev/null +++ b/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json @@ -0,0 +1,4737 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "brand": { + "brand": "Applied Biosystems MicroAmp", + "brandId": ["4309849", "4326270", "4343814"], + "links": [ + "https://www.thermofisher.com/order/catalog/product/4309849#/4309849" + ] + }, + "metadata": { + "displayName": "Applied Biosystems MicroAmp 384 Well Plate 40 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 9.7 + }, + "wells": { + "A1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P1": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 12.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P2": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 16.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P3": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 21.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P4": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 25.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P5": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 30.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P6": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 34.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P7": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 39.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P8": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 43.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P9": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 48.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P10": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 52.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P11": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 57.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P12": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 61.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P13": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 66.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P14": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 70.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P15": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 75.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P16": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 79.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P17": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 84.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P18": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 88.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P19": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 93.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P20": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 97.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P21": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 102.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P22": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 106.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P23": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 111.15, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "A24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 76.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "B24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 72, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "C24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 67.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "D24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 63, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "E24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 58.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "F24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 54, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "G24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 49.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "H24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 45, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "I24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 40.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "J24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 36, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "K24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 31.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "L24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 27, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "M24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 22.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "N24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 18, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "O24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 13.5, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + }, + "P24": { + "depth": 9.09, + "totalLiquidVolume": 40, + "shape": "circular", + "diameter": 3.17, + "x": 115.65, + "y": 9, + "z": 0.61, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + } + ], + "parameters": { + "format": "384Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "appliedbiosystemsmicroamp_384_wellplate_40ul" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "appliedbiosystemsmicroamp_384_wellplate_40ul": { + "x": 0, + "y": 0, + "z": 0.78 + } + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 3.17, + "topDiameter": 3.17, + "topHeight": 9.09, + "bottomHeight": 5.77 + }, + { + "shape": "conical", + "topDiameter": 3.17, + "bottomDiameter": 1.4, + "topHeight": 5.77, + "bottomHeight": 0.34 + }, + { + "shape": "spherical", + "radiusOfCurvature": 0.89, + "topHeight": 0.34, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json new file mode 100644 index 00000000000..faaed462f58 --- /dev/null +++ b/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json @@ -0,0 +1,1167 @@ +{ + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "parameters": { + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true + }, + "metadata": { + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "brand": { + "brand": "Thermo Scientific", + "brandId": ["AB2396"], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10, + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "wells": { + "A1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.5, + "topDiameter": 5.5, + "topHeight": 14.95, + "bottomHeight": 11.35 + }, + { + "shape": "conical", + "topDiameter": 5.5, + "bottomDiameter": 2.33, + "topHeight": 11.35, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.25, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json new file mode 100644 index 00000000000..57867e87932 --- /dev/null +++ b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json @@ -0,0 +1,72 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Axygen", + "brandId": ["RES-SW1-LP"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Genomics-%26-Molecular-Biology/Automation-Consumables/Automation-Reservoirs/Axygen%C2%AE-Reagent-Reservoirs/p/RES-SW1-LP?clear=true" + ] + }, + "metadata": { + "displayName": "Axygen 1 Well Reservoir 90 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 19.05 + }, + "wells": { + "A1": { + "depth": 12.42, + "shape": "rectangular", + "xDimension": 106.76, + "yDimension": 70.52, + "totalLiquidVolume": 90000, + "x": 63.88, + "y": 42.735, + "z": 6.63, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "axygen_1_reservoir_90ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 106.8, + "topYDimension": 70.5, + "bottomXDimension": 106.4, + "bottomYDimension": 70, + "topHeight": 12.42, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json b/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json new file mode 100644 index 00000000000..239d18101c4 --- /dev/null +++ b/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json @@ -0,0 +1,1159 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Axygen", + "brandId": ["P-96-450V-C-S"] + }, + "metadata": { + "displayName": "Axygen 96 Well Plate 500 \u00b5L", + "displayCategory": "wellPlate", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "dimensions": { + "xDimension": 127.64, + "yDimension": 85.34, + "zDimension": 14.35 + }, + "wells": { + "A1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 14.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 23.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 32.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 41.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 50.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 59.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 68.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 77.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 86.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 95.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 104.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 74.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 65.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 56.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 47.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 38.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 29.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 20.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 12.43, + "totalLiquidVolume": 500, + "shape": "circular", + "diameter": 8.5, + "x": 113.38, + "y": 11.1, + "z": 1.92, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "axygen_96_wellplate_500ul" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackLimit": 2, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 8.25 + }, + "millipore_24_ball_magnet": { + "x": 0, + "y": 0, + "z": 4.85 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 47.85 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 8.18, + "topDiameter": 8.5, + "topHeight": 12.43, + "bottomHeight": 3.89 + }, + { + "shape": "conical", + "bottomDiameter": 0.723, + "topDiameter": 8.18, + "topHeight": 3.89, + "bottomHeight": 0.15 + }, + { + "shape": "spherical", + "radiusOfCurvature": 0.511, + "topHeight": 0.15, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json b/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json new file mode 100644 index 00000000000..346c844686b --- /dev/null +++ b/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json @@ -0,0 +1,4748 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "HSP3xxx", + "HSP3801", + "HSP3805", + "HSP3901", + "HSP3905", + "HSR4xxx", + "HSR4801", + "HSR4805" + ], + "links": [ + "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" + ] + }, + "metadata": { + "displayName": "Bio-Rad 384 Well Plate 50 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 10.4 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 9.3, + "wells": { + "A1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P1": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 12.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P2": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 16.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P3": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 21.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P4": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 25.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P5": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 30.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P6": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 34.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P7": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 39.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P8": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 43.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P9": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 48.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P10": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 52.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P11": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 57.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P12": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 61.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P13": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 66.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P14": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 70.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P15": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 75.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P16": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 79.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P17": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 84.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P18": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 88.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P19": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 93.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P20": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 97.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P21": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 102.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P22": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 106.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P23": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 111.13, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 76.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 71.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 67.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 62.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 58.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 53.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 49.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 44.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "I24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 40.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "J24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 35.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "K24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 31.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "L24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 26.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "M24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 22.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "N24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 17.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "O24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 13.49, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "P24": { + "depth": 9.35, + "totalLiquidVolume": 50, + "shape": "circular", + "diameter": 3.1, + "x": 115.63, + "y": 8.99, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + } + ], + "parameters": { + "format": "384Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "biorad_384_wellplate_50ul" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "biorad_384_wellplate_50ul": { + "x": 0, + "y": 0, + "z": 1.95 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 3, + "topDiameter": 3.1, + "topHeight": 9.35, + "bottomHeight": 5.35 + }, + { + "shape": "conical", + "bottomDiameter": 1.46, + "topDiameter": 3, + "topHeight": 5.35, + "bottomHeight": 0.35 + }, + { + "shape": "spherical", + "radiusOfCurvature": 0.94, + "topHeight": 0.35, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json new file mode 100644 index 00000000000..3131899874c --- /dev/null +++ b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json @@ -0,0 +1,1187 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "metadata": { + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "yDimension": 85.48, + "xDimension": 127.76, + "zDimension": 16.06 + }, + "parameters": { + "format": "96Standard", + "isTiprack": false, + "loadName": "biorad_96_wellplate_200ul_pcr", + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 18 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10.14, + "wells": { + "H1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.25, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Bio-Rad", + "brandId": ["hsp9601"], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 15.41 + }, + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.16 + }, + "biorad_96_wellplate_200ul_pcr": { + "x": 0, + "y": 0, + "z": 3.32 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.75 + }, + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.87 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.44, + "topDiameter": 5.44, + "topHeight": 14.57, + "bottomHeight": 10.14 + }, + { + "shape": "conical", + "topDiameter": 5.44, + "bottomDiameter": 4.98, + "topHeight": 10.14, + "bottomHeight": 8.58 + }, + { + "shape": "conical", + "topDiameter": 4.98, + "bottomDiameter": 3, + "topHeight": 8.58, + "bottomHeight": 1.87 + }, + { + "shape": "conical", + "topDiameter": 3.0, + "bottomDiameter": 2.81, + "topHeight": 1.87, + "bottomHeight": 1.21 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.42, + "topHeight": 1.21, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json new file mode 100644 index 00000000000..367bfb37c84 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json @@ -0,0 +1,210 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3", "C3"], + ["A4", "B4", "C4"] + ], + "brand": { + "brand": "Corning", + "brandId": ["3336", "3512", "3513"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3513?clear=true" + ] + }, + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 12 Well Plate 6.9 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.89, + "yDimension": 85.6, + "zDimension": 20.02 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 18.3, + "wells": { + "C1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 16.79, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 42.8, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 68.81, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 16.79, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 42.8, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 68.81, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 16.79, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 42.8, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 68.81, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 16.79, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 42.8, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.73, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 68.81, + "z": 2.49, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_12_wellplate_6.9ml_flat" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "A2", + "B2", + "C2", + "A3", + "B3", + "C3", + "A4", + "B4", + "C4" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.5 + }, + "corning_12_wellplate_6.9ml_flat": { + "x": 0, + "y": 0, + "z": 0.93 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 22.733, + "bottomDiameter": 22.098, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json new file mode 100644 index 00000000000..996ef1c59fb --- /dev/null +++ b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json @@ -0,0 +1,342 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Corning", + "brandId": ["3337", "3524", "3526", "3527", "3473", "3738", "3987"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3738" + ] + }, + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 24 Well Plate 3.4 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "wells": { + "D1": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 17.48, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 17.48, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 17.48, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 17.48, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 36.78, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 36.78, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 36.78, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 36.78, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 56.08, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 56.08, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 56.08, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 56.08, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 75.38, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 75.38, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 75.38, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 75.38, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 94.68, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 94.68, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 94.68, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 94.68, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 113.98, + "y": 13.77, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 113.98, + "y": 33.07, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 113.98, + "y": 52.37, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "shape": "circular", + "depth": 17.4, + "diameter": 16.26, + "totalLiquidVolume": 3400, + "x": 113.98, + "y": 71.67, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_24_wellplate_3.4ml_flat" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.15 + }, + "corning_24_wellplate_3.4ml_flat": { + "x": 0, + "y": 0, + "z": 1.32 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 16.256, + "bottomDiameter": 15.621, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json new file mode 100644 index 00000000000..976e41290d5 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json @@ -0,0 +1,5116 @@ +{ + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "metadata": { + "displayName": "Corning 384 Well Plate 112 µL Flat", + "displayVolumeUnits": "µL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "parameters": { + "format": "384Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_384_wellplate_112ul_flat" + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 12.4, + "wells": { + "P1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 8.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 13.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 17.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 22.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 26.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 31.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 35.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 40.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 44.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 49.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 53.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 58.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 62.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 67.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 71.99, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.63, + "yDimension": 3.63, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 76.49, + "z": 2.79, + "geometryDefinitionId": "flatWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3640", "3662", "3680", "3700", "3701", "3702"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 8.32 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + } + }, + "innerLabwareGeometry": { + "flatWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 3.632, + "topYDimension": 3.632, + "bottomXDimension": 2.667, + "bottomYDimension": 2.667, + "topHeight": 11.43, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json new file mode 100644 index 00000000000..056c29dbeb7 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json @@ -0,0 +1,610 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1"], + ["A2", "B2", "C2", "D2", "E2", "F2"], + ["A3", "B3", "C3", "D3", "E3", "F3"], + ["A4", "B4", "C4", "D4", "E4", "F4"], + ["A5", "B5", "C5", "D5", "E5", "F5"], + ["A6", "B6", "C6", "D6", "E6", "F6"], + ["A7", "B7", "C7", "D7", "E7", "F7"], + ["A8", "B8", "C8", "D8", "E8", "F8"] + ], + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 48 Well Plate 1.6 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.89, + "yDimension": 85.6, + "zDimension": 20.02 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_48_wellplate_1.6ml_flat" + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 18.3, + "wells": { + "F1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 10.08, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 23.16, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 36.24, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 49.32, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 62.4, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 75.48, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3548"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3548" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + }, + "corning_48_wellplate_1.6ml_flat": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 10.643, + "topDiameter": 11.1, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json new file mode 100644 index 00000000000..53dd47a511f --- /dev/null +++ b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json @@ -0,0 +1,134 @@ +{ + "ordering": [ + ["A1", "B1"], + ["A2", "B2"], + ["A3", "B3"] + ], + "metadata": { + "displayName": "Corning 6 Well Plate 16.8 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_6_wellplate_16.8ml_flat" + }, + "wells": { + "B1": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 23.16, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 62.28, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 23.16, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 62.28, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 103, + "y": 23.16, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.4, + "diameter": 35.43, + "totalLiquidVolume": 16800, + "x": 103, + "y": 62.28, + "z": 2.87, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3335", "3506", "3516", "3471"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3335" + ] + }, + "groups": [ + { + "wells": ["A1", "B1", "A2", "B2", "A3", "B3"], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.5 + }, + "corning_6_wellplate_16.8ml_flat": { + "x": 0, + "y": 0, + "z": 1.74 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 34.798, + "topDiameter": 35.433, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json new file mode 100644 index 00000000000..5eb9db4259d --- /dev/null +++ b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json @@ -0,0 +1,1177 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Corning", + "brandId": [ + "3650", + "3916", + "3915", + "3361", + "3590", + "9018", + "3591", + "9017", + "3641", + "3628", + "3370", + "2507", + "2509", + "2503", + "3665", + "3600", + "3362", + "3917", + "3912", + "3925", + "3922", + "3596", + "3977", + "3598", + "3599", + "3585", + "3595", + "3300", + "3474" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Corning%C2%AE-96-well-Solid-Black-and-White-Polystyrene-Microplates/p/corning96WellSolidBlackAndWhitePolystyreneMicroplates" + ] + }, + "metadata": { + "displayName": "Corning 96 Well Plate 360 µL Flat", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 12.2, + "wells": { + "H1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 14.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 23.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 32.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 41.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 50.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 59.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 68.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 77.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 86.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 95.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 104.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 11.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 20.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 29.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 38.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 47.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 56.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 65.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 10.67, + "shape": "circular", + "diameter": 6.86, + "totalLiquidVolume": 360, + "x": 113.38, + "y": 74.24, + "z": 3.55, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_96_wellplate_360ul_flat" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 10.22 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 5.45 + }, + "corning_96_wellplate_360ul_flat": { + "x": 0, + "y": 0, + "z": 1.11 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 6.858, + "bottomDiameter": 6.35, + "topHeight": 10.668, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json new file mode 100644 index 00000000000..0047263bd81 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json @@ -0,0 +1,111 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "Corning", + "brandId": [] + }, + "metadata": { + "displayName": "Corning 96 Wellplate 360ul Lid", + "displayCategory": "lid", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 10 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": -0.71 + }, + "parameters": { + "format": "irregular", + "quirks": ["stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_96_wellplate_360ul_lid" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackingOffsetWithLabware": { + "corning_96_wellplate_360ul_flat": { + "x": 0, + "y": 0, + "z": 6.5 + }, + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackLimit": 5, + "compatibleParentLabware": [ + "protocol_engine_lid_stack_object", + "opentrons_flex_deck_riser", + "corning_96_wellplate_360ul_flat" + ], + "gripForce": 10, + "gripHeightFromLabwareBottom": 7, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": -6 + } + }, + "lidOffsets": { + "pickUpOffset": { + "x": 0.5, + "y": 0, + "z": -5 + }, + "dropOffset": { + "x": 0.5, + "y": 0, + "z": -1 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json b/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json new file mode 100644 index 00000000000..4351fc22d53 --- /dev/null +++ b/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "metadata": { + "displayName": "Eppendorf epT.I.P.S. 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "displayCategory": "tipRack", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 121.9 + }, + "parameters": { + "format": "96Standard", + "isTiprack": true, + "isMagneticModuleCompatible": false, + "tipLength": 70.7, + "tipOverlap": 0, + "loadName": "eppendorf_96_tiprack_1000ul_eptips" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.24, + "z": 56.9 + }, + "G1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.24, + "z": 56.9 + }, + "F1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.24, + "z": 56.9 + }, + "E1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.24, + "z": 56.9 + }, + "D1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.24, + "z": 56.9 + }, + "C1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.24, + "z": 56.9 + }, + "B1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.24, + "z": 56.9 + }, + "A1": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.24, + "z": 56.9 + }, + "H2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.24, + "z": 56.9 + }, + "G2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.24, + "z": 56.9 + }, + "F2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.24, + "z": 56.9 + }, + "E2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.24, + "z": 56.9 + }, + "D2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.24, + "z": 56.9 + }, + "C2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.24, + "z": 56.9 + }, + "B2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.24, + "z": 56.9 + }, + "A2": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.24, + "z": 56.9 + }, + "H3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.24, + "z": 56.9 + }, + "G3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.24, + "z": 56.9 + }, + "F3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.24, + "z": 56.9 + }, + "E3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.24, + "z": 56.9 + }, + "D3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.24, + "z": 56.9 + }, + "C3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.24, + "z": 56.9 + }, + "B3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.24, + "z": 56.9 + }, + "A3": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.24, + "z": 56.9 + }, + "H4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.24, + "z": 56.9 + }, + "G4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.24, + "z": 56.9 + }, + "F4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.24, + "z": 56.9 + }, + "E4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.24, + "z": 56.9 + }, + "D4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.24, + "z": 56.9 + }, + "C4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.24, + "z": 56.9 + }, + "B4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.24, + "z": 56.9 + }, + "A4": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.24, + "z": 56.9 + }, + "H5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.24, + "z": 56.9 + }, + "G5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.24, + "z": 56.9 + }, + "F5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.24, + "z": 56.9 + }, + "E5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.24, + "z": 56.9 + }, + "D5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.24, + "z": 56.9 + }, + "C5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.24, + "z": 56.9 + }, + "B5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.24, + "z": 56.9 + }, + "A5": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.24, + "z": 56.9 + }, + "H6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.24, + "z": 56.9 + }, + "G6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.24, + "z": 56.9 + }, + "F6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.24, + "z": 56.9 + }, + "E6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.24, + "z": 56.9 + }, + "D6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.24, + "z": 56.9 + }, + "C6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.24, + "z": 56.9 + }, + "B6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.24, + "z": 56.9 + }, + "A6": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.24, + "z": 56.9 + }, + "H7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.24, + "z": 56.9 + }, + "G7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.24, + "z": 56.9 + }, + "F7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.24, + "z": 56.9 + }, + "E7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.24, + "z": 56.9 + }, + "D7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.24, + "z": 56.9 + }, + "C7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.24, + "z": 56.9 + }, + "B7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.24, + "z": 56.9 + }, + "A7": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.24, + "z": 56.9 + }, + "H8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.24, + "z": 56.9 + }, + "G8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.24, + "z": 56.9 + }, + "F8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.24, + "z": 56.9 + }, + "E8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.24, + "z": 56.9 + }, + "D8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.24, + "z": 56.9 + }, + "C8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.24, + "z": 56.9 + }, + "B8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.24, + "z": 56.9 + }, + "A8": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.24, + "z": 56.9 + }, + "H9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.24, + "z": 56.9 + }, + "G9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.24, + "z": 56.9 + }, + "F9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.24, + "z": 56.9 + }, + "E9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.24, + "z": 56.9 + }, + "D9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.24, + "z": 56.9 + }, + "C9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.24, + "z": 56.9 + }, + "B9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.24, + "z": 56.9 + }, + "A9": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.24, + "z": 56.9 + }, + "H10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.24, + "z": 56.9 + }, + "G10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.24, + "z": 56.9 + }, + "F10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.24, + "z": 56.9 + }, + "E10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.24, + "z": 56.9 + }, + "D10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.24, + "z": 56.9 + }, + "C10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.24, + "z": 56.9 + }, + "B10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.24, + "z": 56.9 + }, + "A10": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.24, + "z": 56.9 + }, + "H11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.24, + "z": 56.9 + }, + "G11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.24, + "z": 56.9 + }, + "F11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.24, + "z": 56.9 + }, + "E11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.24, + "z": 56.9 + }, + "D11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.24, + "z": 56.9 + }, + "C11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.24, + "z": 56.9 + }, + "B11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.24, + "z": 56.9 + }, + "A11": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.24, + "z": 56.9 + }, + "H12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.24, + "z": 56.9 + }, + "G12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.24, + "z": 56.9 + }, + "F12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.24, + "z": 56.9 + }, + "E12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.24, + "z": 56.9 + }, + "D12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.24, + "z": 56.9 + }, + "C12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.24, + "z": 56.9 + }, + "B12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.24, + "z": 56.9 + }, + "A12": { + "shape": "circular", + "depth": 65, + "diameter": 8.8, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.24, + "z": 56.9 + } + }, + "brand": { + "brand": "Eppendorf", + "brandId": ["022491105"], + "links": [ + "https://online-shop.eppendorf.us/US-en/Manual-Liquid-Handling-44563/Pipette-Tips-44569/epT.I.P.S.-PF-243780.html" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json b/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json new file mode 100644 index 00000000000..08f5396e83a --- /dev/null +++ b/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "metadata": { + "displayName": "Eppendorf epT.I.P.S. 96 Tip Rack 10 µL", + "displayVolumeUnits": "µL", + "displayCategory": "tipRack", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 65.4 + }, + "parameters": { + "format": "96Standard", + "isTiprack": true, + "isMagneticModuleCompatible": false, + "tipLength": 34, + "tipOverlap": 1, + "loadName": "eppendorf_96_tiprack_10ul_eptips" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.24, + "z": 35.4 + }, + "G1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.24, + "z": 35.4 + }, + "F1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.24, + "z": 35.4 + }, + "E1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.24, + "z": 35.4 + }, + "D1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.24, + "z": 35.4 + }, + "C1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.24, + "z": 35.4 + }, + "B1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.24, + "z": 35.4 + }, + "A1": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.24, + "z": 35.4 + }, + "H2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.24, + "z": 35.4 + }, + "G2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.24, + "z": 35.4 + }, + "F2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.24, + "z": 35.4 + }, + "E2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.24, + "z": 35.4 + }, + "D2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.24, + "z": 35.4 + }, + "C2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.24, + "z": 35.4 + }, + "B2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.24, + "z": 35.4 + }, + "A2": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.24, + "z": 35.4 + }, + "H3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.24, + "z": 35.4 + }, + "G3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.24, + "z": 35.4 + }, + "F3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.24, + "z": 35.4 + }, + "E3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.24, + "z": 35.4 + }, + "D3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.24, + "z": 35.4 + }, + "C3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.24, + "z": 35.4 + }, + "B3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.24, + "z": 35.4 + }, + "A3": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.24, + "z": 35.4 + }, + "H4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.24, + "z": 35.4 + }, + "G4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.24, + "z": 35.4 + }, + "F4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.24, + "z": 35.4 + }, + "E4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.24, + "z": 35.4 + }, + "D4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.24, + "z": 35.4 + }, + "C4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.24, + "z": 35.4 + }, + "B4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.24, + "z": 35.4 + }, + "A4": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.24, + "z": 35.4 + }, + "H5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.24, + "z": 35.4 + }, + "G5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.24, + "z": 35.4 + }, + "F5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.24, + "z": 35.4 + }, + "E5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.24, + "z": 35.4 + }, + "D5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.24, + "z": 35.4 + }, + "C5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.24, + "z": 35.4 + }, + "B5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.24, + "z": 35.4 + }, + "A5": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.24, + "z": 35.4 + }, + "H6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.24, + "z": 35.4 + }, + "G6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.24, + "z": 35.4 + }, + "F6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.24, + "z": 35.4 + }, + "E6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.24, + "z": 35.4 + }, + "D6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.24, + "z": 35.4 + }, + "C6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.24, + "z": 35.4 + }, + "B6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.24, + "z": 35.4 + }, + "A6": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.24, + "z": 35.4 + }, + "H7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.24, + "z": 35.4 + }, + "G7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.24, + "z": 35.4 + }, + "F7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.24, + "z": 35.4 + }, + "E7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.24, + "z": 35.4 + }, + "D7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.24, + "z": 35.4 + }, + "C7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.24, + "z": 35.4 + }, + "B7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.24, + "z": 35.4 + }, + "A7": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.24, + "z": 35.4 + }, + "H8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.24, + "z": 35.4 + }, + "G8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.24, + "z": 35.4 + }, + "F8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.24, + "z": 35.4 + }, + "E8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.24, + "z": 35.4 + }, + "D8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.24, + "z": 35.4 + }, + "C8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.24, + "z": 35.4 + }, + "B8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.24, + "z": 35.4 + }, + "A8": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.24, + "z": 35.4 + }, + "H9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.24, + "z": 35.4 + }, + "G9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.24, + "z": 35.4 + }, + "F9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.24, + "z": 35.4 + }, + "E9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.24, + "z": 35.4 + }, + "D9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.24, + "z": 35.4 + }, + "C9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.24, + "z": 35.4 + }, + "B9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.24, + "z": 35.4 + }, + "A9": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.24, + "z": 35.4 + }, + "H10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.24, + "z": 35.4 + }, + "G10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.24, + "z": 35.4 + }, + "F10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.24, + "z": 35.4 + }, + "E10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.24, + "z": 35.4 + }, + "D10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.24, + "z": 35.4 + }, + "C10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.24, + "z": 35.4 + }, + "B10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.24, + "z": 35.4 + }, + "A10": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.24, + "z": 35.4 + }, + "H11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.24, + "z": 35.4 + }, + "G11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.24, + "z": 35.4 + }, + "F11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.24, + "z": 35.4 + }, + "E11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.24, + "z": 35.4 + }, + "D11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.24, + "z": 35.4 + }, + "C11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.24, + "z": 35.4 + }, + "B11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.24, + "z": 35.4 + }, + "A11": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.24, + "z": 35.4 + }, + "H12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.24, + "z": 35.4 + }, + "G12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.24, + "z": 35.4 + }, + "F12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.24, + "z": 35.4 + }, + "E12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.24, + "z": 35.4 + }, + "D12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.24, + "z": 35.4 + }, + "C12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.24, + "z": 35.4 + }, + "B12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.24, + "z": 35.4 + }, + "A12": { + "shape": "circular", + "depth": 30, + "diameter": 6, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.24, + "z": 35.4 + } + }, + "brand": { + "brand": "Eppendorf", + "brandId": ["022491300"], + "links": [ + "https://online-shop.eppendorf.us/US-en/Manual-Liquid-Handling-44563/Pipette-Tips-44569/epT.I.P.S.-PF-243780.html" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json b/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json new file mode 100644 index 00000000000..dc2fdbfec4a --- /dev/null +++ b/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json @@ -0,0 +1,1149 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Eppendorf", + "brandId": ["951032603"], + "links": [ + "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-Deepwell-Plates-p-951032603" + ] + }, + "metadata": { + "displayName": "Eppendorf 96 Well Plate 1000 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 44.1 + }, + "wells": { + "A1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 74.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 65.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 56.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 47.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 38.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 29.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 20.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 40.9, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.4, + "y": 11.3, + "z": 3.2, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "eppendorf_96_wellplate_1000ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "eppendorf_96_wellplate_1000ul": { + "x": 0, + "y": 0, + "z": 1.4 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 3.5, + "bottomDiameter": 3.0, + "topHeight": 40.9, + "bottomHeight": 1.82 + }, + { + "shape": "conical", + "topDiameter": 3.0, + "bottomDiameter": 1.18, + "topHeight": 1.82, + "bottomHeight": 0.58 + }, + { + "shape": "spherical", + "topHeight": 0.58, + "bottomHeight": 0.0, + "radiusOfCurvature": 2.02 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json new file mode 100644 index 00000000000..513e262edab --- /dev/null +++ b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json @@ -0,0 +1,1067 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00254"], + "links": [ + "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" + ] + }, + "metadata": { + "displayName": "Opentrons Flex EV Resin Tips Top Adapter with Third-party Evotips", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 55 + }, + "wells": { + "A1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 75.25, + "z": 0 + }, + "B1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 66.25, + "z": 0 + }, + "C1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 57.25, + "z": 0 + }, + "D1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 48.25, + "z": 0 + }, + "E1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 39.25, + "z": 0 + }, + "F1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 30.25, + "z": 0 + }, + "G1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 21.25, + "z": 0 + }, + "H1": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 14.38, + "y": 12.25, + "z": 0 + }, + "A2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 75.25, + "z": 0 + }, + "B2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 66.25, + "z": 0 + }, + "C2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 57.25, + "z": 0 + }, + "D2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 48.25, + "z": 0 + }, + "E2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 39.25, + "z": 0 + }, + "F2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 30.25, + "z": 0 + }, + "G2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 21.25, + "z": 0 + }, + "H2": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 23.38, + "y": 12.25, + "z": 0 + }, + "A3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 75.25, + "z": 0 + }, + "B3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 66.25, + "z": 0 + }, + "C3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 57.25, + "z": 0 + }, + "D3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 48.25, + "z": 0 + }, + "E3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 39.25, + "z": 0 + }, + "F3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 30.25, + "z": 0 + }, + "G3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 21.25, + "z": 0 + }, + "H3": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 32.38, + "y": 12.25, + "z": 0 + }, + "A4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 75.25, + "z": 0 + }, + "B4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 66.25, + "z": 0 + }, + "C4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 57.25, + "z": 0 + }, + "D4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 48.25, + "z": 0 + }, + "E4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 39.25, + "z": 0 + }, + "F4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 30.25, + "z": 0 + }, + "G4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 21.25, + "z": 0 + }, + "H4": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 41.38, + "y": 12.25, + "z": 0 + }, + "A5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 75.25, + "z": 0 + }, + "B5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 66.25, + "z": 0 + }, + "C5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 57.25, + "z": 0 + }, + "D5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 48.25, + "z": 0 + }, + "E5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 39.25, + "z": 0 + }, + "F5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 30.25, + "z": 0 + }, + "G5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 21.25, + "z": 0 + }, + "H5": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 50.38, + "y": 12.25, + "z": 0 + }, + "A6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 75.25, + "z": 0 + }, + "B6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 66.25, + "z": 0 + }, + "C6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 57.25, + "z": 0 + }, + "D6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 48.25, + "z": 0 + }, + "E6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 39.25, + "z": 0 + }, + "F6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 30.25, + "z": 0 + }, + "G6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 21.25, + "z": 0 + }, + "H6": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 59.38, + "y": 12.25, + "z": 0 + }, + "A7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 75.25, + "z": 0 + }, + "B7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 66.25, + "z": 0 + }, + "C7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 57.25, + "z": 0 + }, + "D7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 48.25, + "z": 0 + }, + "E7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 39.25, + "z": 0 + }, + "F7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 30.25, + "z": 0 + }, + "G7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 21.25, + "z": 0 + }, + "H7": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 68.38, + "y": 12.25, + "z": 0 + }, + "A8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 75.25, + "z": 0 + }, + "B8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 66.25, + "z": 0 + }, + "C8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 57.25, + "z": 0 + }, + "D8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 48.25, + "z": 0 + }, + "E8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 39.25, + "z": 0 + }, + "F8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 30.25, + "z": 0 + }, + "G8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 21.25, + "z": 0 + }, + "H8": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 77.38, + "y": 12.25, + "z": 0 + }, + "A9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 75.25, + "z": 0 + }, + "B9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 66.25, + "z": 0 + }, + "C9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 57.25, + "z": 0 + }, + "D9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 48.25, + "z": 0 + }, + "E9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 39.25, + "z": 0 + }, + "F9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 30.25, + "z": 0 + }, + "G9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 21.25, + "z": 0 + }, + "H9": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 86.38, + "y": 12.25, + "z": 0 + }, + "A10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 75.25, + "z": 0 + }, + "B10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 66.25, + "z": 0 + }, + "C10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 57.25, + "z": 0 + }, + "D10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 48.25, + "z": 0 + }, + "E10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 39.25, + "z": 0 + }, + "F10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 30.25, + "z": 0 + }, + "G10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 21.25, + "z": 0 + }, + "H10": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 95.38, + "y": 12.25, + "z": 0 + }, + "A11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 75.25, + "z": 0 + }, + "B11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 66.25, + "z": 0 + }, + "C11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 57.25, + "z": 0 + }, + "D11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 48.25, + "z": 0 + }, + "E11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 39.25, + "z": 0 + }, + "F11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 30.25, + "z": 0 + }, + "G11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 21.25, + "z": 0 + }, + "H11": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 104.38, + "y": 12.25, + "z": 0 + }, + "A12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 75.25, + "z": 0 + }, + "B12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 66.25, + "z": 0 + }, + "C12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 57.25, + "z": 0 + }, + "D12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 48.25, + "z": 0 + }, + "E12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 39.25, + "z": 0 + }, + "F12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 30.25, + "z": 0 + }, + "G12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 21.25, + "z": 0 + }, + "H12": { + "depth": 51, + "totalLiquidVolume": 1000, + "shape": "circular", + "diameter": 7, + "x": 113.38, + "y": 12.25, + "z": 0 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["stackingOnly"], + "isTiprack": false, + "tipLength": 51.0, + "tipOverlap": 10.0, + "isMagneticModuleCompatible": false, + "loadName": "ev_resin_tips_flex_96_labware" + }, + "namespace": "opentrons", + "allowedRoles": ["labware"], + "version": 1, + "stackLimit": 5, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "gripHeightFromLabwareBottom": 27, + "gripForce": 15, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 8 + } + } + }, + "stackingOffsetWithLabware": { + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 22.5 + }, + "nest_1_reservoir_195ml": { + "x": 0, + "y": 0, + "z": 22.5 + }, + "ev_resin_tips_flex_short_adapter": { + "x": 0, + "y": 0, + "z": 18.5 + }, + "ev_resin_tips_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 71.78 + }, + "ev_resin_tips_flex_tall_adapter": { + "x": 0, + "y": 0, + "z": 18.5 + } + } +} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json new file mode 100644 index 00000000000..edbb5341676 --- /dev/null +++ b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json @@ -0,0 +1,44 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00254"], + "links": [ + "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" + ] + }, + "metadata": { + "displayName": "Opentrons Flex EV Resin Tips Tall Adapter for Third-party Evotips in 96 Tip Rack Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 98, + "zDimension": 132 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["tiprackAdapterFor96Channel", "stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "ev_resin_tips_flex_96_tiprack_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json new file mode 100644 index 00000000000..5979a2e83e0 --- /dev/null +++ b/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json @@ -0,0 +1,44 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00254"], + "links": [ + "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" + ] + }, + "metadata": { + "displayName": "Opentrons Flex EV Resin Tips Short Adapter for Third-party Evotips", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 130.5, + "yDimension": 98, + "zDimension": 51.5 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "ev_resin_tips_flex_short_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -0.19, + "y": -0.19, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json new file mode 100644 index 00000000000..49a316c1c31 --- /dev/null +++ b/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json @@ -0,0 +1,44 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00254"], + "links": [ + "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" + ] + }, + "metadata": { + "displayName": "Opentrons Flex EV Resin Tips Tall Adapter for Third-party Evotips", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 130.5, + "yDimension": 98, + "zDimension": 67.5 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "ev_resin_tips_flex_tall_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -0.19, + "y": -0.19, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json new file mode 100644 index 00000000000..8d25376a0a4 --- /dev/null +++ b/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "namespace": "opentrons", + "schemaVersion": 2, + "version": 1, + "metadata": { + "displayName": "GEB 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "displayCategory": "tipRack", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 100.25 + }, + "parameters": { + "format": "96Standard", + "isTiprack": true, + "isMagneticModuleCompatible": false, + "tipLength": 87.9, + "tipOverlap": 11.2, + "loadName": "geb_96_tiprack_1000ul" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 11.2, + "z": 18.25 + }, + "G1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 20.2, + "z": 18.25 + }, + "F1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 29.2, + "z": 18.25 + }, + "E1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 38.2, + "z": 18.25 + }, + "D1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 47.2, + "z": 18.25 + }, + "C1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 56.2, + "z": 18.25 + }, + "B1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 65.2, + "z": 18.25 + }, + "A1": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 14.2, + "y": 74.2, + "z": 18.25 + }, + "H2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 11.2, + "z": 18.25 + }, + "G2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 20.2, + "z": 18.25 + }, + "F2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 29.2, + "z": 18.25 + }, + "E2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 38.2, + "z": 18.25 + }, + "D2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 47.2, + "z": 18.25 + }, + "C2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 56.2, + "z": 18.25 + }, + "B2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 65.2, + "z": 18.25 + }, + "A2": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 23.2, + "y": 74.2, + "z": 18.25 + }, + "H3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 11.2, + "z": 18.25 + }, + "G3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 20.2, + "z": 18.25 + }, + "F3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 29.2, + "z": 18.25 + }, + "E3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 38.2, + "z": 18.25 + }, + "D3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 47.2, + "z": 18.25 + }, + "C3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 56.2, + "z": 18.25 + }, + "B3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 65.2, + "z": 18.25 + }, + "A3": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 32.2, + "y": 74.2, + "z": 18.25 + }, + "H4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 11.2, + "z": 18.25 + }, + "G4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 20.2, + "z": 18.25 + }, + "F4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 29.2, + "z": 18.25 + }, + "E4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 38.2, + "z": 18.25 + }, + "D4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 47.2, + "z": 18.25 + }, + "C4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 56.2, + "z": 18.25 + }, + "B4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 65.2, + "z": 18.25 + }, + "A4": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 41.2, + "y": 74.2, + "z": 18.25 + }, + "H5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 11.2, + "z": 18.25 + }, + "G5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 20.2, + "z": 18.25 + }, + "F5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 29.2, + "z": 18.25 + }, + "E5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 38.2, + "z": 18.25 + }, + "D5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 47.2, + "z": 18.25 + }, + "C5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 56.2, + "z": 18.25 + }, + "B5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 65.2, + "z": 18.25 + }, + "A5": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 50.2, + "y": 74.2, + "z": 18.25 + }, + "H6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 11.2, + "z": 18.25 + }, + "G6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 20.2, + "z": 18.25 + }, + "F6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 29.2, + "z": 18.25 + }, + "E6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 38.2, + "z": 18.25 + }, + "D6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 47.2, + "z": 18.25 + }, + "C6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 56.2, + "z": 18.25 + }, + "B6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 65.2, + "z": 18.25 + }, + "A6": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 59.2, + "y": 74.2, + "z": 18.25 + }, + "H7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 11.2, + "z": 18.25 + }, + "G7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 20.2, + "z": 18.25 + }, + "F7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 29.2, + "z": 18.25 + }, + "E7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 38.2, + "z": 18.25 + }, + "D7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 47.2, + "z": 18.25 + }, + "C7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 56.2, + "z": 18.25 + }, + "B7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 65.2, + "z": 18.25 + }, + "A7": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 68.2, + "y": 74.2, + "z": 18.25 + }, + "H8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 11.2, + "z": 18.25 + }, + "G8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 20.2, + "z": 18.25 + }, + "F8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 29.2, + "z": 18.25 + }, + "E8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 38.2, + "z": 18.25 + }, + "D8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 47.2, + "z": 18.25 + }, + "C8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 56.2, + "z": 18.25 + }, + "B8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 65.2, + "z": 18.25 + }, + "A8": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 77.2, + "y": 74.2, + "z": 18.25 + }, + "H9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 11.2, + "z": 18.25 + }, + "G9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 20.2, + "z": 18.25 + }, + "F9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 29.2, + "z": 18.25 + }, + "E9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 38.2, + "z": 18.25 + }, + "D9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 47.2, + "z": 18.25 + }, + "C9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 56.2, + "z": 18.25 + }, + "B9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 65.2, + "z": 18.25 + }, + "A9": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 86.2, + "y": 74.2, + "z": 18.25 + }, + "H10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 11.2, + "z": 18.25 + }, + "G10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 20.2, + "z": 18.25 + }, + "F10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 29.2, + "z": 18.25 + }, + "E10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 38.2, + "z": 18.25 + }, + "D10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 47.2, + "z": 18.25 + }, + "C10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 56.2, + "z": 18.25 + }, + "B10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 65.2, + "z": 18.25 + }, + "A10": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 95.2, + "y": 74.2, + "z": 18.25 + }, + "H11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 11.2, + "z": 18.25 + }, + "G11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 20.2, + "z": 18.25 + }, + "F11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 29.2, + "z": 18.25 + }, + "E11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 38.2, + "z": 18.25 + }, + "D11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 47.2, + "z": 18.25 + }, + "C11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 56.2, + "z": 18.25 + }, + "B11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 65.2, + "z": 18.25 + }, + "A11": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 104.2, + "y": 74.2, + "z": 18.25 + }, + "H12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 11.2, + "z": 18.25 + }, + "G12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 20.2, + "z": 18.25 + }, + "F12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 29.2, + "z": 18.25 + }, + "E12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 38.2, + "z": 18.25 + }, + "D12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 47.2, + "z": 18.25 + }, + "C12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 56.2, + "z": 18.25 + }, + "B12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 65.2, + "z": 18.25 + }, + "A12": { + "shape": "circular", + "depth": 82, + "diameter": 7.46, + "totalLiquidVolume": 1000, + "x": 113.2, + "y": 74.2, + "z": 18.25 + } + }, + "brand": { + "brand": "GEB", + "brandId": ["PT1000-1-B"], + "links": ["http://www.ge-bio.com/product/showproduct.php?lang=en&id=188"] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json b/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json new file mode 100644 index 00000000000..4c47a9999c4 --- /dev/null +++ b/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "metadata": { + "displayName": "GEB 96 Tip Rack 10 µL", + "displayVolumeUnits": "µL", + "displayCategory": "tipRack", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 52.25 + }, + "parameters": { + "format": "96Standard", + "isTiprack": true, + "isMagneticModuleCompatible": false, + "tipLength": 39.2, + "tipOverlap": 6.2, + "loadName": "geb_96_tiprack_10ul" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.25, + "z": 22.25 + }, + "G1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.25, + "z": 22.25 + }, + "F1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.25, + "z": 22.25 + }, + "E1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.25, + "z": 22.25 + }, + "D1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.25, + "z": 22.25 + }, + "C1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.25, + "z": 22.25 + }, + "B1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.25, + "z": 22.25 + }, + "A1": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.25, + "z": 22.25 + }, + "H2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.25, + "z": 22.25 + }, + "G2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.25, + "z": 22.25 + }, + "F2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.25, + "z": 22.25 + }, + "E2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.25, + "z": 22.25 + }, + "D2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.25, + "z": 22.25 + }, + "C2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.25, + "z": 22.25 + }, + "B2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.25, + "z": 22.25 + }, + "A2": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.25, + "z": 22.25 + }, + "H3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.25, + "z": 22.25 + }, + "G3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.25, + "z": 22.25 + }, + "F3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.25, + "z": 22.25 + }, + "E3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.25, + "z": 22.25 + }, + "D3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.25, + "z": 22.25 + }, + "C3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.25, + "z": 22.25 + }, + "B3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.25, + "z": 22.25 + }, + "A3": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.25, + "z": 22.25 + }, + "H4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.25, + "z": 22.25 + }, + "G4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.25, + "z": 22.25 + }, + "F4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.25, + "z": 22.25 + }, + "E4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.25, + "z": 22.25 + }, + "D4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.25, + "z": 22.25 + }, + "C4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.25, + "z": 22.25 + }, + "B4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.25, + "z": 22.25 + }, + "A4": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.25, + "z": 22.25 + }, + "H5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.25, + "z": 22.25 + }, + "G5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.25, + "z": 22.25 + }, + "F5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.25, + "z": 22.25 + }, + "E5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.25, + "z": 22.25 + }, + "D5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.25, + "z": 22.25 + }, + "C5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.25, + "z": 22.25 + }, + "B5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.25, + "z": 22.25 + }, + "A5": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.25, + "z": 22.25 + }, + "H6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.25, + "z": 22.25 + }, + "G6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.25, + "z": 22.25 + }, + "F6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.25, + "z": 22.25 + }, + "E6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.25, + "z": 22.25 + }, + "D6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.25, + "z": 22.25 + }, + "C6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.25, + "z": 22.25 + }, + "B6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.25, + "z": 22.25 + }, + "A6": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.25, + "z": 22.25 + }, + "H7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.25, + "z": 22.25 + }, + "G7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.25, + "z": 22.25 + }, + "F7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.25, + "z": 22.25 + }, + "E7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.25, + "z": 22.25 + }, + "D7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.25, + "z": 22.25 + }, + "C7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.25, + "z": 22.25 + }, + "B7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.25, + "z": 22.25 + }, + "A7": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.25, + "z": 22.25 + }, + "H8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.25, + "z": 22.25 + }, + "G8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.25, + "z": 22.25 + }, + "F8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.25, + "z": 22.25 + }, + "E8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.25, + "z": 22.25 + }, + "D8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.25, + "z": 22.25 + }, + "C8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.25, + "z": 22.25 + }, + "B8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.25, + "z": 22.25 + }, + "A8": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.25, + "z": 22.25 + }, + "H9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.25, + "z": 22.25 + }, + "G9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.25, + "z": 22.25 + }, + "F9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.25, + "z": 22.25 + }, + "E9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.25, + "z": 22.25 + }, + "D9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.25, + "z": 22.25 + }, + "C9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.25, + "z": 22.25 + }, + "B9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.25, + "z": 22.25 + }, + "A9": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.25, + "z": 22.25 + }, + "H10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.25, + "z": 22.25 + }, + "G10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.25, + "z": 22.25 + }, + "F10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.25, + "z": 22.25 + }, + "E10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.25, + "z": 22.25 + }, + "D10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.25, + "z": 22.25 + }, + "C10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.25, + "z": 22.25 + }, + "B10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.25, + "z": 22.25 + }, + "A10": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.25, + "z": 22.25 + }, + "H11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.25, + "z": 22.25 + }, + "G11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.25, + "z": 22.25 + }, + "F11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.25, + "z": 22.25 + }, + "E11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.25, + "z": 22.25 + }, + "D11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.25, + "z": 22.25 + }, + "C11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.25, + "z": 22.25 + }, + "B11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.25, + "z": 22.25 + }, + "A11": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.25, + "z": 22.25 + }, + "H12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.25, + "z": 22.25 + }, + "G12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.25, + "z": 22.25 + }, + "F12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.25, + "z": 22.25 + }, + "E12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.25, + "z": 22.25 + }, + "D12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.25, + "z": 22.25 + }, + "C12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.25, + "z": 22.25 + }, + "B12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.25, + "z": 22.25 + }, + "A12": { + "shape": "circular", + "depth": 34, + "diameter": 3.46, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.25, + "z": 22.25 + } + }, + "brand": { + "brand": "GEB", + "brandId": ["PT0010-9-N"], + "links": ["http://www.ge-bio.com/product/showproduct.php?lang=en&id=196"] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json new file mode 100644 index 00000000000..f3fdadfc5d0 --- /dev/null +++ b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json @@ -0,0 +1,1216 @@ +{ + "brand": { "brand": "ibidi", "brandId": ["89626", "89621"] }, + "wells": { + "A1": { + "x": 14.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A2": { + "x": 23.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A3": { + "x": 32.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A4": { + "x": 41.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A5": { + "x": 50.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A6": { + "x": 59.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A7": { + "x": 68.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A8": { + "x": 77.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A9": { + "x": 86.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B1": { + "x": 14.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B2": { + "x": 23.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B3": { + "x": 32.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B4": { + "x": 41.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B5": { + "x": 50.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B6": { + "x": 59.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B7": { + "x": 68.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B8": { + "x": 77.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B9": { + "x": 86.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C1": { + "x": 14.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C2": { + "x": 23.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C3": { + "x": 32.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C4": { + "x": 41.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C5": { + "x": 50.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C6": { + "x": 59.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C7": { + "x": 68.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C8": { + "x": 77.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C9": { + "x": 86.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D1": { + "x": 14.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D2": { + "x": 23.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D3": { + "x": 32.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D4": { + "x": 41.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D5": { + "x": 50.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D6": { + "x": 59.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D7": { + "x": 68.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D8": { + "x": 77.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D9": { + "x": 86.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E1": { + "x": 14.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E2": { + "x": 23.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E3": { + "x": 32.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E4": { + "x": 41.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E5": { + "x": 50.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E6": { + "x": 59.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E7": { + "x": 68.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E8": { + "x": 77.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E9": { + "x": 86.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F1": { + "x": 14.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F2": { + "x": 23.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F3": { + "x": 32.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F4": { + "x": 41.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F5": { + "x": 50.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F6": { + "x": 59.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F7": { + "x": 68.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F8": { + "x": 77.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F9": { + "x": 86.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G1": { + "x": 14.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G2": { + "x": 23.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G3": { + "x": 32.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G4": { + "x": 41.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G5": { + "x": 50.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G6": { + "x": 59.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G7": { + "x": 68.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G8": { + "x": 77.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G9": { + "x": 86.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H1": { + "x": 14.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H2": { + "x": 23.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H3": { + "x": 32.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H4": { + "x": 41.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H5": { + "x": 50.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H6": { + "x": 59.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H7": { + "x": 68.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H8": { + "x": 77.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H9": { + "x": 86.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A10": { + "x": 95.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A11": { + "x": 104.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "A12": { + "x": 113.38, + "y": 74.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B10": { + "x": 95.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B11": { + "x": 104.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "B12": { + "x": 113.38, + "y": 65.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C10": { + "x": 95.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C11": { + "x": 104.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "C12": { + "x": 113.38, + "y": 56.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D10": { + "x": 95.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D11": { + "x": 104.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "D12": { + "x": 113.38, + "y": 47.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E10": { + "x": 95.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E11": { + "x": 104.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "E12": { + "x": 113.38, + "y": 38.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F10": { + "x": 95.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F11": { + "x": 104.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "F12": { + "x": 113.38, + "y": 29.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G10": { + "x": 95.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G11": { + "x": 104.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "G12": { + "x": 113.38, + "y": 20.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H10": { + "x": 95.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H11": { + "x": 104.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + }, + "H12": { + "x": 113.38, + "y": 11.24, + "z": 1, + "depth": 12.9, + "shape": "rectangular", + "xDimension": 7.4, + "yDimension": 7.4, + "totalLiquidVolume": 300, + "geometryDefinitionId": "rectangularWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { "wellBottomShape": "flat" } + } + ], + "version": 2, + "metadata": { + "tags": [], + "displayName": "ibidi 96 Square Well Flat Bottom Plate 300 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL" + }, + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "gripForce": 15, + "namespace": "opentrons", + "dimensions": { "xDimension": 127.76, "yDimension": 85.47, "zDimension": 15 }, + "parameters": { + "format": "96Standard", + "quirks": [], + "loadName": "ibidi_96_square_well_plate_300ul", + "isTiprack": false, + "isMagneticModuleCompatible": false + }, + "schemaVersion": 2, + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { "x": 0, "y": 0, "z": 8.25 } + }, + "innerLabwareGeometry": { + "rectangularWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 7.4, + "topYDimension": 7.4, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "topHeight": 12.9, + "bottomHeight": 0 + } + ] + } + }, + "gripHeightFromLabwareBottom": 5.2 +} diff --git a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json new file mode 100644 index 00000000000..9bd9447a498 --- /dev/null +++ b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json @@ -0,0 +1,110 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "ibidi", + "brandId": [] + }, + "metadata": { + "displayName": "ibidi 96 Square Well Flat Bottom Plate 300 µL Lid", + "displayCategory": "lid", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "dimensions": { + "xDimension": 127, + "yDimension": 84.5, + "zDimension": 6.95 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "parameters": { + "format": "irregular", + "quirks": ["stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "ibidi_96_square_well_plate_300ul_lid" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "ibidi_96_square_well_plate_300ul_lid": { + "x": 0, + "y": 0, + "z": 1.2 + }, + "ibidi_96_square_well_plate_300ul": { + "x": 0, + "y": 0, + "z": 4.75 + }, + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackLimit": 5, + "compatibleParentLabware": [ + "protocol_engine_lid_stack_object", + "opentrons_flex_deck_riser", + "ibidi_96_square_well_plate_300ul", + "ibidi_96_square_well_plate_300ul_lid" + ], + "gripForce": 10, + "gripHeightFromLabwareBottom": 5, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": -6 + } + }, + "lidOffsets": { + "pickUpOffset": { + "x": 0.5, + "y": 0, + "z": -5 + }, + "dropOffset": { + "x": 0.5, + "y": 0, + "z": -1 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json b/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json new file mode 100644 index 00000000000..11341d8d395 --- /dev/null +++ b/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json @@ -0,0 +1,1018 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "MILLIPLEX", + "brandId": [] + }, + "metadata": { + "displayName": "MILLIPLEX Microtiter Plate", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 14.4 + }, + "wells": { + "A1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 74.24, + "z": 3.5 + }, + "B1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 65.24, + "z": 3.5 + }, + "C1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 56.24, + "z": 3.5 + }, + "D1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 47.24, + "z": 3.5 + }, + "E1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 38.24, + "z": 3.5 + }, + "F1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 29.24, + "z": 3.5 + }, + "G1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 20.24, + "z": 3.5 + }, + "H1": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 14.38, + "y": 11.24, + "z": 3.5 + }, + "A2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 74.24, + "z": 3.5 + }, + "B2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 65.24, + "z": 3.5 + }, + "C2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 56.24, + "z": 3.5 + }, + "D2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 47.24, + "z": 3.5 + }, + "E2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 38.24, + "z": 3.5 + }, + "F2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 29.24, + "z": 3.5 + }, + "G2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 20.24, + "z": 3.5 + }, + "H2": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 23.38, + "y": 11.24, + "z": 3.5 + }, + "A3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 74.24, + "z": 3.5 + }, + "B3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 65.24, + "z": 3.5 + }, + "C3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 56.24, + "z": 3.5 + }, + "D3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 47.24, + "z": 3.5 + }, + "E3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 38.24, + "z": 3.5 + }, + "F3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 29.24, + "z": 3.5 + }, + "G3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 20.24, + "z": 3.5 + }, + "H3": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 32.38, + "y": 11.24, + "z": 3.5 + }, + "A4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 74.24, + "z": 3.5 + }, + "B4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 65.24, + "z": 3.5 + }, + "C4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 56.24, + "z": 3.5 + }, + "D4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 47.24, + "z": 3.5 + }, + "E4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 38.24, + "z": 3.5 + }, + "F4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 29.24, + "z": 3.5 + }, + "G4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 20.24, + "z": 3.5 + }, + "H4": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 41.38, + "y": 11.24, + "z": 3.5 + }, + "A5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 74.24, + "z": 3.5 + }, + "B5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 65.24, + "z": 3.5 + }, + "C5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 56.24, + "z": 3.5 + }, + "D5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 47.24, + "z": 3.5 + }, + "E5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 38.24, + "z": 3.5 + }, + "F5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 29.24, + "z": 3.5 + }, + "G5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 20.24, + "z": 3.5 + }, + "H5": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 50.38, + "y": 11.24, + "z": 3.5 + }, + "A6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 74.24, + "z": 3.5 + }, + "B6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 65.24, + "z": 3.5 + }, + "C6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 56.24, + "z": 3.5 + }, + "D6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 47.24, + "z": 3.5 + }, + "E6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 38.24, + "z": 3.5 + }, + "F6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 29.24, + "z": 3.5 + }, + "G6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 20.24, + "z": 3.5 + }, + "H6": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 59.38, + "y": 11.24, + "z": 3.5 + }, + "A7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 74.24, + "z": 3.5 + }, + "B7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 65.24, + "z": 3.5 + }, + "C7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 56.24, + "z": 3.5 + }, + "D7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 47.24, + "z": 3.5 + }, + "E7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 38.24, + "z": 3.5 + }, + "F7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 29.24, + "z": 3.5 + }, + "G7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 20.24, + "z": 3.5 + }, + "H7": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 68.38, + "y": 11.24, + "z": 3.5 + }, + "A8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 74.24, + "z": 3.5 + }, + "B8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 65.24, + "z": 3.5 + }, + "C8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 56.24, + "z": 3.5 + }, + "D8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 47.24, + "z": 3.5 + }, + "E8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 38.24, + "z": 3.5 + }, + "F8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 29.24, + "z": 3.5 + }, + "G8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 20.24, + "z": 3.5 + }, + "H8": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 77.38, + "y": 11.24, + "z": 3.5 + }, + "A9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 74.24, + "z": 3.5 + }, + "B9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 65.24, + "z": 3.5 + }, + "C9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 56.24, + "z": 3.5 + }, + "D9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 47.24, + "z": 3.5 + }, + "E9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 38.24, + "z": 3.5 + }, + "F9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 29.24, + "z": 3.5 + }, + "G9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 20.24, + "z": 3.5 + }, + "H9": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 86.38, + "y": 11.24, + "z": 3.5 + }, + "A10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 74.24, + "z": 3.5 + }, + "B10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 65.24, + "z": 3.5 + }, + "C10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 56.24, + "z": 3.5 + }, + "D10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 47.24, + "z": 3.5 + }, + "E10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 38.24, + "z": 3.5 + }, + "F10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 29.24, + "z": 3.5 + }, + "G10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 20.24, + "z": 3.5 + }, + "H10": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 95.38, + "y": 11.24, + "z": 3.5 + }, + "A11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 74.24, + "z": 3.5 + }, + "B11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 65.24, + "z": 3.5 + }, + "C11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 56.24, + "z": 3.5 + }, + "D11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 47.24, + "z": 3.5 + }, + "E11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 38.24, + "z": 3.5 + }, + "F11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 29.24, + "z": 3.5 + }, + "G11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 20.24, + "z": 3.5 + }, + "H11": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 104.38, + "y": 11.24, + "z": 3.5 + }, + "A12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 74.24, + "z": 3.5 + }, + "B12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 65.24, + "z": 3.5 + }, + "C12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 56.24, + "z": 3.5 + }, + "D12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 47.24, + "z": 3.5 + }, + "E12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 38.24, + "z": 3.5 + }, + "F12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 29.24, + "z": 3.5 + }, + "G12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 20.24, + "z": 3.5 + }, + "H12": { + "depth": 10.9, + "totalLiquidVolume": 392, + "shape": "circular", + "diameter": 6.96, + "x": 113.38, + "y": 11.24, + "z": 3.5 + } + }, + "groups": [ + { + "metadata": { "wellBottomShape": "flat" }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "milliplex_microtiter_plate" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter_type_b": { + "x": 0, + "y": 0, + "z": 3.3 + } + } +} diff --git a/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json b/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json new file mode 100644 index 00000000000..de3d7d66491 --- /dev/null +++ b/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json @@ -0,0 +1,110 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "MILLIPLEX", + "brandId": [] + }, + "metadata": { + "displayName": "MILLIPLEX Microtiter Plate Lid", + "displayCategory": "lid", + "displayVolumeUnits": "\u00b5L", + "tags": [] + }, + "dimensions": { + "xDimension": 127.5, + "yDimension": 85, + "zDimension": 10 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": -0.71 + }, + "parameters": { + "format": "irregular", + "quirks": ["stackingMaxFive"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "milliplex_microtiter_plate_lid" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "milliplex_microtiter_plate": { + "x": 0, + "y": 0, + "z": 7.4 + }, + "milliplex_microtiter_plate_lid": { + "x": 0, + "y": 0, + "z": 1 + }, + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackLimit": 5, + "compatibleParentLabware": [ + "protocol_engine_lid_stack_object", + "opentrons_flex_deck_riser", + "milliplex_microtiter_plate", + "milliplex_microtiter_plate_lid" + ], + "gripForce": 10, + "gripHeightFromLabwareBottom": 7, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": -5 + } + }, + "lidOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": -5 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": -5 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json new file mode 100644 index 00000000000..9c7cd7691f2 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json @@ -0,0 +1,226 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["360102"], + "links": ["https://www.nest-biotech.com/reagent-reserviors/59178414.html"] + }, + "metadata": { + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 14.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 23.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 32.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 41.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 50.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 59.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 68.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 77.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 86.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 95.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 104.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 71.2, + "totalLiquidVolume": 15000, + "x": 113.38, + "y": 42.78, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_12_reservoir_15ml" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.35, + "topYDimension": 71.25, + "bottomXDimension": 7.95, + "bottomYDimension": 70.53, + "topHeight": 26.85, + "bottomHeight": 2.05 + }, + { + "shape": "cuboidal", + "topXDimension": 7.95, + "topYDimension": 70.53, + "bottomXDimension": 1.87, + "bottomYDimension": 64.45, + "topHeight": 2.05, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json new file mode 100644 index 00000000000..39a4dc9c450 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json @@ -0,0 +1,232 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["360262"] + }, + "metadata": { + "displayName": "NEST 12 Well Reservoir 22 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 44.4 + }, + "wells": { + "A1": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 14.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 23.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 32.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 41.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 50.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 59.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 68.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 77.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 86.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 95.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 104.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 39.55, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 8, + "yDimension": 71.5, + "x": 113.38, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ] + } + ], + "parameters": { + "format": "trough", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "nest_12_reservoir_22ml" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 10.22 + } + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8, + "topYDimension": 71.5, + "bottomXDimension": 8, + "bottomYDimension": 71.5, + "topHeight": 39.55, + "bottomHeight": 3 + }, + { + "shape": "cuboidal", + "topXDimension": 8, + "topYDimension": 71.5, + "bottomXDimension": 2, + "bottomYDimension": 65.5, + "topHeight": 3, + "bottomHeight": 0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json new file mode 100644 index 00000000000..07e20738fe1 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json @@ -0,0 +1,83 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "NEST", + "brandId": ["360103"], + "links": ["https://www.nest-biotech.com/reagent-reserviors/59178416.html"] + }, + "metadata": { + "displayName": "NEST 1 Well Reservoir 195 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 16.8, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 106.8, + "yDimension": 71.2, + "totalLiquidVolume": 195000, + "x": 63.88, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1"] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_1_reservoir_195ml" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 71.3, + "topYDimension": 107.3, + "bottomXDimension": 70.6, + "bottomYDimension": 106.8, + "topHeight": 26.85, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 9, + "topYDimension": 9, + "bottomXDimension": 1.93, + "bottomYDimension": 1.93, + "topHeight": 2, + "bottomHeight": 0, + "xCount": 12, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json new file mode 100644 index 00000000000..5769b697711 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json @@ -0,0 +1,80 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "NEST", + "brandId": ["360206", "360266"], + "links": ["https://www.nest-biotech.com/reagent-reserviors"] + }, + "metadata": { + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "xDimension": 106.8, + "yDimension": 71.2, + "totalLiquidVolume": 290000, + "x": 63.88, + "y": 42.74, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1"] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_1_reservoir_290ml" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.76, + "topYDimension": 71.1, + "bottomXDimension": 106.75, + "bottomYDimension": 70.75, + "topHeight": 39.55, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 7.75, + "topYDimension": 70.75, + "bottomXDimension": 3.127, + "bottomYDimension": 66.85, + "topHeight": 2.0, + "bottomHeight": 0.0, + "xCount": 12 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json b/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json new file mode 100644 index 00000000000..f4e7fb91b5a --- /dev/null +++ b/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json @@ -0,0 +1,386 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "NEST", + "brandId": ["504361"] + }, + "metadata": { + "displayName": "NEST 24 Well Plate 10.4mL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.2, + "yDimension": 84.9, + "zDimension": 44 + }, + "wells": { + "A1": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 18.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 18.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 18.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 18.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 36.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B2": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 36.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C2": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 36.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D2": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 36.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 54.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B3": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 54.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C3": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 54.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D3": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 54.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 72.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B4": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 72.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C4": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 72.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D4": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 72.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 90.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B5": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 90.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C5": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 90.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D5": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 90.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 108.6, + "y": 71.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "B6": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 108.6, + "y": 53.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "C6": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 108.6, + "y": 35.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + }, + "D6": { + "depth": 40.85, + "totalLiquidVolume": 10400, + "shape": "rectangular", + "xDimension": 17, + "yDimension": 17, + "x": 108.6, + "y": 17.03, + "z": 3.15, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "nest_24_wellplate_10.4ml" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 9.219999999999999 + } + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 17, + "topYDimension": 17, + "bottomXDimension": 16.7, + "bottomYDimension": 16.7, + "topHeight": 40.85, + "bottomHeight": 19.85 + }, + { + "shape": "squaredcone", + "bottomCrossSection": "circular", + "circleDiameter": 16.7, + "rectangleXDimension": 16.7, + "rectangleYDimension": 16.7, + "topHeight": 19.85, + "bottomHeight": 14.4, + "xCount": 1, + "yCount": 1 + }, + { + "shape": "conical", + "bottomDiameter": 13.9, + "topDiameter": 16.7, + "topHeight": 14.4, + "bottomHeight": 3.77 + }, + { + "shape": "conical", + "bottomDiameter": 0, + "topDiameter": 13.9, + "topHeight": 3.77, + "bottomHeight": 0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json new file mode 100644 index 00000000000..fe5a60b16cd --- /dev/null +++ b/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json @@ -0,0 +1,162 @@ +{ + "ordering": [["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"]], + "brand": { + "brand": "NEST", + "brandId": ["360111"] + }, + "metadata": { + "displayName": "NEST 8 Well Reservoir 22 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "wells": { + "A1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 74.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 65.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 56.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 47.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "E1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 38.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "F1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 29.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "G1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 20.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "H1": { + "depth": 26.85, + "totalLiquidVolume": 22000, + "shape": "rectangular", + "xDimension": 107.1, + "yDimension": 8.25, + "x": 64.4, + "y": 11.24, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"] + } + ], + "parameters": { + "format": "trough", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "nest_8_reservoir_22ml" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 10.22 + } + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.1, + "topYDimension": 8, + "bottomXDimension": 107.1, + "bottomYDimension": 8, + "topHeight": 26.85, + "bottomHeight": 3 + }, + { + "shape": "cuboidal", + "topXDimension": 107.1, + "topYDimension": 8, + "bottomXDimension": 101.1, + "bottomYDimension": 2, + "topHeight": 3, + "bottomHeight": 0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json new file mode 100644 index 00000000000..c62c71666e1 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json @@ -0,0 +1,1166 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["402501"], + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] + }, + "metadata": { + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10.65, + "wells": { + "A1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 20, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + }, + "nest_96_wellplate_100ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 3.7 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.26, + "topDiameter": 5.34, + "topHeight": 14.7, + "bottomHeight": 9.89 + }, + { + "shape": "conical", + "bottomDiameter": 2.16, + "topDiameter": 5.26, + "topHeight": 9.89, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.015, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json new file mode 100644 index 00000000000..1db2f633b38 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json @@ -0,0 +1,1145 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["701011"], + "links": ["https://www.nest-biotech.com/cell-culture-plates/59415537.html"] + }, + "metadata": { + "displayName": "NEST 96 Well Plate 200 µL Flat", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.56, + "yDimension": 85.36, + "zDimension": 14.3 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 11.8, + "wells": { + "A1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 74.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 65.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 56.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 47.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 38.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 29.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 20.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.28, + "y": 11.18, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "nest_96_wellplate_200ul_flat" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_flat_bottom_adapter": { + "x": 0, + "y": 0, + "z": 6.7 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 5.55 + }, + "nest_96_wellplate_200ul_flat": { + "x": 0, + "y": 0, + "z": 1.66 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 6.32, + "topDiameter": 6.85, + "topHeight": 10.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json new file mode 100644 index 00000000000..6b80fd36789 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json @@ -0,0 +1,1261 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["503001", "503501"], + "links": ["https://www.nest-biotech.com/deep-well-plates/59253726.html"] + }, + "metadata": { + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 21.9, + "wells": { + "A1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 74.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "B12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 65.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "C12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 56.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "D12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 47.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "E12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 38.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "F12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 29.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "G12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 20.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + }, + "H12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 11.15, + "z": 3, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": true, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8 + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + }, + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.2, + "topYDimension": 8.2, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "topHeight": 38.05, + "bottomHeight": 1.67 + }, + { + "shape": "cuboidal", + "topXDimension": 7.4, + "topYDimension": 7.4, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "topHeight": 1.67, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json new file mode 100644 index 00000000000..50486d91c49 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json @@ -0,0 +1,232 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3"], + ["A4", "B4"] + ], + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "metadata": { + "displayName": "Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 124.35 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical" + }, + "wells": { + "A1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "B1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "C1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "A2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "B2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "C2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "A3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 71.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "B3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 71.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "A4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 106.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "B4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 106.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": ["A1", "B1", "C1", "A2", "B2", "C2"], + "metadata": { + "displayName": "Falcon 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352095", "352096", "352097", "352099", "352196"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + }, + { + "wells": ["A3", "B3", "A4", "B4"], + "metadata": { + "displayName": "Falcon 4x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352070", "352098"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "15mlconicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 14.5, + "topDiameter": 14.7, + "topHeight": 118.2, + "bottomHeight": 108.6 + }, + { + "shape": "conical", + "bottomDiameter": 13.5, + "topDiameter": 14.5, + "topHeight": 108.6, + "bottomHeight": 20.7 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 13.5, + "topHeight": 20.7, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.9, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + }, + "50mlconicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 27.52, + "topDiameter": 27.81, + "topHeight": 112.85, + "bottomHeight": 100.65 + }, + { + "shape": "conical", + "bottomDiameter": 26.18, + "topDiameter": 27.52, + "topHeight": 100.65, + "bottomHeight": 14.3 + }, + { + "shape": "conical", + "bottomDiameter": 6.15, + "topDiameter": 26.18, + "topHeight": 14.3, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json new file mode 100644 index 00000000000..8b9dcc3a030 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json @@ -0,0 +1,162 @@ +{ + "wells": { + "A1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 19, + "y": 74, + "z": 5.78 + }, + "B1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 19, + "y": 42.5, + "z": 5.78 + }, + "C1": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 19, + "y": 11, + "z": 5.78 + }, + "A2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 42, + "y": 74, + "z": 5.78 + }, + "B2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 42, + "y": 42.5, + "z": 5.78 + }, + "C2": { + "totalLiquidVolume": 15000, + "diameter": 14.9, + "shape": "circular", + "depth": 117.98, + "x": 42, + "y": 11, + "z": 5.78 + }, + "A3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 113.85, + "x": 70.2, + "y": 62.2, + "z": 5.95 + }, + "B3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 113.85, + "x": 70.2, + "y": 16.8, + "z": 5.95 + }, + "A4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 113.85, + "x": 106.1, + "y": 62.2, + "z": 5.95 + }, + "B4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 113.85, + "x": 106.1, + "y": 16.8, + "z": 5.95 + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 10 Tube Rack (Acrylic) with Falcon 4x50 mL, 6x15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 123.76 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic" + }, + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3"], + ["A4", "B4"] + ], + "groups": [ + { + "wells": ["A3", "B3", "A4", "B4"], + "metadata": { + "displayName": "Falcon 4x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352070", "352098"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + }, + { + "wells": ["A1", "B1", "C1", "A2", "B2", "C2"], + "metadata": { + "displayName": "Falcon 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352095", "352096", "352097", "352099", "352196"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json new file mode 100644 index 00000000000..7b800483690 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json @@ -0,0 +1,235 @@ +{ + "wells": { + "A1": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 13.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "B1": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 13.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "C1": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 13.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "A2": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 38.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "B2": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 38.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "C2": { + "totalLiquidVolume": 15000, + "diameter": 15.5, + "shape": "circular", + "depth": 117.8, + "x": 38.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "conicalWell15mL" + }, + "A3": { + "totalLiquidVolume": 50000, + "diameter": 28.18, + "shape": "circular", + "depth": 113.1, + "x": 71.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "conicalWell50mL" + }, + "B3": { + "totalLiquidVolume": 50000, + "diameter": 28.18, + "shape": "circular", + "depth": 113.1, + "x": 71.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "conicalWell50mL" + }, + "A4": { + "totalLiquidVolume": 50000, + "diameter": 28.18, + "shape": "circular", + "depth": 113.1, + "x": 106.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "conicalWell50mL" + }, + "B4": { + "totalLiquidVolume": 50000, + "diameter": 28.18, + "shape": "circular", + "depth": 113.1, + "x": 106.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "conicalWell50mL" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["601052"], + "links": ["https://www.nest-biotech.com/centrifuge-tube/59282849.html"] + }, + "wells": ["A1", "B1", "C1", "A2", "B2", "C2"] + }, + { + "metadata": { + "displayName": "NEST 4x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["602052"], + "links": ["https://www.nest-biotech.com/centrifuge-tube/59282837.html"] + }, + "wells": ["A3", "B3", "A4", "B4"] + } + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 10 Tube Rack with NEST 4x50 mL, 6x15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.65 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical" + }, + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3"], + ["A4", "B4"] + ], + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell15mL": { + "sections": [ + { + "shape": "conical", + "topDiameter": 15.5, + "bottomDiameter": 14.56, + "topHeight": 117.8, + "bottomHeight": 113.8 + }, + { + "shape": "conical", + "topDiameter": 14.56, + "bottomDiameter": 13.8, + "topHeight": 113.8, + "bottomHeight": 22.55 + }, + { + "shape": "conical", + "topDiameter": 13.8, + "bottomDiameter": 2.38, + "topHeight": 22.55, + "bottomHeight": 0.92 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.235, + "topHeight": 0.92, + "bottomHeight": 0.0 + } + ] + }, + "conicalWell50mL": { + "sections": [ + { + "shape": "conical", + "topDiameter": 28.18, + "bottomDiameter": 27.95, + "topHeight": 113.1, + "bottomHeight": 109.1 + }, + { + "shape": "conical", + "topDiameter": 27.95, + "bottomDiameter": 27.69, + "topHeight": 109.1, + "bottomHeight": 108.8 + }, + { + "shape": "conical", + "topDiameter": 27.69, + "bottomDiameter": 26.0, + "topHeight": 108.8, + "bottomHeight": 14.35 + }, + { + "shape": "conical", + "topDiameter": 26.0, + "bottomDiameter": 4.5, + "topHeight": 14.35, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json new file mode 100644 index 00000000000..8b3d9d043dd --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json @@ -0,0 +1,259 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3", "C3"], + ["A4", "B4", "C4"], + ["A5", "B5", "C5"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "tags": [], + "displayName": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL" + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.35 + }, + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "wells": { + "C1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_15_tuberack_falcon_15ml_conical" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "A2", + "B2", + "C2", + "A3", + "B3", + "C3", + "A4", + "B4", + "C4", + "A5", + "B5", + "C5" + ], + "metadata": { + "displayName": "Falcon 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352095", "352096", "352097", "352099", "352196"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 14.5, + "topDiameter": 14.7, + "topHeight": 118.2, + "bottomHeight": 108.6 + }, + { + "shape": "conical", + "bottomDiameter": 13.5, + "topDiameter": 14.5, + "topHeight": 108.6, + "bottomHeight": 20.7 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 13.5, + "topHeight": 20.7, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.9, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json new file mode 100644 index 00000000000..ffd63c57720 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json @@ -0,0 +1,257 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3", "C3"], + ["A4", "B4", "C4"], + ["A5", "B5", "C5"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 15 Tube Rack with NEST 15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.65 + }, + "wells": { + "A1": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 117.8, + "shape": "circular", + "diameter": 15.5, + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 15x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["601052"], + "links": ["https://www.nest-biotech.com/centrifuge-tube/59282849.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "A2", + "B2", + "C2", + "A3", + "B3", + "C3", + "A4", + "B4", + "C4", + "A5", + "B5", + "C5" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_15_tuberack_nest_15ml_conical" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 15.5, + "bottomDiameter": 14.56, + "topHeight": 117.8, + "bottomHeight": 113.8 + }, + { + "shape": "conical", + "topDiameter": 14.56, + "bottomDiameter": 13.8, + "topHeight": 113.8, + "bottomHeight": 22.55 + }, + { + "shape": "conical", + "topDiameter": 13.8, + "bottomDiameter": 2.38, + "topHeight": 22.55, + "bottomHeight": 0.92 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.235, + "topHeight": 0.92, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json new file mode 100644 index 00000000000..9a552225e8d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json @@ -0,0 +1,50 @@ +{ + "ordering": [["A1"]], + "metadata": { + "displayCategory": "trash", + "displayVolumeUnits": "mL", + "displayName": "Opentrons Fixed Trash", + "tags": [] + }, + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 82 + }, + "parameters": { + "format": "trash", + "isTiprack": false, + "loadName": "opentrons_1_trash_1100ml_fixed", + "isMagneticModuleCompatible": false, + "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] + }, + "wells": { + "A1": { + "shape": "rectangular", + "yDimension": 165.67, + "xDimension": 107.11, + "totalLiquidVolume": 1100000, + "depth": 0, + "x": 82.84, + "y": 80, + "z": 82 + } + }, + "brand": { + "brand": "Opentrons" + }, + "groups": [ + { + "wells": ["A1"], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json new file mode 100644 index 00000000000..f78e3fcda82 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json @@ -0,0 +1,50 @@ +{ + "ordering": [["A1"]], + "metadata": { + "displayCategory": "trash", + "displayVolumeUnits": "mL", + "displayName": "Opentrons Fixed Trash", + "tags": [] + }, + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "dimensions": { + "xDimension": 246.5, + "yDimension": 91.5, + "zDimension": 40 + }, + "parameters": { + "format": "trash", + "isTiprack": false, + "loadName": "opentrons_1_trash_3200ml_fixed", + "isMagneticModuleCompatible": false, + "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] + }, + "wells": { + "A1": { + "shape": "rectangular", + "yDimension": 78, + "xDimension": 225, + "totalLiquidVolume": 3200000, + "depth": 40, + "x": 123.25, + "y": 45.75, + "z": 0 + } + }, + "brand": { + "brand": "Opentrons" + }, + "groups": [ + { + "wells": ["A1"], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": -17, + "y": -2.75, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json new file mode 100644 index 00000000000..ea8c15ea66d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json @@ -0,0 +1,50 @@ +{ + "ordering": [["A1"]], + "metadata": { + "displayCategory": "trash", + "displayVolumeUnits": "mL", + "displayName": "Opentrons Short Fixed Trash", + "tags": [] + }, + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 58 + }, + "parameters": { + "format": "trash", + "isTiprack": false, + "loadName": "opentrons_1_trash_850ml_fixed", + "isMagneticModuleCompatible": false, + "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] + }, + "wells": { + "A1": { + "shape": "rectangular", + "yDimension": 165.67, + "xDimension": 107.11, + "totalLiquidVolume": 850000, + "depth": 0, + "x": 82.84, + "y": 80, + "z": 58 + } + }, + "brand": { + "brand": "Opentrons" + }, + "groups": [ + { + "wells": ["A1"], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json new file mode 100644 index 00000000000..9f9c321d117 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json @@ -0,0 +1,352 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "displayVolumeUnits": "mL", + "displayCategory": "aluminumBlock", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 48.7 + }, + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" + }, + "wells": { + "D1": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.88, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.13, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.38, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "shape": "circular", + "depth": 42, + "diameter": 8.5, + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.63, + "z": 6.7, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Generic 2 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.5, + "bottomDiameter": 8.14, + "topHeight": 42.0, + "bottomHeight": 3.04 + }, + { + "shape": "conical", + "topDiameter": 8.14, + "bottomDiameter": 6.5, + "topHeight": 3.04, + "bottomHeight": 2.08 + }, + { + "shape": "conical", + "topDiameter": 6.5, + "bottomDiameter": 1.21, + "topHeight": 2.08, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json new file mode 100644 index 00000000000..82db971ce5f --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json @@ -0,0 +1,370 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 0.5 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.35 + }, + "wells": { + "A1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 107, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 107, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 107, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 107, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x0.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["633001"], + "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_0.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 8.56, + "topHeight": 25.2, + "bottomHeight": 13.95 + }, + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 7.9, + "topHeight": 13.95, + "bottomHeight": 11.9 + }, + { + "shape": "conical", + "topDiameter": 7.9, + "bottomDiameter": 5.8, + "topHeight": 11.9, + "bottomHeight": 10.2 + }, + { + "shape": "conical", + "topDiameter": 5.8, + "bottomDiameter": 2.8, + "topHeight": 10.2, + "bottomHeight": 0.95 + }, + { + "shape": "conical", + "topDiameter": 2.8, + "bottomDiameter": 2, + "topHeight": 0.95, + "bottomHeight": 0.14 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.64, + "topHeight": 0.14, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json new file mode 100644 index 00000000000..558eadd151b --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json @@ -0,0 +1,356 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.35 + }, + "wells": { + "A1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["634001"], + "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.55, + "bottomDiameter": 8.2, + "topHeight": 42.6, + "bottomHeight": 13.7 + }, + { + "shape": "conical", + "topDiameter": 8.2, + "bottomDiameter": 3.2, + "topHeight": 13.7, + "bottomHeight": 1.88 + }, + { + "shape": "conical", + "topDiameter": 3.2, + "bottomDiameter": 1.9, + "topHeight": 1.88, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.36, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json new file mode 100644 index 00000000000..a14b96e7b77 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json @@ -0,0 +1,358 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.7 + }, + "wells": { + "A1": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 37.9, + "shape": "circular", + "diameter": 10.2, + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["615601", "615001"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.9, + "bottomDiameter": 9.28, + "topHeight": 37.9, + "bottomHeight": 35.4 + }, + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.98, + "topHeight": 35.4, + "bottomHeight": 17.4 + }, + { + "shape": "conical", + "topDiameter": 8.98, + "bottomDiameter": 3.69, + "topHeight": 17.4, + "bottomHeight": 1.56 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.87, + "topHeight": 1.56, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json new file mode 100644 index 00000000000..7cf9d050ec6 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json @@ -0,0 +1,350 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.5 + }, + "wells": { + "A1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["635001"], + "links": ["https://www.nest-biotech.com/sample-vials/59249854.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_2ml_screwcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 8.14, + "topDiameter": 8.55, + "topHeight": 43.4, + "bottomHeight": 3.04 + }, + { + "shape": "conical", + "bottomDiameter": 6.5, + "topDiameter": 8.14, + "topHeight": 3.04, + "bottomHeight": 2.08 + }, + { + "shape": "conical", + "bottomDiameter": 1.21, + "topDiameter": 6.5, + "topHeight": 2.08, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json new file mode 100644 index 00000000000..674a3e4d15e --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json @@ -0,0 +1,386 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Snapcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.6 + }, + "wells": { + "A1": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 39.28, + "shape": "circular", + "diameter": 10.18, + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "NEST", + "brandId": ["620611", "620011"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201045.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_2ml_snapcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.9, + "topHeight": 39.28, + "bottomHeight": 15.04 + }, + { + "shape": "conical", + "topDiameter": 8.9, + "bottomDiameter": 8.74, + "topHeight": 15.04, + "bottomHeight": 6.26 + }, + { + "shape": "conical", + "topDiameter": 8.74, + "bottomDiameter": 8.0, + "topHeight": 6.26, + "bottomHeight": 3.98 + }, + { + "shape": "conical", + "topDiameter": 8.0, + "bottomDiameter": 7.2, + "topHeight": 3.98, + "bottomHeight": 2.74 + }, + { + "shape": "conical", + "topDiameter": 7.2, + "bottomDiameter": 7.0, + "topHeight": 2.74, + "bottomHeight": 2.59 + }, + { + "shape": "conical", + "topDiameter": 7.0, + "bottomDiameter": 6.0, + "topHeight": 2.59, + "bottomHeight": 1.83 + }, + { + "shape": "conical", + "topDiameter": 6.0, + "bottomDiameter": 5.0, + "topHeight": 1.83, + "bottomHeight": 1.21 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.19, + "topHeight": 1.21, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json new file mode 100644 index 00000000000..46bd72cbc02 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json @@ -0,0 +1,418 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "metadata": { + "tags": [], + "displayName": "Opentrons 24 Tube Rack with Eppendorf 1.5 mL Safe-Lock Snapcap", + "displayVolumeUnits": "mL", + "displayCategory": "tubeRack" + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.85 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap" + }, + "wells": { + "D1": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 37.8, + "diameter": 8.7, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Eppendorf 24x1.5 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363204", + "022363212", + "022363221", + "022363247", + "022363263", + "022363280", + "022363280", + "022363301", + "022363328" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 9.6, + "topDiameter": 10, + "topHeight": 37.8, + "bottomHeight": 32.49 + }, + { + "shape": "conical", + "bottomDiameter": 9.2, + "topDiameter": 9.6, + "topHeight": 32.49, + "bottomHeight": 31.97 + }, + { + "shape": "conical", + "bottomDiameter": 9.02, + "topDiameter": 9.2, + "topHeight": 31.97, + "bottomHeight": 31.16 + }, + { + "shape": "conical", + "bottomDiameter": 8.9, + "topDiameter": 9.02, + "topHeight": 31.16, + "bottomHeight": 28.16 + }, + { + "shape": "conical", + "bottomDiameter": 8.5, + "topDiameter": 8.9, + "topHeight": 28.16, + "bottomHeight": 17.56 + }, + { + "shape": "conical", + "bottomDiameter": 8, + "topDiameter": 8.5, + "topHeight": 17.56, + "bottomHeight": 15.89 + }, + { + "shape": "conical", + "bottomDiameter": 6, + "topDiameter": 8, + "topHeight": 15.89, + "bottomHeight": 9.24 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 6, + "topHeight": 9.24, + "bottomHeight": 2.9 + }, + { + "shape": "conical", + "bottomDiameter": 3.26, + "topDiameter": 4, + "topHeight": 2.9, + "bottomHeight": 1 + }, + { + "shape": "conical", + "bottomDiameter": 2, + "topDiameter": 3.26, + "topHeight": 1, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.6, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json new file mode 100644 index 00000000000..eedfdd0053c --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json @@ -0,0 +1,473 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "metadata": { + "displayVolumeUnits": "mL", + "displayCategory": "tubeRack", + "displayName": "Opentrons 24 Tube Rack with Eppendorf 2 mL Safe-Lock Snapcap", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.85 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "loadName": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "isMagneticModuleCompatible": false + }, + "wells": { + "D1": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 39.1, + "diameter": 8.8, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Eppendorf 24x2 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363344", + "022363352", + "022363379", + "022363395", + "022363417", + "022363433", + "022363450", + "022363476" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 10.0, + "bottomDiameter": 9.6, + "topHeight": 39.02, + "bottomHeight": 33.96 + }, + { + "shape": "conical", + "topDiameter": 9.6, + "bottomDiameter": 9.2, + "topHeight": 33.96, + "bottomHeight": 32.5 + }, + { + "shape": "conical", + "topDiameter": 9.2, + "bottomDiameter": 9.1, + "topHeight": 32.5, + "bottomHeight": 25.26 + }, + { + "shape": "conical", + "topDiameter": 9.1, + "bottomDiameter": 9.0, + "topHeight": 25.26, + "bottomHeight": 13.32 + }, + { + "shape": "conical", + "topDiameter": 9.0, + "bottomDiameter": 8.9, + "topHeight": 13.32, + "bottomHeight": 10.17 + }, + { + "shape": "conical", + "topDiameter": 8.9, + "bottomDiameter": 8.78, + "topHeight": 10.17, + "bottomHeight": 6.97 + }, + { + "shape": "conical", + "topDiameter": 8.78, + "bottomDiameter": 8.6, + "topHeight": 6.97, + "bottomHeight": 5.43 + }, + { + "shape": "conical", + "topDiameter": 8.6, + "bottomDiameter": 8.5, + "topHeight": 5.43, + "bottomHeight": 5.15 + }, + { + "shape": "conical", + "topDiameter": 8.5, + "bottomDiameter": 8.4, + "topHeight": 5.15, + "bottomHeight": 5.03 + }, + { + "shape": "conical", + "topDiameter": 8.4, + "bottomDiameter": 8.2, + "topHeight": 5.03, + "bottomHeight": 4.53 + }, + { + "shape": "conical", + "topDiameter": 8.2, + "bottomDiameter": 8.0, + "topHeight": 4.53, + "bottomHeight": 4.29 + }, + { + "shape": "conical", + "topDiameter": 8.0, + "bottomDiameter": 7.7, + "topHeight": 4.29, + "bottomHeight": 3.93 + }, + { + "shape": "conical", + "topDiameter": 7.7, + "bottomDiameter": 7.6, + "topHeight": 3.93, + "bottomHeight": 3.67 + }, + { + "shape": "conical", + "topDiameter": 7.6, + "bottomDiameter": 7.2, + "topHeight": 3.67, + "bottomHeight": 3.14 + }, + { + "shape": "conical", + "topDiameter": 7.2, + "bottomDiameter": 6.8, + "topHeight": 3.14, + "bottomHeight": 2.75 + }, + { + "shape": "conical", + "topDiameter": 6.8, + "bottomDiameter": 6.4, + "topHeight": 2.75, + "bottomHeight": 2.45 + }, + { + "shape": "conical", + "topDiameter": 6.4, + "bottomDiameter": 6.0, + "topHeight": 2.45, + "bottomHeight": 2.2 + }, + { + "shape": "conical", + "topDiameter": 6.0, + "bottomDiameter": 5.0, + "topHeight": 2.2, + "bottomHeight": 1.45 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.88, + "topHeight": 1.45, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json new file mode 100644 index 00000000000..d2f77b37475 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json @@ -0,0 +1,309 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack (Acrylic) with Eppendorf 2 mL Safe-Lock Snapcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 52 + }, + "wells": { + "D1": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 15.28, + "y": 13.9, + "z": 13.42 + }, + "C1": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 15.28, + "y": 33.4, + "z": 13.42 + }, + "B1": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 15.28, + "y": 52.9, + "z": 13.42 + }, + "A1": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 15.28, + "y": 72.4, + "z": 13.42 + }, + "D2": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 34.78, + "y": 13.9, + "z": 13.42 + }, + "C2": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 34.78, + "y": 33.4, + "z": 13.42 + }, + "B2": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 34.78, + "y": 52.9, + "z": 13.42 + }, + "A2": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 34.78, + "y": 72.4, + "z": 13.42 + }, + "D3": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 54.28, + "y": 13.9, + "z": 13.42 + }, + "C3": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 54.28, + "y": 33.4, + "z": 13.42 + }, + "B3": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 54.28, + "y": 52.9, + "z": 13.42 + }, + "A3": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 54.28, + "y": 72.4, + "z": 13.42 + }, + "D4": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 73.78, + "y": 13.9, + "z": 13.42 + }, + "C4": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 73.78, + "y": 33.4, + "z": 13.42 + }, + "B4": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 73.78, + "y": 52.9, + "z": 13.42 + }, + "A4": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 73.78, + "y": 72.4, + "z": 13.42 + }, + "D5": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 93.28, + "y": 13.9, + "z": 13.42 + }, + "C5": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 93.28, + "y": 33.4, + "z": 13.42 + }, + "B5": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 93.28, + "y": 52.9, + "z": 13.42 + }, + "A5": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 93.28, + "y": 72.4, + "z": 13.42 + }, + "D6": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 112.78, + "y": 13.9, + "z": 13.42 + }, + "C6": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 112.78, + "y": 33.4, + "z": 13.42 + }, + "B6": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 112.78, + "y": 52.9, + "z": 13.42 + }, + "A6": { + "depth": 38.58, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 2000, + "x": 112.78, + "y": 72.4, + "z": 13.42 + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Eppendorf 24x2 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363344", + "022363352", + "022363379", + "022363395", + "022363417", + "022363433", + "022363450", + "022363476" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + } + ], + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json new file mode 100644 index 00000000000..c8dddaaab03 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json @@ -0,0 +1,298 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack (Acrylic) with Generic 0.75 mL Snapcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 55 + }, + "wells": { + "D1": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 16.76, + "y": 11.94, + "z": 35 + }, + "C1": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 16.76, + "y": 31.5, + "z": 35 + }, + "B1": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 16.76, + "y": 51.06, + "z": 35 + }, + "A1": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 16.76, + "y": 70.62, + "z": 35 + }, + "D2": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 36.32, + "y": 11.94, + "z": 35 + }, + "C2": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 36.32, + "y": 31.5, + "z": 35 + }, + "B2": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 36.32, + "y": 51.06, + "z": 35 + }, + "A2": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 36.32, + "y": 70.62, + "z": 35 + }, + "D3": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 55.88, + "y": 11.94, + "z": 35 + }, + "C3": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 55.88, + "y": 31.5, + "z": 35 + }, + "B3": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 55.88, + "y": 51.06, + "z": 35 + }, + "A3": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 55.88, + "y": 70.62, + "z": 35 + }, + "D4": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 75.44, + "y": 11.94, + "z": 35 + }, + "C4": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 75.44, + "y": 31.5, + "z": 35 + }, + "B4": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 75.44, + "y": 51.06, + "z": 35 + }, + "A4": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 75.44, + "y": 70.62, + "z": 35 + }, + "D5": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 95, + "y": 11.94, + "z": 35 + }, + "C5": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 95, + "y": 31.5, + "z": 35 + }, + "B5": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 95, + "y": 51.06, + "z": 35 + }, + "A5": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 95, + "y": 70.62, + "z": 35 + }, + "D6": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 114.56, + "y": 11.94, + "z": 35 + }, + "C6": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 114.56, + "y": 31.5, + "z": 35 + }, + "B6": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 114.56, + "y": 51.06, + "z": 35 + }, + "A6": { + "depth": 20, + "shape": "circular", + "diameter": 6, + "totalLiquidVolume": 750, + "x": 114.56, + "y": 70.62, + "z": 35 + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Generic 0.75 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + } + } + ], + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json new file mode 100644 index 00000000000..3d60b15cc91 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json @@ -0,0 +1,351 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "metadata": { + "displayVolumeUnits": "mL", + "displayCategory": "tubeRack", + "displayName": "Opentrons 24 Tube Rack with Generic 2 mL Screwcap", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 84 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "loadName": "opentrons_24_tuberack_generic_2ml_screwcap", + "isMagneticModuleCompatible": false + }, + "wells": { + "D1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 17.59, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 36.87, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 56.15, + "z": 42, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 75.43, + "z": 42, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Generic 2 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.5, + "bottomDiameter": 8.14, + "topHeight": 42.0, + "bottomHeight": 3.04 + }, + { + "shape": "conical", + "topDiameter": 8.14, + "bottomDiameter": 6.5, + "topHeight": 3.04, + "bottomHeight": 2.08 + }, + { + "shape": "conical", + "topDiameter": 6.5, + "bottomDiameter": 1.21, + "topHeight": 2.08, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json new file mode 100644 index 00000000000..c8e04ba4ebe --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json @@ -0,0 +1,371 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 0.5 mL Screwcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 85.2 + }, + "wells": { + "A1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x0.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["633001"], + "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_0.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 8.56, + "topHeight": 25.2, + "bottomHeight": 13.95 + }, + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 7.9, + "topHeight": 13.95, + "bottomHeight": 11.9 + }, + { + "shape": "conical", + "topDiameter": 7.9, + "bottomDiameter": 5.8, + "topHeight": 11.9, + "bottomHeight": 10.2 + }, + { + "shape": "conical", + "topDiameter": 5.8, + "bottomDiameter": 2.8, + "topHeight": 10.2, + "bottomHeight": 0.95 + }, + { + "shape": "conical", + "topDiameter": 2.8, + "bottomDiameter": 2, + "topHeight": 0.95, + "bottomHeight": 0.14 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.64, + "topHeight": 0.14, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json new file mode 100644 index 00000000000..5410a3b71ec --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json @@ -0,0 +1,357 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 1.5 mL Screwcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 85.2 + }, + "wells": { + "A1": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 42.6, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["634001"], + "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_1.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.55, + "bottomDiameter": 8.2, + "topHeight": 42.6, + "bottomHeight": 13.7 + }, + { + "shape": "conical", + "topDiameter": 8.2, + "bottomDiameter": 3.2, + "topHeight": 13.7, + "bottomHeight": 1.88 + }, + { + "shape": "conical", + "topDiameter": 3.2, + "bottomDiameter": 1.9, + "topHeight": 1.88, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.36, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json new file mode 100644 index 00000000000..17be0329351 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json @@ -0,0 +1,359 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 1.5 mL Snapcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.55 + }, + "wells": { + "A1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 75.43, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 56.15, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 36.87, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 17.59, + "z": 41.65, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["615601", "615001"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_1.5ml_snapcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.9, + "bottomDiameter": 9.28, + "topHeight": 37.9, + "bottomHeight": 35.4 + }, + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.98, + "topHeight": 35.4, + "bottomHeight": 17.4 + }, + { + "shape": "conical", + "topDiameter": 8.98, + "bottomDiameter": 3.69, + "topHeight": 17.4, + "bottomHeight": 1.56 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.87, + "topHeight": 1.56, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json new file mode 100644 index 00000000000..25a47474b37 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json @@ -0,0 +1,351 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 2 mL Screwcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 85.35 + }, + "wells": { + "A1": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 75.43, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 56.15, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 36.87, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 43.4, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 17.59, + "z": 41.3, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["635001"], + "links": ["https://www.nest-biotech.com/sample-vials/59249854.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_2ml_screwcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.55, + "bottomDiameter": 8.14, + "topHeight": 43.4, + "bottomHeight": 3.04 + }, + { + "shape": "conical", + "topDiameter": 8.14, + "bottomDiameter": 6.5, + "topHeight": 3.04, + "bottomHeight": 2.08 + }, + { + "shape": "conical", + "bottomDiameter": 1.21, + "topDiameter": 6.5, + "topHeight": 2.08, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json new file mode 100644 index 00000000000..e431d887ec8 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json @@ -0,0 +1,387 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 2 mL Snapcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.45 + }, + "wells": { + "A1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 75.43, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 56.15, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 36.87, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 17.59, + "z": 40.17, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "NEST", + "brandId": ["620611", "620011"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201045.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_2ml_snapcap" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.9, + "topHeight": 39.28, + "bottomHeight": 15.04 + }, + { + "shape": "conical", + "topDiameter": 8.9, + "bottomDiameter": 8.74, + "topHeight": 15.04, + "bottomHeight": 6.26 + }, + { + "shape": "conical", + "topDiameter": 8.74, + "bottomDiameter": 8.0, + "topHeight": 6.26, + "bottomHeight": 3.98 + }, + { + "shape": "conical", + "topDiameter": 8.0, + "bottomDiameter": 7.2, + "topHeight": 3.98, + "bottomHeight": 2.74 + }, + { + "shape": "conical", + "topDiameter": 7.2, + "bottomDiameter": 7.0, + "topHeight": 2.74, + "bottomHeight": 2.59 + }, + { + "shape": "conical", + "topDiameter": 7.0, + "bottomDiameter": 6.0, + "topHeight": 2.59, + "bottomHeight": 1.83 + }, + { + "shape": "conical", + "topDiameter": 6.0, + "bottomDiameter": 5.0, + "topHeight": 1.83, + "bottomHeight": 1.21 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.19, + "topHeight": 1.21, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json b/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json new file mode 100644 index 00000000000..56b4dda5031 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json @@ -0,0 +1,481 @@ +{ + "wells": { + "A1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 74.25, + "z": 28.92 + }, + "B1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 65.25, + "z": 28.92 + }, + "C1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 56.25, + "z": 28.92 + }, + "D1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 47.25, + "z": 28.92 + }, + "E1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 38.25, + "z": 28.92 + }, + "F1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 29.25, + "z": 28.92 + }, + "G1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 20.25, + "z": 28.92 + }, + "H1": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 5, + "y": 11.25, + "z": 28.92 + }, + "A3": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 15.13, + "y": 72, + "z": 6.26 + }, + "B3": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 15.13, + "y": 52.5, + "z": 6.26 + }, + "C3": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 15.13, + "y": 33, + "z": 6.26 + }, + "D3": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 15.13, + "y": 13.5, + "z": 6.26 + }, + "A4": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 34.63, + "y": 72, + "z": 6.26 + }, + "B4": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 34.63, + "y": 52.5, + "z": 6.26 + }, + "C4": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 34.63, + "y": 33, + "z": 6.26 + }, + "D4": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 34.63, + "y": 13.5, + "z": 6.26 + }, + "A5": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 54.13, + "y": 72, + "z": 6.26 + }, + "B5": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 54.13, + "y": 52.5, + "z": 6.26 + }, + "C5": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 54.13, + "y": 33, + "z": 6.26 + }, + "D5": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 54.13, + "y": 13.5, + "z": 6.26 + }, + "A6": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 73.63, + "y": 72, + "z": 6.26 + }, + "B6": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 73.63, + "y": 52.5, + "z": 6.26 + }, + "C6": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 73.63, + "y": 33, + "z": 6.26 + }, + "D6": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 73.63, + "y": 13.5, + "z": 6.26 + }, + "A7": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 93.13, + "y": 72, + "z": 6.26 + }, + "B7": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 93.13, + "y": 52.5, + "z": 6.26 + }, + "C7": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 93.13, + "y": 33, + "z": 6.26 + }, + "D7": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 93.13, + "y": 13.5, + "z": 6.26 + }, + "A8": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 112.63, + "y": 72, + "z": 6.26 + }, + "B8": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 112.63, + "y": 52.5, + "z": 6.26 + }, + "C8": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 112.63, + "y": 33, + "z": 6.26 + }, + "D8": { + "totalLiquidVolume": 2000, + "diameter": 8.5, + "shape": "circular", + "depth": 42, + "x": 112.63, + "y": 13.5, + "z": 6.26 + }, + "A13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 74.25, + "z": 28.92 + }, + "B13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 65.25, + "z": 28.92 + }, + "C13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 56.25, + "z": 28.92 + }, + "D13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 47.25, + "z": 28.92 + }, + "E13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 38.25, + "z": 28.92 + }, + "F13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 29.25, + "z": 28.92 + }, + "G13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 20.25, + "z": 28.92 + }, + "H13": { + "totalLiquidVolume": 200, + "diameter": 5.46, + "shape": "circular", + "depth": 20.3, + "x": 122.75, + "y": 11.25, + "z": 28.92 + } + }, + "brand": { + "brand": "Opentrons", + "brandId": ["4ti-0785/M", "649020"] + }, + "metadata": { + "displayName": "Opentrons 40 Well Aluminum Block with Eppendorf 24x2 mL Safe-Lock Snapcap, Generic 16x0.2 mL PCR Strip", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.22 + }, + "namespace": "opentrons", + "schemaVersion": 2, + "version": 1, + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip" + }, + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"], + ["A7", "B7", "C7", "D7"], + ["A8", "B8", "C8", "D8"], + ["A13", "B13", "C13", "D13", "E13", "F13", "G13", "H13"] + ], + "groups": [ + { + "wells": [ + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6", + "A7", + "B7", + "C7", + "D7", + "A8", + "B8", + "C8", + "D8" + ], + "metadata": { + "displayName": "Eppendorf 24x2 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363344", + "022363352", + "022363379", + "022363395", + "022363417", + "022363433", + "022363450", + "022363476" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + }, + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13" + ], + "metadata": { + "displayName": "Generic 2x8x0.2 mL PCR Strip", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json new file mode 100644 index 00000000000..30da0309c70 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json @@ -0,0 +1,145 @@ +{ + "ordering": [ + ["A1", "B1"], + ["A2", "B2"], + ["A3", "B3"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "tags": [], + "displayName": "Opentrons 6 Tube Rack with Falcon 50 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL" + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 120.3 + }, + "schemaVersion": 2, + "version": 2, + "namespace": "opentrons", + "wells": { + "B1": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_6_tuberack_falcon_50ml_conical" + }, + "groups": [ + { + "wells": ["A1", "B1", "A2", "B2", "A3", "B3"], + "metadata": { + "displayName": "Falcon 6x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352070", "352098"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 27.52, + "topDiameter": 27.81, + "topHeight": 112.85, + "bottomHeight": 100.65 + }, + { + "shape": "conical", + "bottomDiameter": 26.18, + "topDiameter": 27.52, + "topHeight": 100.65, + "bottomHeight": 14.3 + }, + { + "shape": "conical", + "bottomDiameter": 6.15, + "topDiameter": 26.18, + "topHeight": 14.3, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json new file mode 100644 index 00000000000..99eed5e6ced --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json @@ -0,0 +1,150 @@ +{ + "ordering": [ + ["A1", "B1"], + ["A2", "B2"], + ["A3", "B3"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 6 Tube Rack with NEST 50 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 120.35 + }, + "wells": { + "A1": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 113.05, + "shape": "circular", + "diameter": 27.95, + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 6x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["602052"], + "links": ["https://www.nest-biotech.com/centrifuge-tube/59282837.html"] + }, + "wells": ["A1", "B1", "A2", "B2", "A3", "B3"] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_6_tuberack_nest_50ml_conical" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 28.18, + "bottomDiameter": 27.95, + "topHeight": 113.1, + "bottomHeight": 109.1 + }, + { + "shape": "conical", + "topDiameter": 27.95, + "bottomDiameter": 27.69, + "topHeight": 109.1, + "bottomHeight": 108.8 + }, + { + "shape": "conical", + "topDiameter": 27.69, + "bottomDiameter": 26.0, + "topHeight": 108.8, + "bottomHeight": 14.35 + }, + { + "shape": "conical", + "topDiameter": 26.0, + "bottomDiameter": 4.5, + "topHeight": 14.35, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json new file mode 100644 index 00000000000..b84497a4879 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json @@ -0,0 +1,1029 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 1, + "namespace": "opentrons", + "metadata": { + "displayName": "Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 µL", + "displayVolumeUnits": "µL", + "displayCategory": "aluminumBlock", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.81 + }, + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 4 + }, + "G1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 4 + }, + "F1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 4 + }, + "E1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 4 + }, + "D1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 4 + }, + "C1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 4 + }, + "B1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 4 + }, + "A1": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 4 + }, + "H2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 4 + }, + "G2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 4 + }, + "F2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 4 + }, + "E2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 4 + }, + "D2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 4 + }, + "C2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 4 + }, + "B2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 4 + }, + "A2": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 4 + }, + "H3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 4 + }, + "G3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 4 + }, + "F3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 4 + }, + "E3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 4 + }, + "D3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 4 + }, + "C3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 4 + }, + "B3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 4 + }, + "A3": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 4 + }, + "H4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 4 + }, + "G4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 4 + }, + "F4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 4 + }, + "E4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 4 + }, + "D4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 4 + }, + "C4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 4 + }, + "B4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 4 + }, + "A4": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 4 + }, + "H5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 4 + }, + "G5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 4 + }, + "F5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 4 + }, + "E5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 4 + }, + "D5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 4 + }, + "C5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 4 + }, + "B5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 4 + }, + "A5": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 4 + }, + "H6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 4 + }, + "G6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 4 + }, + "F6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 4 + }, + "E6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 4 + }, + "D6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 4 + }, + "C6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 4 + }, + "B6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 4 + }, + "A6": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 4 + }, + "H7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 4 + }, + "G7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 4 + }, + "F7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 4 + }, + "E7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 4 + }, + "D7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 4 + }, + "C7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 4 + }, + "B7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 4 + }, + "A7": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 4 + }, + "H8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 4 + }, + "G8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 4 + }, + "F8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 4 + }, + "E8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 4 + }, + "D8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 4 + }, + "C8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 4 + }, + "B8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 4 + }, + "A8": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 4 + }, + "H9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 4 + }, + "G9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 4 + }, + "F9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 4 + }, + "E9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 4 + }, + "D9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 4 + }, + "C9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 4 + }, + "B9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 4 + }, + "A9": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 4 + }, + "H10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 4 + }, + "G10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 4 + }, + "F10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 4 + }, + "E10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 4 + }, + "D10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 4 + }, + "C10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 4 + }, + "B10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 4 + }, + "A10": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 4 + }, + "H11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 4 + }, + "G11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 4 + }, + "F11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 4 + }, + "E11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 4 + }, + "D11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 4 + }, + "C11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 4 + }, + "B11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 4 + }, + "A11": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 4 + }, + "H12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 4 + }, + "G12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 4 + }, + "F12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 4 + }, + "E12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 4 + }, + "D12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 4 + }, + "C12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 4 + }, + "B12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 4 + }, + "A12": { + "shape": "circular", + "depth": 14.81, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 4 + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "displayName": "Bio-Rad 96 Well Plate 200 µL", + "displayCategory": "wellPlate", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Bio-Rad", + "brandId": ["hsp9601"], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json new file mode 100644 index 00000000000..a2b966b02eb --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json @@ -0,0 +1,1149 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "metadata": { + "displayName": "Opentrons 96 Well Aluminum Block with Generic PCR Strip 200 µL", + "displayVolumeUnits": "µL", + "displayCategory": "aluminumBlock", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 25.61 + }, + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_aluminumblock_generic_pcr_strip_200ul" + }, + "wells": { + "H1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A1": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A2": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A3": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A4": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A5": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A6": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A7": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A8": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A9": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A10": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A11": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "H12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "G12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "F12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "E12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "D12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "C12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "B12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + }, + "A12": { + "shape": "circular", + "depth": 20.3, + "diameter": 5.46, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.25, + "z": 5.31, + "geometryDefinitionId": "pcrWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "displayName": "Generic 12x8x0.2 mL PCR Strip", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "pcrWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.3, + "topDiameter": 5.46, + "topHeight": 20.3, + "bottomHeight": 11.35 + }, + { + "shape": "conical", + "bottomDiameter": 2.33, + "topDiameter": 5.3, + "topHeight": 11.35, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.25, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json new file mode 100644 index 00000000000..875ff19df17 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json @@ -0,0 +1,1027 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "metadata": { + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "wells": { + "A1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 96 Well Plate 100 µL", + "displayCategory": "wellPlate", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["402501"], + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json new file mode 100644 index 00000000000..d8b45937703 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons 96 Deep Well Heater-Shaker Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 114.2, + "yDimension": 78.2, + "zDimension": 17.55 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_deep_well_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 6.9, + "y": 3.9, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json new file mode 100644 index 00000000000..97c71f7b920 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json @@ -0,0 +1,1121 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 96 Deep Well Heater-Shaker Adapter with NEST Deep Well Plate 2 mL", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "wells": { + "A1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 74.15, + "z": 4.25 + }, + "B1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 65.15, + "z": 4.25 + }, + "C1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 56.15, + "z": 4.25 + }, + "D1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 47.15, + "z": 4.25 + }, + "E1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 38.15, + "z": 4.25 + }, + "F1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 29.15, + "z": 4.25 + }, + "G1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 20.15, + "z": 4.25 + }, + "H1": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 11.15, + "z": 4.25 + }, + "A2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 74.15, + "z": 4.25 + }, + "B2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 65.15, + "z": 4.25 + }, + "C2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 56.15, + "z": 4.25 + }, + "D2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 47.15, + "z": 4.25 + }, + "E2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 38.15, + "z": 4.25 + }, + "F2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 29.15, + "z": 4.25 + }, + "G2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 20.15, + "z": 4.25 + }, + "H2": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 11.15, + "z": 4.25 + }, + "A3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 74.15, + "z": 4.25 + }, + "B3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 65.15, + "z": 4.25 + }, + "C3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 56.15, + "z": 4.25 + }, + "D3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 47.15, + "z": 4.25 + }, + "E3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 38.15, + "z": 4.25 + }, + "F3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 29.15, + "z": 4.25 + }, + "G3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 20.15, + "z": 4.25 + }, + "H3": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 11.15, + "z": 4.25 + }, + "A4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 74.15, + "z": 4.25 + }, + "B4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 65.15, + "z": 4.25 + }, + "C4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 56.15, + "z": 4.25 + }, + "D4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 47.15, + "z": 4.25 + }, + "E4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 38.15, + "z": 4.25 + }, + "F4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 29.15, + "z": 4.25 + }, + "G4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 20.15, + "z": 4.25 + }, + "H4": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 11.15, + "z": 4.25 + }, + "A5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 74.15, + "z": 4.25 + }, + "B5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 65.15, + "z": 4.25 + }, + "C5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 56.15, + "z": 4.25 + }, + "D5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 47.15, + "z": 4.25 + }, + "E5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 38.15, + "z": 4.25 + }, + "F5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 29.15, + "z": 4.25 + }, + "G5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 20.15, + "z": 4.25 + }, + "H5": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 11.15, + "z": 4.25 + }, + "A6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 74.15, + "z": 4.25 + }, + "B6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 65.15, + "z": 4.25 + }, + "C6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 56.15, + "z": 4.25 + }, + "D6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 47.15, + "z": 4.25 + }, + "E6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 38.15, + "z": 4.25 + }, + "F6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 29.15, + "z": 4.25 + }, + "G6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 20.15, + "z": 4.25 + }, + "H6": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 11.15, + "z": 4.25 + }, + "A7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 74.15, + "z": 4.25 + }, + "B7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 65.15, + "z": 4.25 + }, + "C7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 56.15, + "z": 4.25 + }, + "D7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 47.15, + "z": 4.25 + }, + "E7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 38.15, + "z": 4.25 + }, + "F7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 29.15, + "z": 4.25 + }, + "G7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 20.15, + "z": 4.25 + }, + "H7": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 11.15, + "z": 4.25 + }, + "A8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 74.15, + "z": 4.25 + }, + "B8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 65.15, + "z": 4.25 + }, + "C8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 56.15, + "z": 4.25 + }, + "D8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 47.15, + "z": 4.25 + }, + "E8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 38.15, + "z": 4.25 + }, + "F8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 29.15, + "z": 4.25 + }, + "G8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 20.15, + "z": 4.25 + }, + "H8": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 11.15, + "z": 4.25 + }, + "A9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 74.15, + "z": 4.25 + }, + "B9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 65.15, + "z": 4.25 + }, + "C9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 56.15, + "z": 4.25 + }, + "D9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 47.15, + "z": 4.25 + }, + "E9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 38.15, + "z": 4.25 + }, + "F9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 29.15, + "z": 4.25 + }, + "G9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 20.15, + "z": 4.25 + }, + "H9": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 11.15, + "z": 4.25 + }, + "A10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 74.15, + "z": 4.25 + }, + "B10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 65.15, + "z": 4.25 + }, + "C10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 56.15, + "z": 4.25 + }, + "D10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 47.15, + "z": 4.25 + }, + "E10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 38.15, + "z": 4.25 + }, + "F10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 29.15, + "z": 4.25 + }, + "G10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 20.15, + "z": 4.25 + }, + "H10": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 11.15, + "z": 4.25 + }, + "A11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 74.15, + "z": 4.25 + }, + "B11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 65.15, + "z": 4.25 + }, + "C11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 56.15, + "z": 4.25 + }, + "D11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 47.15, + "z": 4.25 + }, + "E11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 38.15, + "z": 4.25 + }, + "F11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 29.15, + "z": 4.25 + }, + "G11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 20.15, + "z": 4.25 + }, + "H11": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 11.15, + "z": 4.25 + }, + "A12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 74.15, + "z": 4.25 + }, + "B12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 65.15, + "z": 4.25 + }, + "C12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 56.15, + "z": 4.25 + }, + "D12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 47.15, + "z": 4.25 + }, + "E12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 38.15, + "z": 4.25 + }, + "F12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 29.15, + "z": 4.25 + }, + "G12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 20.15, + "z": 4.25 + }, + "H12": { + "depth": 38, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 11.15, + "z": 4.25 + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 96 Deepwell Plate 2mL", + "displayCategory": "wellPlate", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["503501", "503001"], + "links": ["https://www.nest-biotech.com/deep-well-plates/59253726.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json new file mode 100644 index 00000000000..aa88c994b7a --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons 96 Deep Well Temperature Module Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 21.4 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_deep_well_temp_mod_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 0.125, + "y": 0.25, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json new file mode 100644 index 00000000000..f964a2f60b4 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Filter Tip Rack 1000 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 97.47 + }, + "wells": { + "A1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 74.26, + "z": 9.47 + }, + "B1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 65.26, + "z": 9.47 + }, + "C1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 56.26, + "z": 9.47 + }, + "D1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 47.26, + "z": 9.47 + }, + "E1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 38.26, + "z": 9.47 + }, + "F1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 29.26, + "z": 9.47 + }, + "G1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 20.26, + "z": 9.47 + }, + "H1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.36, + "y": 11.26, + "z": 9.47 + }, + "A2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 74.26, + "z": 9.47 + }, + "B2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 65.26, + "z": 9.47 + }, + "C2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 56.26, + "z": 9.47 + }, + "D2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 47.26, + "z": 9.47 + }, + "E2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 38.26, + "z": 9.47 + }, + "F2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 29.26, + "z": 9.47 + }, + "G2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 20.26, + "z": 9.47 + }, + "H2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.36, + "y": 11.26, + "z": 9.47 + }, + "A3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 74.26, + "z": 9.47 + }, + "B3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 65.26, + "z": 9.47 + }, + "C3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 56.26, + "z": 9.47 + }, + "D3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 47.26, + "z": 9.47 + }, + "E3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 38.26, + "z": 9.47 + }, + "F3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 29.26, + "z": 9.47 + }, + "G3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 20.26, + "z": 9.47 + }, + "H3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.36, + "y": 11.26, + "z": 9.47 + }, + "A4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 74.26, + "z": 9.47 + }, + "B4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 65.26, + "z": 9.47 + }, + "C4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 56.26, + "z": 9.47 + }, + "D4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 47.26, + "z": 9.47 + }, + "E4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 38.26, + "z": 9.47 + }, + "F4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 29.26, + "z": 9.47 + }, + "G4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 20.26, + "z": 9.47 + }, + "H4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.36, + "y": 11.26, + "z": 9.47 + }, + "A5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 74.26, + "z": 9.47 + }, + "B5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 65.26, + "z": 9.47 + }, + "C5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 56.26, + "z": 9.47 + }, + "D5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 47.26, + "z": 9.47 + }, + "E5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 38.26, + "z": 9.47 + }, + "F5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 29.26, + "z": 9.47 + }, + "G5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 20.26, + "z": 9.47 + }, + "H5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.36, + "y": 11.26, + "z": 9.47 + }, + "A6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 74.26, + "z": 9.47 + }, + "B6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 65.26, + "z": 9.47 + }, + "C6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 56.26, + "z": 9.47 + }, + "D6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 47.26, + "z": 9.47 + }, + "E6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 38.26, + "z": 9.47 + }, + "F6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 29.26, + "z": 9.47 + }, + "G6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 20.26, + "z": 9.47 + }, + "H6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.36, + "y": 11.26, + "z": 9.47 + }, + "A7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 74.26, + "z": 9.47 + }, + "B7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 65.26, + "z": 9.47 + }, + "C7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 56.26, + "z": 9.47 + }, + "D7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 47.26, + "z": 9.47 + }, + "E7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 38.26, + "z": 9.47 + }, + "F7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 29.26, + "z": 9.47 + }, + "G7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 20.26, + "z": 9.47 + }, + "H7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.36, + "y": 11.26, + "z": 9.47 + }, + "A8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 74.26, + "z": 9.47 + }, + "B8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 65.26, + "z": 9.47 + }, + "C8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 56.26, + "z": 9.47 + }, + "D8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 47.26, + "z": 9.47 + }, + "E8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 38.26, + "z": 9.47 + }, + "F8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 29.26, + "z": 9.47 + }, + "G8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 20.26, + "z": 9.47 + }, + "H8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.36, + "y": 11.26, + "z": 9.47 + }, + "A9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 74.26, + "z": 9.47 + }, + "B9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 65.26, + "z": 9.47 + }, + "C9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 56.26, + "z": 9.47 + }, + "D9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 47.26, + "z": 9.47 + }, + "E9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 38.26, + "z": 9.47 + }, + "F9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 29.26, + "z": 9.47 + }, + "G9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 20.26, + "z": 9.47 + }, + "H9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.36, + "y": 11.26, + "z": 9.47 + }, + "A10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 74.26, + "z": 9.47 + }, + "B10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 65.26, + "z": 9.47 + }, + "C10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 56.26, + "z": 9.47 + }, + "D10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 47.26, + "z": 9.47 + }, + "E10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 38.26, + "z": 9.47 + }, + "F10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 29.26, + "z": 9.47 + }, + "G10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 20.26, + "z": 9.47 + }, + "H10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.36, + "y": 11.26, + "z": 9.47 + }, + "A11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 74.26, + "z": 9.47 + }, + "B11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 65.26, + "z": 9.47 + }, + "C11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 56.26, + "z": 9.47 + }, + "D11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 47.26, + "z": 9.47 + }, + "E11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 38.26, + "z": 9.47 + }, + "F11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 29.26, + "z": 9.47 + }, + "G11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 20.26, + "z": 9.47 + }, + "H11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.36, + "y": 11.26, + "z": 9.47 + }, + "A12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 74.26, + "z": 9.47 + }, + "B12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 65.26, + "z": 9.47 + }, + "C12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 56.26, + "z": 9.47 + }, + "D12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 47.26, + "z": 9.47 + }, + "E12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 38.26, + "z": 9.47 + }, + "F12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 29.26, + "z": 9.47 + }, + "G12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 20.26, + "z": 9.47 + }, + "H12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.36, + "y": 11.26, + "z": 9.47 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 88, + "tipOverlap": 7.95, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_filtertiprack_1000ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json new file mode 100644 index 00000000000..37dd458f9a6 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Filter Tip Rack 10 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "wells": { + "A1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 74.26, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 65.26, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 56.26, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 47.26, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 38.26, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 29.26, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 20.26, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.36, + "y": 11.26, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 74.26, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 65.26, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 56.26, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 47.26, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 38.26, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 29.26, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 20.26, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.36, + "y": 11.26, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 74.26, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 65.26, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 56.26, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 47.26, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 38.26, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 29.26, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 20.26, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.36, + "y": 11.26, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 74.26, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 65.26, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 56.26, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 47.26, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 38.26, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 29.26, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 20.26, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.36, + "y": 11.26, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 74.26, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 65.26, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 56.26, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 47.26, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 38.26, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 29.26, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 20.26, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.36, + "y": 11.26, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 74.26, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 65.26, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 56.26, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 47.26, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 38.26, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 29.26, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 20.26, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.36, + "y": 11.26, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 74.26, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 65.26, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 56.26, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 47.26, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 38.26, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 29.26, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 20.26, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.36, + "y": 11.26, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 74.26, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 65.26, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 56.26, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 47.26, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 38.26, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 29.26, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 20.26, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.36, + "y": 11.26, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 74.26, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 65.26, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 56.26, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 47.26, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 38.26, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 29.26, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 20.26, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.36, + "y": 11.26, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 74.26, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 65.26, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 56.26, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 47.26, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 38.26, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 29.26, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 20.26, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.36, + "y": 11.26, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 74.26, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 65.26, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 56.26, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 47.26, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 38.26, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 29.26, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 20.26, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.36, + "y": 11.26, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 74.26, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 65.26, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 56.26, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 47.26, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 38.26, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 29.26, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 20.26, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.36, + "y": 11.26, + "z": 25.49 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 39.2, + "tipOverlap": 3.29, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_filtertiprack_10ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json new file mode 100644 index 00000000000..f4fa822553d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Filter Tip Rack 200 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "wells": { + "A1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 5.39 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 59.3, + "tipOverlap": 7.47, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_filtertiprack_200ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json new file mode 100644 index 00000000000..c957375d2f0 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Filter Tip Rack 20 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "wells": { + "A1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 74.26, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 65.26, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 56.26, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 47.26, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 38.26, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 29.26, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 20.26, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.36, + "y": 11.26, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 74.26, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 65.26, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 56.26, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 47.26, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 38.26, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 29.26, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 20.26, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.36, + "y": 11.26, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 74.26, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 65.26, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 56.26, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 47.26, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 38.26, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 29.26, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 20.26, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.36, + "y": 11.26, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 74.26, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 65.26, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 56.26, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 47.26, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 38.26, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 29.26, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 20.26, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.36, + "y": 11.26, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 74.26, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 65.26, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 56.26, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 47.26, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 38.26, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 29.26, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 20.26, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.36, + "y": 11.26, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 74.26, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 65.26, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 56.26, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 47.26, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 38.26, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 29.26, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 20.26, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.36, + "y": 11.26, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 74.26, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 65.26, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 56.26, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 47.26, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 38.26, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 29.26, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 20.26, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.36, + "y": 11.26, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 74.26, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 65.26, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 56.26, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 47.26, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 38.26, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 29.26, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 20.26, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.36, + "y": 11.26, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 74.26, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 65.26, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 56.26, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 47.26, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 38.26, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 29.26, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 20.26, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.36, + "y": 11.26, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 74.26, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 65.26, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 56.26, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 47.26, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 38.26, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 29.26, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 20.26, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.36, + "y": 11.26, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 74.26, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 65.26, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 56.26, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 47.26, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 38.26, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 29.26, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 20.26, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.36, + "y": 11.26, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 74.26, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 65.26, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 56.26, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 47.26, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 38.26, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 29.26, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 20.26, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.36, + "y": 11.26, + "z": 25.49 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 39.2, + "tipOverlap": 3.29, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_filtertiprack_20ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json new file mode 100644 index 00000000000..e8f2570517c --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons 96 Flat Bottom Heater-Shaker Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 7.9 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_flat_bottom_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json new file mode 100644 index 00000000000..3a687572d17 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json @@ -0,0 +1,1027 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 96 Flat Bottom Heater-Shaker Adapter with NEST 96 Well Plate 200 µL Flat", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.5 + }, + "wells": { + "A1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 74.18, + "z": 4.55 + }, + "B1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 65.18, + "z": 4.55 + }, + "C1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 56.18, + "z": 4.55 + }, + "D1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 47.18, + "z": 4.55 + }, + "E1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 38.18, + "z": 4.55 + }, + "F1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 29.18, + "z": 4.55 + }, + "G1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 20.18, + "z": 4.55 + }, + "H1": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 14.28, + "y": 11.18, + "z": 4.55 + }, + "A2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 74.18, + "z": 4.55 + }, + "B2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 65.18, + "z": 4.55 + }, + "C2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 56.18, + "z": 4.55 + }, + "D2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 47.18, + "z": 4.55 + }, + "E2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 38.18, + "z": 4.55 + }, + "F2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 29.18, + "z": 4.55 + }, + "G2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 20.18, + "z": 4.55 + }, + "H2": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 23.28, + "y": 11.18, + "z": 4.55 + }, + "A3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 74.18, + "z": 4.55 + }, + "B3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 65.18, + "z": 4.55 + }, + "C3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 56.18, + "z": 4.55 + }, + "D3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 47.18, + "z": 4.55 + }, + "E3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 38.18, + "z": 4.55 + }, + "F3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 29.18, + "z": 4.55 + }, + "G3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 20.18, + "z": 4.55 + }, + "H3": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 32.28, + "y": 11.18, + "z": 4.55 + }, + "A4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 74.18, + "z": 4.55 + }, + "B4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 65.18, + "z": 4.55 + }, + "C4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 56.18, + "z": 4.55 + }, + "D4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 47.18, + "z": 4.55 + }, + "E4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 38.18, + "z": 4.55 + }, + "F4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 29.18, + "z": 4.55 + }, + "G4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 20.18, + "z": 4.55 + }, + "H4": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 41.28, + "y": 11.18, + "z": 4.55 + }, + "A5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 74.18, + "z": 4.55 + }, + "B5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 65.18, + "z": 4.55 + }, + "C5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 56.18, + "z": 4.55 + }, + "D5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 47.18, + "z": 4.55 + }, + "E5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 38.18, + "z": 4.55 + }, + "F5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 29.18, + "z": 4.55 + }, + "G5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 20.18, + "z": 4.55 + }, + "H5": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 50.28, + "y": 11.18, + "z": 4.55 + }, + "A6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 74.18, + "z": 4.55 + }, + "B6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 65.18, + "z": 4.55 + }, + "C6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 56.18, + "z": 4.55 + }, + "D6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 47.18, + "z": 4.55 + }, + "E6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 38.18, + "z": 4.55 + }, + "F6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 29.18, + "z": 4.55 + }, + "G6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 20.18, + "z": 4.55 + }, + "H6": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 59.28, + "y": 11.18, + "z": 4.55 + }, + "A7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 74.18, + "z": 4.55 + }, + "B7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 65.18, + "z": 4.55 + }, + "C7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 56.18, + "z": 4.55 + }, + "D7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 47.18, + "z": 4.55 + }, + "E7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 38.18, + "z": 4.55 + }, + "F7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 29.18, + "z": 4.55 + }, + "G7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 20.18, + "z": 4.55 + }, + "H7": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 68.28, + "y": 11.18, + "z": 4.55 + }, + "A8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 74.18, + "z": 4.55 + }, + "B8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 65.18, + "z": 4.55 + }, + "C8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 56.18, + "z": 4.55 + }, + "D8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 47.18, + "z": 4.55 + }, + "E8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 38.18, + "z": 4.55 + }, + "F8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 29.18, + "z": 4.55 + }, + "G8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 20.18, + "z": 4.55 + }, + "H8": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 77.28, + "y": 11.18, + "z": 4.55 + }, + "A9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 74.18, + "z": 4.55 + }, + "B9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 65.18, + "z": 4.55 + }, + "C9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 56.18, + "z": 4.55 + }, + "D9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 47.18, + "z": 4.55 + }, + "E9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 38.18, + "z": 4.55 + }, + "F9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 29.18, + "z": 4.55 + }, + "G9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 20.18, + "z": 4.55 + }, + "H9": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 86.28, + "y": 11.18, + "z": 4.55 + }, + "A10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 74.18, + "z": 4.55 + }, + "B10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 65.18, + "z": 4.55 + }, + "C10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 56.18, + "z": 4.55 + }, + "D10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 47.18, + "z": 4.55 + }, + "E10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 38.18, + "z": 4.55 + }, + "F10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 29.18, + "z": 4.55 + }, + "G10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 20.18, + "z": 4.55 + }, + "H10": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 95.28, + "y": 11.18, + "z": 4.55 + }, + "A11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 74.18, + "z": 4.55 + }, + "B11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 65.18, + "z": 4.55 + }, + "C11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 56.18, + "z": 4.55 + }, + "D11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 47.18, + "z": 4.55 + }, + "E11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 38.18, + "z": 4.55 + }, + "F11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 29.18, + "z": 4.55 + }, + "G11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 20.18, + "z": 4.55 + }, + "H11": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 104.28, + "y": 11.18, + "z": 4.55 + }, + "A12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 74.18, + "z": 4.55 + }, + "B12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 65.18, + "z": 4.55 + }, + "C12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 56.18, + "z": 4.55 + }, + "D12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 47.18, + "z": 4.55 + }, + "E12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 38.18, + "z": 4.55 + }, + "F12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 29.18, + "z": 4.55 + }, + "G12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 20.18, + "z": 4.55 + }, + "H12": { + "depth": 10.8, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 6.85, + "x": 113.28, + "y": 11.18, + "z": 4.55 + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 96 Well Plate 200 µL Flat", + "displayCategory": "wellPlate", + "wellBottomShape": "flat" + }, + "brand": { + "brand": "NEST", + "brandId": ["701011", "701001"], + "links": [ + "https://www.nest-biotech.com/cell-culture-plates/59415537.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json new file mode 100644 index 00000000000..e6062d94b1c --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json @@ -0,0 +1,1032 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "wells": { + "A1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 69, + "z": 1.85 + }, + "B1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 60, + "z": 1.85 + }, + "C1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 51, + "z": 1.85 + }, + "D1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 42, + "z": 1.85 + }, + "E1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 33, + "z": 1.85 + }, + "F1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 24, + "z": 1.85 + }, + "G1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 15, + "z": 1.85 + }, + "H1": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 6, + "y": 6, + "z": 1.85 + }, + "A2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 69, + "z": 1.85 + }, + "B2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 60, + "z": 1.85 + }, + "C2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 51, + "z": 1.85 + }, + "D2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 42, + "z": 1.85 + }, + "E2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 33, + "z": 1.85 + }, + "F2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 24, + "z": 1.85 + }, + "G2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 15, + "z": 1.85 + }, + "H2": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 15, + "y": 6, + "z": 1.85 + }, + "A3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 69, + "z": 1.85 + }, + "B3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 60, + "z": 1.85 + }, + "C3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 51, + "z": 1.85 + }, + "D3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 42, + "z": 1.85 + }, + "E3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 33, + "z": 1.85 + }, + "F3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 24, + "z": 1.85 + }, + "G3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 15, + "z": 1.85 + }, + "H3": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 24, + "y": 6, + "z": 1.85 + }, + "A4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 69, + "z": 1.85 + }, + "B4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 60, + "z": 1.85 + }, + "C4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 51, + "z": 1.85 + }, + "D4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 42, + "z": 1.85 + }, + "E4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 33, + "z": 1.85 + }, + "F4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 24, + "z": 1.85 + }, + "G4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 15, + "z": 1.85 + }, + "H4": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 33, + "y": 6, + "z": 1.85 + }, + "A5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 69, + "z": 1.85 + }, + "B5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 60, + "z": 1.85 + }, + "C5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 51, + "z": 1.85 + }, + "D5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 42, + "z": 1.85 + }, + "E5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 33, + "z": 1.85 + }, + "F5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 24, + "z": 1.85 + }, + "G5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 15, + "z": 1.85 + }, + "H5": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 42, + "y": 6, + "z": 1.85 + }, + "A6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 69, + "z": 1.85 + }, + "B6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 60, + "z": 1.85 + }, + "C6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 51, + "z": 1.85 + }, + "D6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 42, + "z": 1.85 + }, + "E6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 33, + "z": 1.85 + }, + "F6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 24, + "z": 1.85 + }, + "G6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 15, + "z": 1.85 + }, + "H6": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 51, + "y": 6, + "z": 1.85 + }, + "A7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 69, + "z": 1.85 + }, + "B7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 60, + "z": 1.85 + }, + "C7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 51, + "z": 1.85 + }, + "D7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 42, + "z": 1.85 + }, + "E7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 33, + "z": 1.85 + }, + "F7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 24, + "z": 1.85 + }, + "G7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 15, + "z": 1.85 + }, + "H7": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 60, + "y": 6, + "z": 1.85 + }, + "A8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 69, + "z": 1.85 + }, + "B8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 60, + "z": 1.85 + }, + "C8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 51, + "z": 1.85 + }, + "D8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 42, + "z": 1.85 + }, + "E8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 33, + "z": 1.85 + }, + "F8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 24, + "z": 1.85 + }, + "G8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 15, + "z": 1.85 + }, + "H8": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 69, + "y": 6, + "z": 1.85 + }, + "A9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 69, + "z": 1.85 + }, + "B9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 60, + "z": 1.85 + }, + "C9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 51, + "z": 1.85 + }, + "D9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 42, + "z": 1.85 + }, + "E9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 33, + "z": 1.85 + }, + "F9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 24, + "z": 1.85 + }, + "G9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 15, + "z": 1.85 + }, + "H9": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 78, + "y": 6, + "z": 1.85 + }, + "A10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 69, + "z": 1.85 + }, + "B10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 60, + "z": 1.85 + }, + "C10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 51, + "z": 1.85 + }, + "D10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 42, + "z": 1.85 + }, + "E10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 33, + "z": 1.85 + }, + "F10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 24, + "z": 1.85 + }, + "G10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 15, + "z": 1.85 + }, + "H10": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 87, + "y": 6, + "z": 1.85 + }, + "A11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 69, + "z": 1.85 + }, + "B11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 60, + "z": 1.85 + }, + "C11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 51, + "z": 1.85 + }, + "D11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 42, + "z": 1.85 + }, + "E11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 33, + "z": 1.85 + }, + "F11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 24, + "z": 1.85 + }, + "G11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 15, + "z": 1.85 + }, + "H11": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 96, + "y": 6, + "z": 1.85 + }, + "A12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 69, + "z": 1.85 + }, + "B12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 60, + "z": 1.85 + }, + "C12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 51, + "z": 1.85 + }, + "D12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 42, + "z": 1.85 + }, + "E12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 33, + "z": 1.85 + }, + "F12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 24, + "z": 1.85 + }, + "G12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 15, + "z": 1.85 + }, + "H12": { + "depth": 12, + "shape": "circular", + "diameter": 5.64, + "totalLiquidVolume": 0, + "x": 105, + "y": 6, + "z": 1.85 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_pcr_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json new file mode 100644 index 00000000000..7c00586b016 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json @@ -0,0 +1,1027 @@ +{ + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "parameters": { + "loadName": "opentrons_96_pcr_adapter_armadillo_wellplate_200ul", + "quirks": ["gripperIncompatible"], + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false + }, + "metadata": { + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with Armadillo Well Plate 200 µl", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "µL", + "tags": [] + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.9 + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "wells": { + "A1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 74.24, + "z": 3.95 + }, + "B1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 65.24, + "z": 3.95 + }, + "C1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 56.24, + "z": 3.95 + }, + "D1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 47.24, + "z": 3.95 + }, + "E1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 38.24, + "z": 3.95 + }, + "F1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 29.24, + "z": 3.95 + }, + "G1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 20.24, + "z": 3.95 + }, + "H1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 11.24, + "z": 3.95 + }, + "A2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 74.24, + "z": 3.95 + }, + "B2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 65.24, + "z": 3.95 + }, + "C2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 56.24, + "z": 3.95 + }, + "D2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 47.24, + "z": 3.95 + }, + "E2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 38.24, + "z": 3.95 + }, + "F2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 29.24, + "z": 3.95 + }, + "G2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 20.24, + "z": 3.95 + }, + "H2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 11.24, + "z": 3.95 + }, + "A3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 74.24, + "z": 3.95 + }, + "B3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 65.24, + "z": 3.95 + }, + "C3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 56.24, + "z": 3.95 + }, + "D3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 47.24, + "z": 3.95 + }, + "E3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 38.24, + "z": 3.95 + }, + "F3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 29.24, + "z": 3.95 + }, + "G3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 20.24, + "z": 3.95 + }, + "H3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 11.24, + "z": 3.95 + }, + "A4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 74.24, + "z": 3.95 + }, + "B4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 65.24, + "z": 3.95 + }, + "C4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 56.24, + "z": 3.95 + }, + "D4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 47.24, + "z": 3.95 + }, + "E4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 38.24, + "z": 3.95 + }, + "F4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 29.24, + "z": 3.95 + }, + "G4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 20.24, + "z": 3.95 + }, + "H4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 11.24, + "z": 3.95 + }, + "A5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 74.24, + "z": 3.95 + }, + "B5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 65.24, + "z": 3.95 + }, + "C5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 56.24, + "z": 3.95 + }, + "D5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 47.24, + "z": 3.95 + }, + "E5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 38.24, + "z": 3.95 + }, + "F5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 29.24, + "z": 3.95 + }, + "G5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 20.24, + "z": 3.95 + }, + "H5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 11.24, + "z": 3.95 + }, + "A6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 74.24, + "z": 3.95 + }, + "B6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 65.24, + "z": 3.95 + }, + "C6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 56.24, + "z": 3.95 + }, + "D6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 47.24, + "z": 3.95 + }, + "E6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 38.24, + "z": 3.95 + }, + "F6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 29.24, + "z": 3.95 + }, + "G6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 20.24, + "z": 3.95 + }, + "H6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 11.24, + "z": 3.95 + }, + "A7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 74.24, + "z": 3.95 + }, + "B7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 65.24, + "z": 3.95 + }, + "C7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 56.24, + "z": 3.95 + }, + "D7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 47.24, + "z": 3.95 + }, + "E7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 38.24, + "z": 3.95 + }, + "F7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 29.24, + "z": 3.95 + }, + "G7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 20.24, + "z": 3.95 + }, + "H7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 11.24, + "z": 3.95 + }, + "A8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 74.24, + "z": 3.95 + }, + "B8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 65.24, + "z": 3.95 + }, + "C8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 56.24, + "z": 3.95 + }, + "D8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 47.24, + "z": 3.95 + }, + "E8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 38.24, + "z": 3.95 + }, + "F8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 29.24, + "z": 3.95 + }, + "G8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 20.24, + "z": 3.95 + }, + "H8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 11.24, + "z": 3.95 + }, + "A9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 74.24, + "z": 3.95 + }, + "B9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 65.24, + "z": 3.95 + }, + "C9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 56.24, + "z": 3.95 + }, + "D9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 47.24, + "z": 3.95 + }, + "E9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 38.24, + "z": 3.95 + }, + "F9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 29.24, + "z": 3.95 + }, + "G9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 20.24, + "z": 3.95 + }, + "H9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 11.24, + "z": 3.95 + }, + "A10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 74.24, + "z": 3.95 + }, + "B10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 65.24, + "z": 3.95 + }, + "C10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 56.24, + "z": 3.95 + }, + "D10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 47.24, + "z": 3.95 + }, + "E10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 38.24, + "z": 3.95 + }, + "F10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 29.24, + "z": 3.95 + }, + "G10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 20.24, + "z": 3.95 + }, + "H10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 11.24, + "z": 3.95 + }, + "A11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 74.24, + "z": 3.95 + }, + "B11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 65.24, + "z": 3.95 + }, + "C11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 56.24, + "z": 3.95 + }, + "D11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 47.24, + "z": 3.95 + }, + "E11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 38.24, + "z": 3.95 + }, + "F11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 29.24, + "z": 3.95 + }, + "G11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 20.24, + "z": 3.95 + }, + "H11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 11.24, + "z": 3.95 + }, + "A12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 74.24, + "z": 3.95 + }, + "B12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 65.24, + "z": 3.95 + }, + "C12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 56.24, + "z": 3.95 + }, + "D12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 47.24, + "z": 3.95 + }, + "E12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 38.24, + "z": 3.95 + }, + "F12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 29.24, + "z": 3.95 + }, + "G12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 20.24, + "z": 3.95 + }, + "H12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 11.24, + "z": 3.95 + } + }, + "groups": [ + { + "metadata": { + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Thermo Scientific", + "brandId": ["AB2396"], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ] +} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json new file mode 100644 index 00000000000..dff19df1d4c --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json @@ -0,0 +1,1025 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 µl", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 19.35 + }, + "wells": { + "A1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 74.24, + "z": 3.57 + }, + "B1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 65.24, + "z": 3.57 + }, + "C1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 56.24, + "z": 3.57 + }, + "D1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 47.24, + "z": 3.57 + }, + "E1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 38.24, + "z": 3.57 + }, + "F1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 29.24, + "z": 3.57 + }, + "G1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 20.24, + "z": 3.57 + }, + "H1": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 14.38, + "y": 11.24, + "z": 3.57 + }, + "A2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 74.24, + "z": 3.57 + }, + "B2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 65.24, + "z": 3.57 + }, + "C2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 56.24, + "z": 3.57 + }, + "D2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 47.24, + "z": 3.57 + }, + "E2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 38.24, + "z": 3.57 + }, + "F2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 29.24, + "z": 3.57 + }, + "G2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 20.24, + "z": 3.57 + }, + "H2": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 23.38, + "y": 11.24, + "z": 3.57 + }, + "A3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 74.24, + "z": 3.57 + }, + "B3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 65.24, + "z": 3.57 + }, + "C3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 56.24, + "z": 3.57 + }, + "D3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 47.24, + "z": 3.57 + }, + "E3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 38.24, + "z": 3.57 + }, + "F3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 29.24, + "z": 3.57 + }, + "G3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 20.24, + "z": 3.57 + }, + "H3": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 32.38, + "y": 11.24, + "z": 3.57 + }, + "A4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 74.24, + "z": 3.57 + }, + "B4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 65.24, + "z": 3.57 + }, + "C4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 56.24, + "z": 3.57 + }, + "D4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 47.24, + "z": 3.57 + }, + "E4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 38.24, + "z": 3.57 + }, + "F4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 29.24, + "z": 3.57 + }, + "G4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 20.24, + "z": 3.57 + }, + "H4": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 41.38, + "y": 11.24, + "z": 3.57 + }, + "A5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 74.24, + "z": 3.57 + }, + "B5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 65.24, + "z": 3.57 + }, + "C5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 56.24, + "z": 3.57 + }, + "D5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 47.24, + "z": 3.57 + }, + "E5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 38.24, + "z": 3.57 + }, + "F5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 29.24, + "z": 3.57 + }, + "G5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 20.24, + "z": 3.57 + }, + "H5": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 50.38, + "y": 11.24, + "z": 3.57 + }, + "A6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 74.24, + "z": 3.57 + }, + "B6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 65.24, + "z": 3.57 + }, + "C6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 56.24, + "z": 3.57 + }, + "D6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 47.24, + "z": 3.57 + }, + "E6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 38.24, + "z": 3.57 + }, + "F6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 29.24, + "z": 3.57 + }, + "G6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 20.24, + "z": 3.57 + }, + "H6": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 59.38, + "y": 11.24, + "z": 3.57 + }, + "A7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 74.24, + "z": 3.57 + }, + "B7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 65.24, + "z": 3.57 + }, + "C7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 56.24, + "z": 3.57 + }, + "D7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 47.24, + "z": 3.57 + }, + "E7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 38.24, + "z": 3.57 + }, + "F7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 29.24, + "z": 3.57 + }, + "G7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 20.24, + "z": 3.57 + }, + "H7": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 68.38, + "y": 11.24, + "z": 3.57 + }, + "A8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 74.24, + "z": 3.57 + }, + "B8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 65.24, + "z": 3.57 + }, + "C8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 56.24, + "z": 3.57 + }, + "D8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 47.24, + "z": 3.57 + }, + "E8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 38.24, + "z": 3.57 + }, + "F8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 29.24, + "z": 3.57 + }, + "G8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 20.24, + "z": 3.57 + }, + "H8": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 77.38, + "y": 11.24, + "z": 3.57 + }, + "A9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 74.24, + "z": 3.57 + }, + "B9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 65.24, + "z": 3.57 + }, + "C9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 56.24, + "z": 3.57 + }, + "D9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 47.24, + "z": 3.57 + }, + "E9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 38.24, + "z": 3.57 + }, + "F9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 29.24, + "z": 3.57 + }, + "G9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 20.24, + "z": 3.57 + }, + "H9": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 86.38, + "y": 11.24, + "z": 3.57 + }, + "A10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 74.24, + "z": 3.57 + }, + "B10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 65.24, + "z": 3.57 + }, + "C10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 56.24, + "z": 3.57 + }, + "D10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 47.24, + "z": 3.57 + }, + "E10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 38.24, + "z": 3.57 + }, + "F10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 29.24, + "z": 3.57 + }, + "G10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 20.24, + "z": 3.57 + }, + "H10": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 95.38, + "y": 11.24, + "z": 3.57 + }, + "A11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 74.24, + "z": 3.57 + }, + "B11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 65.24, + "z": 3.57 + }, + "C11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 56.24, + "z": 3.57 + }, + "D11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 47.24, + "z": 3.57 + }, + "E11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 38.24, + "z": 3.57 + }, + "F11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 29.24, + "z": 3.57 + }, + "G11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 20.24, + "z": 3.57 + }, + "H11": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 104.38, + "y": 11.24, + "z": 3.57 + }, + "A12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 74.24, + "z": 3.57 + }, + "B12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 65.24, + "z": 3.57 + }, + "C12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 56.24, + "z": 3.57 + }, + "D12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 47.24, + "z": 3.57 + }, + "E12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 38.24, + "z": 3.57 + }, + "F12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 29.24, + "z": 3.57 + }, + "G12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 20.24, + "z": 3.57 + }, + "H12": { + "depth": 14.78, + "totalLiquidVolume": 100, + "shape": "circular", + "diameter": 5.34, + "x": 113.38, + "y": 11.24, + "z": 3.57 + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["402501"], + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json new file mode 100644 index 00000000000..8326d858565 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-1000ul-tips" + ] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Tip Rack 1000 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 97.47 + }, + "wells": { + "A1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.24, + "z": 9.47 + }, + "B1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.24, + "z": 9.47 + }, + "C1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.24, + "z": 9.47 + }, + "D1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.24, + "z": 9.47 + }, + "E1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.24, + "z": 9.47 + }, + "F1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.24, + "z": 9.47 + }, + "G1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.24, + "z": 9.47 + }, + "H1": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.24, + "z": 9.47 + }, + "A2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.24, + "z": 9.47 + }, + "B2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.24, + "z": 9.47 + }, + "C2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.24, + "z": 9.47 + }, + "D2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.24, + "z": 9.47 + }, + "E2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.24, + "z": 9.47 + }, + "F2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.24, + "z": 9.47 + }, + "G2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.24, + "z": 9.47 + }, + "H2": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.24, + "z": 9.47 + }, + "A3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.24, + "z": 9.47 + }, + "B3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.24, + "z": 9.47 + }, + "C3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.24, + "z": 9.47 + }, + "D3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.24, + "z": 9.47 + }, + "E3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.24, + "z": 9.47 + }, + "F3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.24, + "z": 9.47 + }, + "G3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.24, + "z": 9.47 + }, + "H3": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.24, + "z": 9.47 + }, + "A4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.24, + "z": 9.47 + }, + "B4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.24, + "z": 9.47 + }, + "C4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.24, + "z": 9.47 + }, + "D4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.24, + "z": 9.47 + }, + "E4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.24, + "z": 9.47 + }, + "F4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.24, + "z": 9.47 + }, + "G4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.24, + "z": 9.47 + }, + "H4": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.24, + "z": 9.47 + }, + "A5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.24, + "z": 9.47 + }, + "B5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.24, + "z": 9.47 + }, + "C5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.24, + "z": 9.47 + }, + "D5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.24, + "z": 9.47 + }, + "E5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.24, + "z": 9.47 + }, + "F5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.24, + "z": 9.47 + }, + "G5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.24, + "z": 9.47 + }, + "H5": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.24, + "z": 9.47 + }, + "A6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.24, + "z": 9.47 + }, + "B6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.24, + "z": 9.47 + }, + "C6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.24, + "z": 9.47 + }, + "D6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.24, + "z": 9.47 + }, + "E6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.24, + "z": 9.47 + }, + "F6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.24, + "z": 9.47 + }, + "G6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.24, + "z": 9.47 + }, + "H6": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.24, + "z": 9.47 + }, + "A7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.24, + "z": 9.47 + }, + "B7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.24, + "z": 9.47 + }, + "C7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.24, + "z": 9.47 + }, + "D7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.24, + "z": 9.47 + }, + "E7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.24, + "z": 9.47 + }, + "F7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.24, + "z": 9.47 + }, + "G7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.24, + "z": 9.47 + }, + "H7": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.24, + "z": 9.47 + }, + "A8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.24, + "z": 9.47 + }, + "B8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.24, + "z": 9.47 + }, + "C8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.24, + "z": 9.47 + }, + "D8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.24, + "z": 9.47 + }, + "E8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.24, + "z": 9.47 + }, + "F8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.24, + "z": 9.47 + }, + "G8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.24, + "z": 9.47 + }, + "H8": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.24, + "z": 9.47 + }, + "A9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.24, + "z": 9.47 + }, + "B9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.24, + "z": 9.47 + }, + "C9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.24, + "z": 9.47 + }, + "D9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.24, + "z": 9.47 + }, + "E9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.24, + "z": 9.47 + }, + "F9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.24, + "z": 9.47 + }, + "G9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.24, + "z": 9.47 + }, + "H9": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.24, + "z": 9.47 + }, + "A10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.24, + "z": 9.47 + }, + "B10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.24, + "z": 9.47 + }, + "C10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.24, + "z": 9.47 + }, + "D10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.24, + "z": 9.47 + }, + "E10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.24, + "z": 9.47 + }, + "F10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.24, + "z": 9.47 + }, + "G10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.24, + "z": 9.47 + }, + "H10": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.24, + "z": 9.47 + }, + "A11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.24, + "z": 9.47 + }, + "B11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.24, + "z": 9.47 + }, + "C11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.24, + "z": 9.47 + }, + "D11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.24, + "z": 9.47 + }, + "E11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.24, + "z": 9.47 + }, + "F11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.24, + "z": 9.47 + }, + "G11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.24, + "z": 9.47 + }, + "H11": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.24, + "z": 9.47 + }, + "A12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.24, + "z": 9.47 + }, + "B12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.24, + "z": 9.47 + }, + "C12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.24, + "z": 9.47 + }, + "D12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.24, + "z": 9.47 + }, + "E12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.24, + "z": 9.47 + }, + "F12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.24, + "z": 9.47 + }, + "G12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.24, + "z": 9.47 + }, + "H12": { + "depth": 88, + "shape": "circular", + "diameter": 7.23, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.24, + "z": 9.47 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 88, + "tipOverlap": 7.95, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_tiprack_1000ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json new file mode 100644 index 00000000000..adbd249302d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Tip Rack 10 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "wells": { + "A1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.24, + "z": 25.49 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 39.2, + "tipOverlap": 3.29, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_tiprack_10ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json new file mode 100644 index 00000000000..69eee2bea56 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "wells": { + "A1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "shape": "circular", + "diameter": 3.27, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 39.2, + "tipOverlap": 8.25, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_tiprack_20ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json new file mode 100644 index 00000000000..99e3d63cfe5 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json @@ -0,0 +1,1019 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "metadata": { + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "wells": { + "A1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "shape": "circular", + "diameter": 5.23, + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipLength": 59.3, + "tipOverlap": 7.47, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_tiprack_300ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json b/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json new file mode 100644 index 00000000000..87df813c9dc --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json @@ -0,0 +1,1032 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons 96 Well Aluminum Block", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "wells": { + "A1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_well_aluminum_block" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json new file mode 100644 index 00000000000..128a86de2e6 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json @@ -0,0 +1,1174 @@ +{ + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "parameters": { + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true + }, + "metadata": { + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "brand": { + "brand": "Opentrons", + "brandId": ["991-00076"], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackLimit": 4, + "compatibleParentLabware": ["opentrons_96_wellplate_200ul_pcr_full_skirt"], + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + }, + "opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 3.68 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10, + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "wells": { + "A1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 14.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 23.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 32.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 41.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 50.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 59.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 68.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 77.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 86.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 95.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 104.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 74.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 65.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 56.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 47.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 38.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 29.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 20.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.95, + "totalLiquidVolume": 200, + "shape": "circular", + "diameter": 5.5, + "x": 113.38, + "y": 11.24, + "z": 1.05, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.5, + "topDiameter": 5.5, + "topHeight": 14.95, + "bottomHeight": 11.35 + }, + { + "shape": "conical", + "topDiameter": 5.5, + "bottomDiameter": 2.33, + "topHeight": 11.35, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.25, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json b/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json new file mode 100644 index 00000000000..41027bdb624 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Aluminum Flat Bottom Plate", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 134, + "yDimension": 92, + "zDimension": 11.2 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_aluminum_flat_bottom_plate" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -3, + "y": -3, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json new file mode 100644 index 00000000000..4a07f3fa565 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json @@ -0,0 +1,62 @@ +{ + "ordering": [["A1", "B1"]], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Calibration Adapter - Heater-shaker Module", + "displayCategory": "other", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "wells": { + "A1": { + "depth": 4.75, + "totalLiquidVolume": 0, + "shape": "rectangular", + "xDimension": 20, + "yDimension": 20, + "x": 55.5, + "y": 37.5, + "z": 9.1 + }, + "B1": { + "depth": 0, + "totalLiquidVolume": 0, + "shape": "circular", + "diameter": 1, + "x": 68.5, + "y": 50.5, + "z": 13.85 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": ["A1", "B1"] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_calibration_adapter_heatershaker_module" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json new file mode 100644 index 00000000000..0a533fb5da4 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json @@ -0,0 +1,62 @@ +{ + "ordering": [["A1", "B1"]], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Calibration Adapter - Temperature Module", + "displayCategory": "other", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 15 + }, + "wells": { + "A1": { + "depth": 4.75, + "totalLiquidVolume": 0, + "shape": "rectangular", + "xDimension": 20, + "yDimension": 20, + "x": 64, + "y": 43, + "z": 10.25 + }, + "B1": { + "depth": 0, + "totalLiquidVolume": 0, + "shape": "circular", + "diameter": 1, + "x": 77, + "y": 56, + "z": 15 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": ["A1", "B1"] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_calibration_adapter_temperature_module" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0.13, + "y": 0.25, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json new file mode 100644 index 00000000000..a4711dd08cf --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json @@ -0,0 +1,69 @@ +{ + "ordering": [["A1", "B1"]], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Calibration Adapter - Thermocycler Module", + "displayCategory": "other", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 116.25, + "yDimension": 80.5, + "zDimension": 26.4 + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 11.0 + } + }, + "wells": { + "A1": { + "depth": 4.75, + "totalLiquidVolume": 0, + "shape": "rectangular", + "xDimension": 20, + "yDimension": 20, + "x": 92.88, + "y": 40.25, + "z": 21.65 + }, + "B1": { + "depth": 0, + "totalLiquidVolume": 0, + "shape": "circular", + "diameter": 1, + "x": 105.88, + "y": 53.25, + "z": 26.4 + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": ["A1", "B1"] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_calibration_adapter_thermocycler_module" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 5.875, + "y": 2.75, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json new file mode 100644 index 00000000000..3eedbb6c26c --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json @@ -0,0 +1,71 @@ +{ + "wells": { + "A1": { + "totalLiquidVolume": 0, + "xDimension": 63.88, + "yDimension": 85.5, + "shape": "rectangular", + "depth": 0, + "x": 31.94, + "y": 42.75, + "z": 33 + }, + "A2": { + "totalLiquidVolume": 0, + "xDimension": 63.88, + "yDimension": 85.5, + "shape": "rectangular", + "depth": 0, + "x": 95.81, + "y": 42.75, + "z": 62.5 + } + }, + "groups": [ + { + "metadata": { + "displayName": "Opentrons Calibration Block - Short Side", + "wellBottomShape": "flat" + }, + "wells": ["A1"] + }, + { + "metadata": { + "displayName": "Opentrons Calibration Block - Tall Side", + "wellBottomShape": "flat" + }, + "wells": ["A2"] + } + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons Calibration Block - Short Side: Left", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 62.5 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_calibrationblock_short_side_left" + }, + "ordering": [["A1"], ["A2"]], + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json new file mode 100644 index 00000000000..359744a2e77 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json @@ -0,0 +1,71 @@ +{ + "wells": { + "A1": { + "totalLiquidVolume": 0, + "xDimension": 63.88, + "yDimension": 85.5, + "shape": "rectangular", + "depth": 0, + "x": 31.94, + "y": 42.75, + "z": 62.5 + }, + "A2": { + "totalLiquidVolume": 0, + "xDimension": 63.88, + "yDimension": 85.5, + "shape": "rectangular", + "depth": 0, + "x": 95.81, + "y": 42.75, + "z": 33 + } + }, + "groups": [ + { + "metadata": { + "displayName": "Opentrons Calibration Block - Tall Side", + "wellBottomShape": "flat" + }, + "wells": ["A1"] + }, + { + "metadata": { + "displayName": "Opentrons Calibration Block - Short Side", + "wellBottomShape": "flat" + }, + "wells": ["A2"] + } + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "metadata": { + "displayName": "Opentrons Calibration Block - Short Side: Right", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 62.5 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_calibrationblock_short_side_right" + }, + "ordering": [["A1"], ["A2"]], + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json new file mode 100644 index 00000000000..18bbdc38bd1 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Filter Tip Rack 1000 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 95.6, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_filtertiprack_1000ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json new file mode 100644 index 00000000000..565271b128f --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Filter Tip Rack 200 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 58.35, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_filtertiprack_200ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json new file mode 100644 index 00000000000..8c15758cd7d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Filter Tip Rack 20 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 52.0, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_filtertiprack_20ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json new file mode 100644 index 00000000000..fae0ac749d5 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Filter Tip Rack 50 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 57.9, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_filtertiprack_50ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json new file mode 100644 index 00000000000..52212d63dd7 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.47, + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 95.6, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_1000ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json new file mode 100644 index 00000000000..95a521a2c81 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.59, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 58.35, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_200ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json new file mode 100644 index 00000000000..6aa08141753 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack 20 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 52.0, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_20ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json new file mode 100644 index 00000000000..f546a222079 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json @@ -0,0 +1,1031 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 57.9, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_50ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json new file mode 100644 index 00000000000..adc03502c33 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": ["tiprackAdapterFor96Channel"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json b/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json new file mode 100644 index 00000000000..78184b5b85d --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json @@ -0,0 +1,41 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex Deck Riser", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 140, + "yDimension": 98, + "zDimension": 55 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_deck_riser" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": -6.125, + "y": -6.125, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json b/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json new file mode 100644 index 00000000000..a503e9f4a08 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json @@ -0,0 +1,57 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Absorbance Plate Reader Module Lid", + "displayCategory": "other", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 155.0, + "yDimension": 95.5, + "zDimension": 57.0 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_lid_absorbance_plate_reader_module" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["fixture", "lid"], + "gripForce": 21.0, + "gripHeightFromLabwareBottom": 48.0, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 9, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 9, + "y": 0, + "z": 0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json b/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json new file mode 100644 index 00000000000..9c3df4ddd73 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json @@ -0,0 +1,122 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Flex Tip Rack Lid", + "displayCategory": "lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 78.75, + "zDimension": 17 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "isDeckSlotCompatible": false, + "loadName": "opentrons_flex_tiprack_lid" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_20ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + } + }, + "stackLimit": 1, + "compatibleParentLabware": [ + "opentrons_flex_96_tiprack_20ul", + "opentrons_flex_96_tiprack_50ul", + "opentrons_flex_96_tiprack_200ul", + "opentrons_flex_96_tiprack_1000ul", + "opentrons_flex_96_filtertiprack_50ul", + "opentrons_flex_96_filtertiprack_200ul", + "opentrons_flex_96_filtertiprack_1000ul" + ], + "gripForce": 10, + "gripHeightFromLabwareBottom": 10, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json new file mode 100644 index 00000000000..13c16b53ef1 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json @@ -0,0 +1,228 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00260"], + "links": [ + "https://opentrons.com/products/opentrons-tough-22-ml-12-well-reservoir-25-count/" + ] + }, + "metadata": { + "displayName": "Opentrons Tough 22mL 12 Well Reservoir", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 45.3 + }, + "wells": { + "A1": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 14.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A2": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 23.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A3": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 32.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A4": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 41.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A5": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 50.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A6": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 59.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A7": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 68.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A8": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 77.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A9": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 86.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A10": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 95.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A11": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 104.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A12": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 70.7, + "totalLiquidVolume": 22000, + "x": 113.38, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "opentrons_tough_12_reservoir_22ml" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "MainWellGeometry": { + "sections": [ + { + "shape": "cuboidal", + "bottomHeight": 2, + "topHeight": 42.3, + "bottomXDimension": 7.5, + "bottomYDimension": 70, + "topXDimension": 8.2, + "topYDimension": 70.7 + }, + { + "shape": "cuboidal", + "bottomHeight": 0, + "topHeight": 2, + "bottomXDimension": 2.15, + "bottomYDimension": 67.46, + "topXDimension": 7.5, + "topYDimension": 70 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json new file mode 100644 index 00000000000..4eb3b1b0a07 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json @@ -0,0 +1,83 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00258"], + "links": [ + "https://opentrons.com/products/opentrons-tough-300-ml-1-well-reservoir-25-count/" + ] + }, + "metadata": { + "displayName": "Opentrons Tough 300 mL 1 Well Reservoir", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 45.3 + }, + "wells": { + "A1": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 108, + "yDimension": 72, + "totalLiquidVolume": 300000, + "x": 63.88, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_tough_1_reservoir_300ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "MainWellGeometry": { + "sections": [ + { + "shape": "cuboidal", + "bottomHeight": 2.29, + "topHeight": 42.3, + "bottomXDimension": 108, + "bottomYDimension": 70.01, + "topXDimension": 108.7, + "topYDimension": 70.7 + }, + { + "shape": "cuboidal", + "xCount": 12, + "yCount": 8, + "bottomHeight": 0, + "topHeight": 2.29, + "bottomXDimension": 1.8, + "bottomYDimension": 1.8, + "topXDimension": 9, + "topYDimension": 9 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json new file mode 100644 index 00000000000..0e0f69ad204 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json @@ -0,0 +1,114 @@ +{ + "ordering": [["A1"], ["A2"], ["A3"], ["A4"]], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00259"], + "links": [ + "https://opentrons.com/products/opentrons-tough-72-ml-4-well-reservoir-25-count/" + ] + }, + "metadata": { + "displayName": "Opentrons Tough 72 mL 4 Well Reservoir", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 45.3 + }, + "wells": { + "A1": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 26.43, + "yDimension": 70.7, + "totalLiquidVolume": 72000, + "x": 22.74, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A2": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 26.43, + "yDimension": 70.7, + "totalLiquidVolume": 72000, + "x": 50.17, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A3": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 26.43, + "yDimension": 70.7, + "totalLiquidVolume": 72000, + "x": 77.6, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + }, + "A4": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 26.43, + "yDimension": 70.7, + "totalLiquidVolume": 72000, + "x": 105.03, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1", "A2", "A3", "A4"] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "opentrons_tough_4_reservoir_72ml" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "MainWellGeometry": { + "sections": [ + { + "shape": "cuboidal", + "bottomHeight": 2.42, + "topHeight": 42.3, + "bottomXDimension": 25.74, + "bottomYDimension": 70.01, + "topXDimension": 26.43, + "topYDimension": 70.7 + }, + { + "shape": "cuboidal", + "bottomHeight": 0, + "topHeight": 2.42, + "bottomXDimension": 2.96, + "bottomYDimension": 67.11, + "topXDimension": 25.74, + "topYDimension": 70.01 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json b/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json new file mode 100644 index 00000000000..7015f700df2 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json @@ -0,0 +1,134 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Tough PCR Auto-Sealing Lid", + "displayCategory": "lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 85.48, + "zDimension": 12.8 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_tough_pcr_auto_sealing_lid" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "opentrons_tough_pcr_auto_sealing_lid": { + "x": 0, + "y": 0, + "z": 6.492 + }, + "armadillo_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "biorad_96_wellplate_200ul_pcr": { + "x": 0, + "y": 0, + "z": 8.08 + }, + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "stackLimit": 5, + "compatibleParentLabware": [ + "armadillo_96_wellplate_200ul_pcr_full_skirt", + "opentrons_96_wellplate_200ul_pcr_full_skirt", + "opentrons_tough_pcr_auto_sealing_lid", + "biorad_96_wellplate_200ul_pcr", + "opentrons_flex_deck_riser", + "protocol_engine_lid_stack_object" + ], + "gripForce": 15, + "gripHeightFromLabwareBottom": 7.91, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 1.5 + }, + "dropOffset": { + "x": 0, + "y": 0.52, + "z": -6 + } + }, + "lidOffsets": { + "pickUpOffset": { + "x": 0.5, + "y": 0, + "z": -5 + }, + "dropOffset": { + "x": 0.5, + "y": 0, + "z": -1 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json b/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json new file mode 100644 index 00000000000..50aea574a38 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json @@ -0,0 +1,96 @@ +{ + "allowedRoles": ["labware", "lid"], + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00261"], + "links": [ + "https://opentrons.com/products/opentrons-tough-universal-lid-50-count/" + ] + }, + "metadata": { + "displayName": "Opentrons Tough Universal Lid", + "displayCategory": "lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 8.8 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "isDeckSlotCompatible": false, + "loadName": "opentrons_tough_universal_lid" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 6.6 + }, + "opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 7.1 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + }, + "opentrons_tough_universal_lid": { + "x": 0, + "y": 0, + "z": 0.8 + } + }, + "stackLimit": 5, + "gripForce": 10, + "gripHeightFromLabwareBottom": 5.3, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 3 + } + }, + "lidDisposalOffsets": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json new file mode 100644 index 00000000000..6e852c2fefc --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json @@ -0,0 +1,151 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Universal Flat Heater-Shaker Adapter", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 12 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_universal_flat_adapter" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "A1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "B1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "C1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "D1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "A3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "B3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "C3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "D3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json new file mode 100644 index 00000000000..56cd685b7e8 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json @@ -0,0 +1,4710 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Universal Flat Heater-Shaker Adapter with Corning 384 Well Plate 112 µl Flat", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 17.9 + }, + "wells": { + "A1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 76.48, + "z": 6.37 + }, + "B1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 71.98, + "z": 6.37 + }, + "C1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 67.48, + "z": 6.37 + }, + "D1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 62.98, + "z": 6.37 + }, + "E1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 58.48, + "z": 6.37 + }, + "F1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 53.98, + "z": 6.37 + }, + "G1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 49.48, + "z": 6.37 + }, + "H1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 44.98, + "z": 6.37 + }, + "I1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 40.48, + "z": 6.37 + }, + "J1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 35.98, + "z": 6.37 + }, + "K1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 31.48, + "z": 6.37 + }, + "L1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 26.98, + "z": 6.37 + }, + "M1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 22.48, + "z": 6.37 + }, + "N1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 17.98, + "z": 6.37 + }, + "O1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 13.48, + "z": 6.37 + }, + "P1": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 12.12, + "y": 8.98, + "z": 6.37 + }, + "A2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 76.48, + "z": 6.37 + }, + "B2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 71.98, + "z": 6.37 + }, + "C2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 67.48, + "z": 6.37 + }, + "D2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 62.98, + "z": 6.37 + }, + "E2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 58.48, + "z": 6.37 + }, + "F2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 53.98, + "z": 6.37 + }, + "G2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 49.48, + "z": 6.37 + }, + "H2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 44.98, + "z": 6.37 + }, + "I2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 40.48, + "z": 6.37 + }, + "J2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 35.98, + "z": 6.37 + }, + "K2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 31.48, + "z": 6.37 + }, + "L2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 26.98, + "z": 6.37 + }, + "M2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 22.48, + "z": 6.37 + }, + "N2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 17.98, + "z": 6.37 + }, + "O2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 13.48, + "z": 6.37 + }, + "P2": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 16.62, + "y": 8.98, + "z": 6.37 + }, + "A3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 76.48, + "z": 6.37 + }, + "B3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 71.98, + "z": 6.37 + }, + "C3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 67.48, + "z": 6.37 + }, + "D3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 62.98, + "z": 6.37 + }, + "E3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 58.48, + "z": 6.37 + }, + "F3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 53.98, + "z": 6.37 + }, + "G3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 49.48, + "z": 6.37 + }, + "H3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 44.98, + "z": 6.37 + }, + "I3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 40.48, + "z": 6.37 + }, + "J3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 35.98, + "z": 6.37 + }, + "K3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 31.48, + "z": 6.37 + }, + "L3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 26.98, + "z": 6.37 + }, + "M3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 22.48, + "z": 6.37 + }, + "N3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 17.98, + "z": 6.37 + }, + "O3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 13.48, + "z": 6.37 + }, + "P3": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 21.12, + "y": 8.98, + "z": 6.37 + }, + "A4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 76.48, + "z": 6.37 + }, + "B4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 71.98, + "z": 6.37 + }, + "C4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 67.48, + "z": 6.37 + }, + "D4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 62.98, + "z": 6.37 + }, + "E4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 58.48, + "z": 6.37 + }, + "F4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 53.98, + "z": 6.37 + }, + "G4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 49.48, + "z": 6.37 + }, + "H4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 44.98, + "z": 6.37 + }, + "I4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 40.48, + "z": 6.37 + }, + "J4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 35.98, + "z": 6.37 + }, + "K4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 31.48, + "z": 6.37 + }, + "L4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 26.98, + "z": 6.37 + }, + "M4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 22.48, + "z": 6.37 + }, + "N4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 17.98, + "z": 6.37 + }, + "O4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 13.48, + "z": 6.37 + }, + "P4": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 25.62, + "y": 8.98, + "z": 6.37 + }, + "A5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 76.48, + "z": 6.37 + }, + "B5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 71.98, + "z": 6.37 + }, + "C5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 67.48, + "z": 6.37 + }, + "D5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 62.98, + "z": 6.37 + }, + "E5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 58.48, + "z": 6.37 + }, + "F5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 53.98, + "z": 6.37 + }, + "G5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 49.48, + "z": 6.37 + }, + "H5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 44.98, + "z": 6.37 + }, + "I5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 40.48, + "z": 6.37 + }, + "J5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 35.98, + "z": 6.37 + }, + "K5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 31.48, + "z": 6.37 + }, + "L5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 26.98, + "z": 6.37 + }, + "M5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 22.48, + "z": 6.37 + }, + "N5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 17.98, + "z": 6.37 + }, + "O5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 13.48, + "z": 6.37 + }, + "P5": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 30.12, + "y": 8.98, + "z": 6.37 + }, + "A6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 76.48, + "z": 6.37 + }, + "B6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 71.98, + "z": 6.37 + }, + "C6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 67.48, + "z": 6.37 + }, + "D6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 62.98, + "z": 6.37 + }, + "E6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 58.48, + "z": 6.37 + }, + "F6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 53.98, + "z": 6.37 + }, + "G6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 49.48, + "z": 6.37 + }, + "H6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 44.98, + "z": 6.37 + }, + "I6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 40.48, + "z": 6.37 + }, + "J6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 35.98, + "z": 6.37 + }, + "K6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 31.48, + "z": 6.37 + }, + "L6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 26.98, + "z": 6.37 + }, + "M6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 22.48, + "z": 6.37 + }, + "N6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 17.98, + "z": 6.37 + }, + "O6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 13.48, + "z": 6.37 + }, + "P6": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 34.62, + "y": 8.98, + "z": 6.37 + }, + "A7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 76.48, + "z": 6.37 + }, + "B7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 71.98, + "z": 6.37 + }, + "C7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 67.48, + "z": 6.37 + }, + "D7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 62.98, + "z": 6.37 + }, + "E7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 58.48, + "z": 6.37 + }, + "F7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 53.98, + "z": 6.37 + }, + "G7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 49.48, + "z": 6.37 + }, + "H7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 44.98, + "z": 6.37 + }, + "I7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 40.48, + "z": 6.37 + }, + "J7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 35.98, + "z": 6.37 + }, + "K7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 31.48, + "z": 6.37 + }, + "L7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 26.98, + "z": 6.37 + }, + "M7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 22.48, + "z": 6.37 + }, + "N7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 17.98, + "z": 6.37 + }, + "O7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 13.48, + "z": 6.37 + }, + "P7": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 39.12, + "y": 8.98, + "z": 6.37 + }, + "A8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 76.48, + "z": 6.37 + }, + "B8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 71.98, + "z": 6.37 + }, + "C8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 67.48, + "z": 6.37 + }, + "D8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 62.98, + "z": 6.37 + }, + "E8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 58.48, + "z": 6.37 + }, + "F8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 53.98, + "z": 6.37 + }, + "G8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 49.48, + "z": 6.37 + }, + "H8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 44.98, + "z": 6.37 + }, + "I8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 40.48, + "z": 6.37 + }, + "J8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 35.98, + "z": 6.37 + }, + "K8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 31.48, + "z": 6.37 + }, + "L8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 26.98, + "z": 6.37 + }, + "M8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 22.48, + "z": 6.37 + }, + "N8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 17.98, + "z": 6.37 + }, + "O8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 13.48, + "z": 6.37 + }, + "P8": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 43.62, + "y": 8.98, + "z": 6.37 + }, + "A9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 76.48, + "z": 6.37 + }, + "B9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 71.98, + "z": 6.37 + }, + "C9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 67.48, + "z": 6.37 + }, + "D9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 62.98, + "z": 6.37 + }, + "E9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 58.48, + "z": 6.37 + }, + "F9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 53.98, + "z": 6.37 + }, + "G9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 49.48, + "z": 6.37 + }, + "H9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 44.98, + "z": 6.37 + }, + "I9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 40.48, + "z": 6.37 + }, + "J9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 35.98, + "z": 6.37 + }, + "K9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 31.48, + "z": 6.37 + }, + "L9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 26.98, + "z": 6.37 + }, + "M9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 22.48, + "z": 6.37 + }, + "N9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 17.98, + "z": 6.37 + }, + "O9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 13.48, + "z": 6.37 + }, + "P9": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 48.12, + "y": 8.98, + "z": 6.37 + }, + "A10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 76.48, + "z": 6.37 + }, + "B10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 71.98, + "z": 6.37 + }, + "C10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 67.48, + "z": 6.37 + }, + "D10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 62.98, + "z": 6.37 + }, + "E10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 58.48, + "z": 6.37 + }, + "F10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 53.98, + "z": 6.37 + }, + "G10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 49.48, + "z": 6.37 + }, + "H10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 44.98, + "z": 6.37 + }, + "I10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 40.48, + "z": 6.37 + }, + "J10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 35.98, + "z": 6.37 + }, + "K10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 31.48, + "z": 6.37 + }, + "L10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 26.98, + "z": 6.37 + }, + "M10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 22.48, + "z": 6.37 + }, + "N10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 17.98, + "z": 6.37 + }, + "O10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 13.48, + "z": 6.37 + }, + "P10": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 52.62, + "y": 8.98, + "z": 6.37 + }, + "A11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 76.48, + "z": 6.37 + }, + "B11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 71.98, + "z": 6.37 + }, + "C11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 67.48, + "z": 6.37 + }, + "D11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 62.98, + "z": 6.37 + }, + "E11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 58.48, + "z": 6.37 + }, + "F11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 53.98, + "z": 6.37 + }, + "G11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 49.48, + "z": 6.37 + }, + "H11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 44.98, + "z": 6.37 + }, + "I11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 40.48, + "z": 6.37 + }, + "J11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 35.98, + "z": 6.37 + }, + "K11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 31.48, + "z": 6.37 + }, + "L11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 26.98, + "z": 6.37 + }, + "M11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 22.48, + "z": 6.37 + }, + "N11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 17.98, + "z": 6.37 + }, + "O11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 13.48, + "z": 6.37 + }, + "P11": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 57.12, + "y": 8.98, + "z": 6.37 + }, + "A12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 76.48, + "z": 6.37 + }, + "B12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 71.98, + "z": 6.37 + }, + "C12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 67.48, + "z": 6.37 + }, + "D12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 62.98, + "z": 6.37 + }, + "E12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 58.48, + "z": 6.37 + }, + "F12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 53.98, + "z": 6.37 + }, + "G12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 49.48, + "z": 6.37 + }, + "H12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 44.98, + "z": 6.37 + }, + "I12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 40.48, + "z": 6.37 + }, + "J12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 35.98, + "z": 6.37 + }, + "K12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 31.48, + "z": 6.37 + }, + "L12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 26.98, + "z": 6.37 + }, + "M12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 22.48, + "z": 6.37 + }, + "N12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 17.98, + "z": 6.37 + }, + "O12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 13.48, + "z": 6.37 + }, + "P12": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 61.62, + "y": 8.98, + "z": 6.37 + }, + "A13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 76.48, + "z": 6.37 + }, + "B13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 71.98, + "z": 6.37 + }, + "C13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 67.48, + "z": 6.37 + }, + "D13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 62.98, + "z": 6.37 + }, + "E13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 58.48, + "z": 6.37 + }, + "F13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 53.98, + "z": 6.37 + }, + "G13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 49.48, + "z": 6.37 + }, + "H13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 44.98, + "z": 6.37 + }, + "I13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 40.48, + "z": 6.37 + }, + "J13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 35.98, + "z": 6.37 + }, + "K13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 31.48, + "z": 6.37 + }, + "L13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 26.98, + "z": 6.37 + }, + "M13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 22.48, + "z": 6.37 + }, + "N13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 17.98, + "z": 6.37 + }, + "O13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 13.48, + "z": 6.37 + }, + "P13": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 66.12, + "y": 8.98, + "z": 6.37 + }, + "A14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 76.48, + "z": 6.37 + }, + "B14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 71.98, + "z": 6.37 + }, + "C14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 67.48, + "z": 6.37 + }, + "D14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 62.98, + "z": 6.37 + }, + "E14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 58.48, + "z": 6.37 + }, + "F14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 53.98, + "z": 6.37 + }, + "G14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 49.48, + "z": 6.37 + }, + "H14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 44.98, + "z": 6.37 + }, + "I14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 40.48, + "z": 6.37 + }, + "J14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 35.98, + "z": 6.37 + }, + "K14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 31.48, + "z": 6.37 + }, + "L14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 26.98, + "z": 6.37 + }, + "M14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 22.48, + "z": 6.37 + }, + "N14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 17.98, + "z": 6.37 + }, + "O14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 13.48, + "z": 6.37 + }, + "P14": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 70.62, + "y": 8.98, + "z": 6.37 + }, + "A15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 76.48, + "z": 6.37 + }, + "B15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 71.98, + "z": 6.37 + }, + "C15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 67.48, + "z": 6.37 + }, + "D15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 62.98, + "z": 6.37 + }, + "E15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 58.48, + "z": 6.37 + }, + "F15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 53.98, + "z": 6.37 + }, + "G15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 49.48, + "z": 6.37 + }, + "H15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 44.98, + "z": 6.37 + }, + "I15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 40.48, + "z": 6.37 + }, + "J15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 35.98, + "z": 6.37 + }, + "K15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 31.48, + "z": 6.37 + }, + "L15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 26.98, + "z": 6.37 + }, + "M15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 22.48, + "z": 6.37 + }, + "N15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 17.98, + "z": 6.37 + }, + "O15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 13.48, + "z": 6.37 + }, + "P15": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 75.12, + "y": 8.98, + "z": 6.37 + }, + "A16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 76.48, + "z": 6.37 + }, + "B16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 71.98, + "z": 6.37 + }, + "C16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 67.48, + "z": 6.37 + }, + "D16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 62.98, + "z": 6.37 + }, + "E16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 58.48, + "z": 6.37 + }, + "F16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 53.98, + "z": 6.37 + }, + "G16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 49.48, + "z": 6.37 + }, + "H16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 44.98, + "z": 6.37 + }, + "I16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 40.48, + "z": 6.37 + }, + "J16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 35.98, + "z": 6.37 + }, + "K16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 31.48, + "z": 6.37 + }, + "L16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 26.98, + "z": 6.37 + }, + "M16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 22.48, + "z": 6.37 + }, + "N16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 17.98, + "z": 6.37 + }, + "O16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 13.48, + "z": 6.37 + }, + "P16": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 79.62, + "y": 8.98, + "z": 6.37 + }, + "A17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 76.48, + "z": 6.37 + }, + "B17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 71.98, + "z": 6.37 + }, + "C17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 67.48, + "z": 6.37 + }, + "D17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 62.98, + "z": 6.37 + }, + "E17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 58.48, + "z": 6.37 + }, + "F17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 53.98, + "z": 6.37 + }, + "G17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 49.48, + "z": 6.37 + }, + "H17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 44.98, + "z": 6.37 + }, + "I17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 40.48, + "z": 6.37 + }, + "J17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 35.98, + "z": 6.37 + }, + "K17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 31.48, + "z": 6.37 + }, + "L17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 26.98, + "z": 6.37 + }, + "M17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 22.48, + "z": 6.37 + }, + "N17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 17.98, + "z": 6.37 + }, + "O17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 13.48, + "z": 6.37 + }, + "P17": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 84.12, + "y": 8.98, + "z": 6.37 + }, + "A18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 76.48, + "z": 6.37 + }, + "B18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 71.98, + "z": 6.37 + }, + "C18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 67.48, + "z": 6.37 + }, + "D18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 62.98, + "z": 6.37 + }, + "E18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 58.48, + "z": 6.37 + }, + "F18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 53.98, + "z": 6.37 + }, + "G18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 49.48, + "z": 6.37 + }, + "H18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 44.98, + "z": 6.37 + }, + "I18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 40.48, + "z": 6.37 + }, + "J18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 35.98, + "z": 6.37 + }, + "K18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 31.48, + "z": 6.37 + }, + "L18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 26.98, + "z": 6.37 + }, + "M18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 22.48, + "z": 6.37 + }, + "N18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 17.98, + "z": 6.37 + }, + "O18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 13.48, + "z": 6.37 + }, + "P18": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 88.62, + "y": 8.98, + "z": 6.37 + }, + "A19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 76.48, + "z": 6.37 + }, + "B19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 71.98, + "z": 6.37 + }, + "C19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 67.48, + "z": 6.37 + }, + "D19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 62.98, + "z": 6.37 + }, + "E19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 58.48, + "z": 6.37 + }, + "F19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 53.98, + "z": 6.37 + }, + "G19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 49.48, + "z": 6.37 + }, + "H19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 44.98, + "z": 6.37 + }, + "I19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 40.48, + "z": 6.37 + }, + "J19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 35.98, + "z": 6.37 + }, + "K19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 31.48, + "z": 6.37 + }, + "L19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 26.98, + "z": 6.37 + }, + "M19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 22.48, + "z": 6.37 + }, + "N19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 17.98, + "z": 6.37 + }, + "O19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 13.48, + "z": 6.37 + }, + "P19": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 93.12, + "y": 8.98, + "z": 6.37 + }, + "A20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 76.48, + "z": 6.37 + }, + "B20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 71.98, + "z": 6.37 + }, + "C20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 67.48, + "z": 6.37 + }, + "D20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 62.98, + "z": 6.37 + }, + "E20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 58.48, + "z": 6.37 + }, + "F20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 53.98, + "z": 6.37 + }, + "G20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 49.48, + "z": 6.37 + }, + "H20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 44.98, + "z": 6.37 + }, + "I20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 40.48, + "z": 6.37 + }, + "J20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 35.98, + "z": 6.37 + }, + "K20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 31.48, + "z": 6.37 + }, + "L20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 26.98, + "z": 6.37 + }, + "M20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 22.48, + "z": 6.37 + }, + "N20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 17.98, + "z": 6.37 + }, + "O20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 13.48, + "z": 6.37 + }, + "P20": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 97.62, + "y": 8.98, + "z": 6.37 + }, + "A21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 76.48, + "z": 6.37 + }, + "B21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 71.98, + "z": 6.37 + }, + "C21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 67.48, + "z": 6.37 + }, + "D21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 62.98, + "z": 6.37 + }, + "E21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 58.48, + "z": 6.37 + }, + "F21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 53.98, + "z": 6.37 + }, + "G21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 49.48, + "z": 6.37 + }, + "H21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 44.98, + "z": 6.37 + }, + "I21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 40.48, + "z": 6.37 + }, + "J21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 35.98, + "z": 6.37 + }, + "K21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 31.48, + "z": 6.37 + }, + "L21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 26.98, + "z": 6.37 + }, + "M21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 22.48, + "z": 6.37 + }, + "N21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 17.98, + "z": 6.37 + }, + "O21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 13.48, + "z": 6.37 + }, + "P21": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 102.12, + "y": 8.98, + "z": 6.37 + }, + "A22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 76.48, + "z": 6.37 + }, + "B22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 71.98, + "z": 6.37 + }, + "C22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 67.48, + "z": 6.37 + }, + "D22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 62.98, + "z": 6.37 + }, + "E22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 58.48, + "z": 6.37 + }, + "F22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 53.98, + "z": 6.37 + }, + "G22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 49.48, + "z": 6.37 + }, + "H22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 44.98, + "z": 6.37 + }, + "I22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 40.48, + "z": 6.37 + }, + "J22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 35.98, + "z": 6.37 + }, + "K22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 31.48, + "z": 6.37 + }, + "L22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 26.98, + "z": 6.37 + }, + "M22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 22.48, + "z": 6.37 + }, + "N22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 17.98, + "z": 6.37 + }, + "O22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 13.48, + "z": 6.37 + }, + "P22": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 106.62, + "y": 8.98, + "z": 6.37 + }, + "A23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 76.48, + "z": 6.37 + }, + "B23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 71.98, + "z": 6.37 + }, + "C23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 67.48, + "z": 6.37 + }, + "D23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 62.98, + "z": 6.37 + }, + "E23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 58.48, + "z": 6.37 + }, + "F23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 53.98, + "z": 6.37 + }, + "G23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 49.48, + "z": 6.37 + }, + "H23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 44.98, + "z": 6.37 + }, + "I23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 40.48, + "z": 6.37 + }, + "J23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 35.98, + "z": 6.37 + }, + "K23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 31.48, + "z": 6.37 + }, + "L23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 26.98, + "z": 6.37 + }, + "M23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 22.48, + "z": 6.37 + }, + "N23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 17.98, + "z": 6.37 + }, + "O23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 13.48, + "z": 6.37 + }, + "P23": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 111.12, + "y": 8.98, + "z": 6.37 + }, + "A24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 76.48, + "z": 6.37 + }, + "B24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 71.98, + "z": 6.37 + }, + "C24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 67.48, + "z": 6.37 + }, + "D24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 62.98, + "z": 6.37 + }, + "E24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 58.48, + "z": 6.37 + }, + "F24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 53.98, + "z": 6.37 + }, + "G24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 49.48, + "z": 6.37 + }, + "H24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 44.98, + "z": 6.37 + }, + "I24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 40.48, + "z": 6.37 + }, + "J24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 35.98, + "z": 6.37 + }, + "K24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 31.48, + "z": 6.37 + }, + "L24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 26.98, + "z": 6.37 + }, + "M24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 22.48, + "z": 6.37 + }, + "N24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 17.98, + "z": 6.37 + }, + "O24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 13.48, + "z": 6.37 + }, + "P24": { + "depth": 11.43, + "totalLiquidVolume": 112, + "shape": "rectangular", + "xDimension": 3.63, + "yDimension": 3.63, + "x": 115.62, + "y": 8.98, + "z": 6.37 + } + }, + "groups": [ + { + "metadata": { + "displayName": "Corning 384 Well Plate 112 µL Flat", + "displayCategory": "wellPlate", + "wellBottomShape": "flat" + }, + "brand": { + "brand": "Corning", + "brandId": ["3640", "3662", "3680", "3700", "3701", "3702"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + } + ], + "parameters": { + "format": "384Standard", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json new file mode 100644 index 00000000000..d603c205dc5 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json @@ -0,0 +1,151 @@ +{ + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Opentrons Universal Flat Heater-Shaker Adapter Type B", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 9.8 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_universal_flat_adapter_type_b" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "A1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "B1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "C1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "D1": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": 2.0, + "y": 0, + "z": 0 + } + }, + "A3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "B3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "C3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + }, + "D3": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "dropOffset": { + "x": -2.0, + "y": 0, + "z": 0 + } + } + } +} diff --git a/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json b/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json new file mode 100644 index 00000000000..a0f5fb03b60 --- /dev/null +++ b/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json @@ -0,0 +1,48 @@ +{ + "allowedRoles": ["system"], + "ordering": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "metadata": { + "displayName": "Protocol Engine Lid Stack", + "displayCategory": "system", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 0, + "yDimension": 0, + "zDimension": 0 + }, + "wells": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "parameters": { + "format": "irregular", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "protocol_engine_lid_stack_object" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + } + } +} diff --git a/shared-data/labware/definitions/2/smc_384_read_plate/draft.json b/shared-data/labware/definitions/2/smc_384_read_plate/draft.json new file mode 100644 index 00000000000..733059e3f63 --- /dev/null +++ b/shared-data/labware/definitions/2/smc_384_read_plate/draft.json @@ -0,0 +1,5100 @@ +{ + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "brand": { + "brand": "smc", + "brandId": [] + }, + "metadata": { + "displayName": "SMC 384well Commercial Read Plate", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 14.71 + }, + "wells": { + "A1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P1": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 12.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P2": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 16.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P3": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 21.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P4": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 25.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P5": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 30.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P6": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 34.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P7": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 39.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P8": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 43.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P9": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 48.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P10": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 52.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P11": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 57.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P12": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 61.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P13": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 66.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P14": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 70.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P15": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 75.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P16": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 79.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P17": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 84.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P18": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 88.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "yDimension": 3.6, + "xDimension": 3.6, + "x": 93.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P19": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 93.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P20": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 97.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P21": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 102.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P22": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 106.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P23": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 111.13, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "A24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 76.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "B24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 71.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "C24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 67.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "D24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 62.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "E24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 58.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "F24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 53.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "G24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 49.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "H24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 44.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "I24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 40.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "J24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 35.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "K24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 31.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "L24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 26.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "M24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 22.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "N24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 17.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "O24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 13.49, + "z": 2, + "geometryDefinitionId": "rectangularWell" + }, + "P24": { + "depth": 12.71, + "totalLiquidVolume": 126, + "shape": "rectangular", + "xDimension": 3.6, + "yDimension": 3.6, + "x": 115.63, + "y": 8.99, + "z": 2, + "geometryDefinitionId": "rectangularWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + } + ], + "parameters": { + "format": "384Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "smc_384_read_plate" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "rectangularWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 3.6, + "topYDimension": 3.6, + "bottomXDimension": 3.17, + "bottomYDimension": 3.17, + "topHeight": 12.71, + "bottomHeight": 0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json new file mode 100644 index 00000000000..80b262dcd12 --- /dev/null +++ b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json @@ -0,0 +1,1141 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Thermo Scientific", + "brandId": ["260251", "260252"], + "links": ["https://www.thermofisher.com/order/catalog/product/260251"] + }, + "metadata": { + "displayName": "Thermo Scientific Nunc 96 Well Plate 1300 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 31.6 + }, + "wells": { + "A1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 14.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 23.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 32.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 41.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 50.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 59.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 68.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 77.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 86.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 95.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 104.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 74.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 65.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 56.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 47.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 38.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 29.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 20.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 29.1, + "totalLiquidVolume": 1300, + "shape": "circular", + "diameter": 8.4, + "x": 113.4, + "y": 11.27, + "z": 2.5, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 5.5, + "loadName": "thermoscientificnunc_96_wellplate_1300ul" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "thermoscientificnunc_96_wellplate_1300ul": { + "x": 0, + "y": 0, + "z": 1.35 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 7.2, + "topDiameter": 8.4, + "topHeight": 29.1, + "bottomHeight": 3.6 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.6, + "topHeight": 3.6, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json new file mode 100644 index 00000000000..32affc57556 --- /dev/null +++ b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json @@ -0,0 +1,1141 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Thermo Scientific", + "brandId": ["278743", "278752"], + "links": ["https://www.thermofisher.com/order/catalog/product/278743"] + }, + "metadata": { + "displayName": "Thermo Scientific Nunc 96 Well Plate 2000 µL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 43.6 + }, + "wells": { + "A1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 14.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 23.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 32.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 41.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 50.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 59.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 68.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 77.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 86.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 95.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 104.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 74.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 65.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 56.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 47.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 38.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 29.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 20.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 41.5, + "totalLiquidVolume": 2000, + "shape": "circular", + "diameter": 8.5, + "x": 113.3, + "y": 11.2, + "z": 2.1, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 6, + "loadName": "thermoscientificnunc_96_wellplate_2000ul" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "thermoscientificnunc_96_wellplate_2000ul": { + "x": 0, + "y": 0, + "z": 1.55 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 7.2, + "topDiameter": 8.5, + "topHeight": 41.5, + "bottomHeight": 3.6 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.6, + "topHeight": 3.6, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json b/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json new file mode 100644 index 00000000000..e0e8fc72094 --- /dev/null +++ b/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json @@ -0,0 +1,1017 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "TipOne", + "brandId": ["1111-0200"], + "links": ["https://www.usascientific.com/200ul-tipone-stacks.aspx"] + }, + "metadata": { + "displayName": "TipOne 96 Tip Rack 200 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 63.9 + }, + "namespace": "opentrons", + "schemaVersion": 2, + "version": 1, + "wells": { + "H1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 9.25, + "z": 53.36 + }, + "G1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 18.25, + "z": 53.36 + }, + "F1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 27.25, + "z": 53.36 + }, + "E1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 36.25, + "z": 53.36 + }, + "D1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 45.25, + "z": 53.36 + }, + "C1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 54.25, + "z": 53.36 + }, + "B1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 63.25, + "z": 53.36 + }, + "A1": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 13.69, + "y": 72.25, + "z": 53.36 + }, + "H2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 9.25, + "z": 53.36 + }, + "G2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 18.25, + "z": 53.36 + }, + "F2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 27.25, + "z": 53.36 + }, + "E2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 36.25, + "z": 53.36 + }, + "D2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 45.25, + "z": 53.36 + }, + "C2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 54.25, + "z": 53.36 + }, + "B2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 63.25, + "z": 53.36 + }, + "A2": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 22.69, + "y": 72.25, + "z": 53.36 + }, + "H3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 9.25, + "z": 53.36 + }, + "G3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 18.25, + "z": 53.36 + }, + "F3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 27.25, + "z": 53.36 + }, + "E3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 36.25, + "z": 53.36 + }, + "D3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 45.25, + "z": 53.36 + }, + "C3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 54.25, + "z": 53.36 + }, + "B3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 63.25, + "z": 53.36 + }, + "A3": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 31.69, + "y": 72.25, + "z": 53.36 + }, + "H4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 9.25, + "z": 53.36 + }, + "G4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 18.25, + "z": 53.36 + }, + "F4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 27.25, + "z": 53.36 + }, + "E4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 36.25, + "z": 53.36 + }, + "D4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 45.25, + "z": 53.36 + }, + "C4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 54.25, + "z": 53.36 + }, + "B4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 63.25, + "z": 53.36 + }, + "A4": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 40.69, + "y": 72.25, + "z": 53.36 + }, + "H5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 9.25, + "z": 53.36 + }, + "G5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 18.25, + "z": 53.36 + }, + "F5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 27.25, + "z": 53.36 + }, + "E5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 36.25, + "z": 53.36 + }, + "D5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 45.25, + "z": 53.36 + }, + "C5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 54.25, + "z": 53.36 + }, + "B5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 63.25, + "z": 53.36 + }, + "A5": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 49.69, + "y": 72.25, + "z": 53.36 + }, + "H6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 9.25, + "z": 53.36 + }, + "G6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 18.25, + "z": 53.36 + }, + "F6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 27.25, + "z": 53.36 + }, + "E6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 36.25, + "z": 53.36 + }, + "D6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 45.25, + "z": 53.36 + }, + "C6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 54.25, + "z": 53.36 + }, + "B6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 63.25, + "z": 53.36 + }, + "A6": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 58.69, + "y": 72.25, + "z": 53.36 + }, + "H7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 9.25, + "z": 53.36 + }, + "G7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 18.25, + "z": 53.36 + }, + "F7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 27.25, + "z": 53.36 + }, + "E7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 36.25, + "z": 53.36 + }, + "D7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 45.25, + "z": 53.36 + }, + "C7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 54.25, + "z": 53.36 + }, + "B7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 63.25, + "z": 53.36 + }, + "A7": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 67.69, + "y": 72.25, + "z": 53.36 + }, + "H8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 9.25, + "z": 53.36 + }, + "G8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 18.25, + "z": 53.36 + }, + "F8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 27.25, + "z": 53.36 + }, + "E8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 36.25, + "z": 53.36 + }, + "D8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 45.25, + "z": 53.36 + }, + "C8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 54.25, + "z": 53.36 + }, + "B8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 63.25, + "z": 53.36 + }, + "A8": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 76.69, + "y": 72.25, + "z": 53.36 + }, + "H9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 9.25, + "z": 53.36 + }, + "G9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 18.25, + "z": 53.36 + }, + "F9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 27.25, + "z": 53.36 + }, + "E9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 36.25, + "z": 53.36 + }, + "D9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 45.25, + "z": 53.36 + }, + "C9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 54.25, + "z": 53.36 + }, + "B9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 63.25, + "z": 53.36 + }, + "A9": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 85.69, + "y": 72.25, + "z": 53.36 + }, + "H10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 9.25, + "z": 53.36 + }, + "G10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 18.25, + "z": 53.36 + }, + "F10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 27.25, + "z": 53.36 + }, + "E10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 36.25, + "z": 53.36 + }, + "D10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 45.25, + "z": 53.36 + }, + "C10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 54.25, + "z": 53.36 + }, + "B10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 63.25, + "z": 53.36 + }, + "A10": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 94.69, + "y": 72.25, + "z": 53.36 + }, + "H11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 9.25, + "z": 53.36 + }, + "G11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 18.25, + "z": 53.36 + }, + "F11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 27.25, + "z": 53.36 + }, + "E11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 36.25, + "z": 53.36 + }, + "D11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 45.25, + "z": 53.36 + }, + "C11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 54.25, + "z": 53.36 + }, + "B11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 63.25, + "z": 53.36 + }, + "A11": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 103.69, + "y": 72.25, + "z": 53.36 + }, + "H12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 9.25, + "z": 53.36 + }, + "G12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 18.25, + "z": 53.36 + }, + "F12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 27.25, + "z": 53.36 + }, + "E12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 36.25, + "z": 53.36 + }, + "D12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 45.25, + "z": 53.36 + }, + "C12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 54.25, + "z": 53.36 + }, + "B12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 63.25, + "z": 53.36 + }, + "A12": { + "depth": 10.54, + "shape": "circular", + "diameter": 6.4, + "totalLiquidVolume": 200, + "x": 112.69, + "y": 72.25, + "z": 53.36 + } + }, + "parameters": { + "format": "96Standard", + "isTiprack": true, + "tipOverlap": 6.1, + "tipLength": 50.93, + "isMagneticModuleCompatible": false, + "loadName": "tipone_96_tiprack_200ul" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": {} + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + } +} diff --git a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json new file mode 100644 index 00000000000..83f22fb0a3e --- /dev/null +++ b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json @@ -0,0 +1,237 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "metadata": { + "displayName": "USA Scientific 12 Well Reservoir 22 mL", + "displayVolumeUnits": "mL", + "displayCategory": "reservoir", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.8, + "zDimension": 44.2 + }, + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "usascientific_12_reservoir_22ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "wells": { + "A1": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 13.94, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 23.03, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 32.12, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 41.21, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 50.3, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 59.39, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 68.48, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 77.57, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 86.66, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 95.75, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 104.84, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.33, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 113.93, + "y": 42.9, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "brand": { + "brand": "USA Scientific", + "brandId": ["1061-8150"], + "links": [ + "https://www.usascientific.com/12-channel-automation-reservoir.aspx" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.317, + "topYDimension": 71.88, + "bottomXDimension": 8.139, + "bottomYDimension": 71.75, + "topHeight": 41.75, + "bottomHeight": 4.0 + }, + { + "shape": "squaredcone", + "bottomCrossSection": "circular", + "circleDiameter": 1.06, + "rectangleXDimension": 8.1, + "rectangleYDimension": 8.75, + "topHeight": 4.0, + "bottomHeight": 0.25, + "xCount": 1, + "yCount": 8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 0.687, + "topHeight": 0.25, + "bottomHeight": 0.0, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json new file mode 100644 index 00000000000..0267c43a971 --- /dev/null +++ b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json @@ -0,0 +1,1243 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "USA Scientific", + "brandId": ["1896-2000"], + "links": [ + "https://www.usascientific.com/2ml-deep96-well-plateone-bulk.aspx" + ] + }, + "metadata": { + "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 44.1 + }, + "wells": { + "H1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 11.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 20.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 29.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 38.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 47.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 56.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 65.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 74.2, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 14.94, + "loadName": "usascientific_96_wellplate_2.4ml_deep" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "usascientific_96_wellplate_2.4ml_deep": { + "x": 0, + "y": 0, + "z": 1.5 + } + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.2, + "topYDimension": 8.2, + "bottomXDimension": 7.52, + "bottomYDimension": 7.52, + "topHeight": 41.3, + "bottomHeight": 2.63 + }, + { + "shape": "cuboidal", + "topXDimension": 7.52, + "topYDimension": 7.52, + "bottomXDimension": 0.25, + "bottomYDimension": 0.25, + "topHeight": 2.63, + "bottomHeight": 0.0 + } + ] + } + } +} From d506c3d43067891766e426bcdafd4457f7e596a4 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 6 May 2025 17:40:26 -0400 Subject: [PATCH 04/20] Sync dimensions, spacing, diameter, and depth from the hardware spreadsheet, via script. Notes: - Run import_dimensions_from_hw.py. - Manually fix up the output to reduce the diff. e.g. undo changes like 0->0.0. - Opentrons tube rack labware like opentrons_24_tuberack_generic_2ml_screwcap are incomplete in the spreadsheet and couldn't be parsed by the script. They need separate manual attention. --- .../2/agilent_1_reservoir_290ml/draft.json | 8 +- .../2/axygen_1_reservoir_90ml/draft.json | 12 +- .../biorad_96_wellplate_200ul_pcr/draft.json | 192 +- .../draft.json | 48 +- .../draft.json | 240 +- .../draft.json | 2304 ++++++++--------- .../draft.json | 96 +- .../draft.json | 48 +- .../draft.json | 768 +++--- .../2/nest_12_reservoir_15ml/draft.json | 72 +- .../2/nest_1_reservoir_195ml/draft.json | 4 +- .../2/nest_1_reservoir_290ml/draft.json | 6 +- .../draft.json | 194 +- .../2/nest_96_wellplate_200ul_flat/draft.json | 388 +-- .../2/nest_96_wellplate_2ml_deep/draft.json | 384 +-- .../draft.json | 74 +- .../draft.json | 192 +- 17 files changed, 2515 insertions(+), 2515 deletions(-) diff --git a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json index 0de84dd662f..e6cc4c9ac05 100644 --- a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json +++ b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json @@ -13,18 +13,18 @@ }, "dimensions": { "xDimension": 127.76, - "yDimension": 85.57, + "yDimension": 85.47, "zDimension": 44.04 }, "wells": { "A1": { "depth": 39.23, "shape": "rectangular", - "xDimension": 108, - "yDimension": 72, + "xDimension": 107.5, + "yDimension": 71.25, "totalLiquidVolume": 290000, "x": 63.88, - "y": 42.785, + "y": 42.74, "z": 4.81, "geometryDefinitionId": "cuboidalWell" } diff --git a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json index 57867e87932..ff59cbc7c8b 100644 --- a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json +++ b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json @@ -15,19 +15,19 @@ }, "dimensions": { "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 19.05 + "yDimension": 85.48, + "zDimension": 19.15 }, "wells": { "A1": { "depth": 12.42, "shape": "rectangular", - "xDimension": 106.76, - "yDimension": 70.52, + "xDimension": 106.8, + "yDimension": 70.5, "totalLiquidVolume": 90000, "x": 63.88, - "y": 42.735, - "z": 6.63, + "y": 42.74, + "z": 6.73, "geometryDefinitionId": "cuboidalWell" } }, diff --git a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json index 3131899874c..604f714fcd6 100644 --- a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json +++ b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json @@ -44,7 +44,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G1": { @@ -54,7 +54,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F1": { @@ -64,7 +64,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E1": { @@ -74,7 +74,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D1": { @@ -84,7 +84,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C1": { @@ -94,7 +94,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B1": { @@ -104,7 +104,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A1": { @@ -114,7 +114,7 @@ "totalLiquidVolume": 200, "x": 14.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H2": { @@ -124,7 +124,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G2": { @@ -134,7 +134,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F2": { @@ -144,7 +144,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E2": { @@ -154,7 +154,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D2": { @@ -164,7 +164,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C2": { @@ -174,7 +174,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B2": { @@ -184,7 +184,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A2": { @@ -194,7 +194,7 @@ "totalLiquidVolume": 200, "x": 23.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H3": { @@ -204,7 +204,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G3": { @@ -214,7 +214,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F3": { @@ -224,7 +224,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E3": { @@ -234,7 +234,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D3": { @@ -244,7 +244,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C3": { @@ -254,7 +254,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B3": { @@ -264,7 +264,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A3": { @@ -274,7 +274,7 @@ "totalLiquidVolume": 200, "x": 32.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H4": { @@ -284,7 +284,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G4": { @@ -294,7 +294,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F4": { @@ -304,7 +304,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E4": { @@ -314,7 +314,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D4": { @@ -324,7 +324,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C4": { @@ -334,7 +334,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B4": { @@ -344,7 +344,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A4": { @@ -354,7 +354,7 @@ "totalLiquidVolume": 200, "x": 41.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H5": { @@ -364,7 +364,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G5": { @@ -374,7 +374,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F5": { @@ -384,7 +384,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E5": { @@ -394,7 +394,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D5": { @@ -404,7 +404,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C5": { @@ -414,7 +414,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B5": { @@ -424,7 +424,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A5": { @@ -434,7 +434,7 @@ "totalLiquidVolume": 200, "x": 50.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H6": { @@ -444,7 +444,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G6": { @@ -454,7 +454,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F6": { @@ -464,7 +464,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E6": { @@ -474,7 +474,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D6": { @@ -484,7 +484,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C6": { @@ -494,7 +494,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B6": { @@ -504,7 +504,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A6": { @@ -514,7 +514,7 @@ "totalLiquidVolume": 200, "x": 59.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H7": { @@ -524,7 +524,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G7": { @@ -534,7 +534,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F7": { @@ -544,7 +544,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E7": { @@ -554,7 +554,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D7": { @@ -564,7 +564,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C7": { @@ -574,7 +574,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B7": { @@ -584,7 +584,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A7": { @@ -594,7 +594,7 @@ "totalLiquidVolume": 200, "x": 68.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H8": { @@ -604,7 +604,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G8": { @@ -614,7 +614,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F8": { @@ -624,7 +624,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E8": { @@ -634,7 +634,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D8": { @@ -644,7 +644,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C8": { @@ -654,7 +654,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B8": { @@ -664,7 +664,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A8": { @@ -674,7 +674,7 @@ "totalLiquidVolume": 200, "x": 77.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H9": { @@ -684,7 +684,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G9": { @@ -694,7 +694,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F9": { @@ -704,7 +704,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E9": { @@ -714,7 +714,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D9": { @@ -724,7 +724,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C9": { @@ -734,7 +734,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B9": { @@ -744,7 +744,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A9": { @@ -754,7 +754,7 @@ "totalLiquidVolume": 200, "x": 86.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H10": { @@ -764,7 +764,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G10": { @@ -774,7 +774,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F10": { @@ -784,7 +784,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E10": { @@ -794,7 +794,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D10": { @@ -804,7 +804,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C10": { @@ -814,7 +814,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B10": { @@ -824,7 +824,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A10": { @@ -834,7 +834,7 @@ "totalLiquidVolume": 200, "x": 95.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H11": { @@ -844,7 +844,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G11": { @@ -854,7 +854,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F11": { @@ -864,7 +864,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E11": { @@ -874,7 +874,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D11": { @@ -884,7 +884,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C11": { @@ -894,7 +894,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B11": { @@ -904,7 +904,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A11": { @@ -914,7 +914,7 @@ "totalLiquidVolume": 200, "x": 104.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "H12": { @@ -924,7 +924,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 11.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "G12": { @@ -934,7 +934,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 20.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "F12": { @@ -944,7 +944,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 29.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "E12": { @@ -954,7 +954,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 38.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "D12": { @@ -964,7 +964,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 47.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "C12": { @@ -974,7 +974,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 56.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "B12": { @@ -984,7 +984,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 65.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" }, "A12": { @@ -994,7 +994,7 @@ "totalLiquidVolume": 200, "x": 113.38, "y": 74.24, - "z": 1.25, + "z": 1.49, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json index 367bfb37c84..d738bb78331 100644 --- a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json @@ -32,121 +32,121 @@ "C1": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 24.94, "y": 16.79, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "B1": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 24.94, "y": 42.8, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "A1": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 24.94, "y": 68.81, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "C2": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 50.95, "y": 16.79, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "B2": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 50.95, "y": 42.8, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "A2": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 50.95, "y": 68.81, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "C3": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 76.96, "y": 16.79, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "B3": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 76.96, "y": 42.8, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "A3": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 76.96, "y": 68.81, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "C4": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 102.97, "y": 16.79, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "B4": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 102.97, "y": 42.8, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" }, "A4": { "shape": "circular", "depth": 17.399, - "diameter": 22.73, + "diameter": 22.733, "totalLiquidVolume": 6900, "x": 102.97, "y": 68.81, - "z": 2.49, + "z": 2.621, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json index 996ef1c59fb..ae6b21f50f4 100644 --- a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json @@ -31,242 +31,242 @@ "wells": { "D1": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 17.48, - "y": 13.77, - "z": 2.87, + "x": 17.46, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C1": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 17.48, - "y": 33.07, - "z": 2.87, + "x": 17.46, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B1": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 17.48, - "y": 52.37, - "z": 2.87, + "x": 17.46, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A1": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 17.48, - "y": 71.67, - "z": 2.87, + "x": 17.46, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "D2": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 36.78, - "y": 13.77, - "z": 2.87, + "x": 36.76, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C2": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 36.78, - "y": 33.07, - "z": 2.87, + "x": 36.76, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B2": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 36.78, - "y": 52.37, - "z": 2.87, + "x": 36.76, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A2": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 36.78, - "y": 71.67, - "z": 2.87, + "x": 36.76, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "D3": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 56.08, - "y": 13.77, - "z": 2.87, + "x": 56.06, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C3": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 56.08, - "y": 33.07, - "z": 2.87, + "x": 56.06, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B3": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 56.08, - "y": 52.37, - "z": 2.87, + "x": 56.06, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A3": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 56.08, - "y": 71.67, - "z": 2.87, + "x": 56.06, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "D4": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 75.38, - "y": 13.77, - "z": 2.87, + "x": 75.36, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C4": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 75.38, - "y": 33.07, - "z": 2.87, + "x": 75.36, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B4": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 75.38, - "y": 52.37, - "z": 2.87, + "x": 75.36, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A4": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 75.38, - "y": 71.67, - "z": 2.87, + "x": 75.36, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "D5": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 94.68, - "y": 13.77, - "z": 2.87, + "x": 94.66, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C5": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 94.68, - "y": 33.07, - "z": 2.87, + "x": 94.66, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B5": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 94.68, - "y": 52.37, - "z": 2.87, + "x": 94.66, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A5": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 94.68, - "y": 71.67, - "z": 2.87, + "x": 94.66, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "D6": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 113.98, - "y": 13.77, - "z": 2.87, + "x": 113.96, + "y": 13.79, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "C6": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 113.98, - "y": 33.07, - "z": 2.87, + "x": 113.96, + "y": 33.09, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B6": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 113.98, - "y": 52.37, - "z": 2.87, + "x": 113.96, + "y": 52.39, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A6": { "shape": "circular", - "depth": 17.4, - "diameter": 16.26, + "depth": 17.399, + "diameter": 16.256, "totalLiquidVolume": 3400, - "x": 113.98, - "y": 71.67, - "z": 2.87, + "x": 113.96, + "y": 71.69, + "z": 2.871, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json index 976e41290d5..0db275a532b 100644 --- a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json @@ -459,4224 +459,4224 @@ "P1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A1": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 12.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A2": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 16.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A3": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 21.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A4": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 25.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A5": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 30.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A6": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 34.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A7": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 39.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A8": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 43.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A9": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 48.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A10": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 52.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A11": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 57.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A12": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 61.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A13": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 66.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A14": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 70.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A15": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 75.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A16": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 79.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A17": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 84.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A18": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 88.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A19": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 93.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A20": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 97.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A21": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 102.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A22": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 106.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A23": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 111.12, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "P24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 8.99, + "y": 8.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "O24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 13.49, + "y": 13.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "N24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 17.99, + "y": 17.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "M24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 22.49, + "y": 22.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "L24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 26.99, + "y": 26.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "K24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 31.49, + "y": 31.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "J24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 35.99, + "y": 35.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "I24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 40.49, + "y": 40.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "H24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 44.99, + "y": 44.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "G24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 49.49, + "y": 49.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "F24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 53.99, + "y": 53.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "E24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 58.49, + "y": 58.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "D24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 62.99, + "y": 62.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "C24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 67.49, + "y": 67.48, "z": 2.79, "geometryDefinitionId": "flatWell" }, "B24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 71.99, + "y": 71.98, "z": 2.79, "geometryDefinitionId": "flatWell" }, "A24": { "shape": "rectangular", "depth": 11.43, - "xDimension": 3.63, - "yDimension": 3.63, + "xDimension": 3.632, + "yDimension": 3.632, "totalLiquidVolume": 112, "x": 115.62, - "y": 76.49, + "y": 76.48, "z": 2.79, "geometryDefinitionId": "flatWell" } diff --git a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json index 056c29dbeb7..08e348e938b 100644 --- a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json @@ -38,7 +38,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -48,7 +48,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -58,7 +58,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -68,7 +68,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -78,7 +78,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -88,7 +88,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 18.16, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -98,7 +98,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -108,7 +108,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -118,7 +118,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -128,7 +128,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -138,7 +138,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -148,7 +148,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 31.24, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -158,7 +158,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -168,7 +168,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -178,7 +178,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -188,7 +188,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -198,7 +198,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -208,7 +208,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 44.32, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -218,7 +218,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -228,7 +228,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -238,7 +238,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -248,7 +248,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -258,7 +258,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -268,7 +268,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 57.4, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -278,7 +278,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -288,7 +288,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -298,7 +298,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -308,7 +308,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -318,7 +318,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -328,7 +328,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 70.48, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -338,7 +338,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -348,7 +348,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -358,7 +358,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -368,7 +368,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -378,7 +378,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -388,7 +388,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 83.56, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -398,7 +398,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -408,7 +408,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -418,7 +418,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -428,7 +428,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -438,7 +438,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -448,7 +448,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 96.64, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -458,7 +458,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 10.08, + "y": 10.12, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -468,7 +468,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 23.16, + "y": 23.2, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -478,7 +478,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 36.24, + "y": 36.28, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -488,7 +488,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 49.32, + "y": 49.36, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -498,7 +498,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 62.4, + "y": 62.44, "z": 2.621, "geometryDefinitionId": "conicalWell" }, @@ -508,7 +508,7 @@ "diameter": 11.1, "totalLiquidVolume": 1600, "x": 109.72, - "y": 75.48, + "y": 75.52, "z": 2.621, "geometryDefinitionId": "conicalWell" } diff --git a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json index 53dd47a511f..e76ad9ef082 100644 --- a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json @@ -27,62 +27,62 @@ "wells": { "B1": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 24.76, - "y": 23.16, - "z": 2.87, + "y": 23.19, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A1": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 24.76, - "y": 62.28, - "z": 2.87, + "y": 62.31, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B2": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 63.88, - "y": 23.16, - "z": 2.87, + "y": 23.19, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A2": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 63.88, - "y": 62.28, - "z": 2.87, + "y": 62.31, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "B3": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 103, - "y": 23.16, - "z": 2.87, + "y": 23.19, + "z": 2.871, "geometryDefinitionId": "conicalWell" }, "A3": { "shape": "circular", - "depth": 17.4, - "diameter": 35.43, + "depth": 17.399, + "diameter": 35.433, "totalLiquidVolume": 16800, "x": 103, - "y": 62.28, - "z": 2.87, + "y": 62.31, + "z": 2.871, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json index 5eb9db4259d..0f89688208b 100644 --- a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json +++ b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json @@ -70,963 +70,963 @@ "gripHeightFromLabwareBottom": 12.2, "wells": { "H1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A1": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 14.38, + "x": 14.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A2": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 23.38, + "x": 23.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A3": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 32.38, + "x": 32.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A4": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 41.38, + "x": 41.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A5": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 50.38, + "x": 50.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A6": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 59.38, + "x": 59.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A7": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 68.38, + "x": 68.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A8": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 77.38, + "x": 77.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A9": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 86.38, + "x": 86.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A10": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 95.38, + "x": 95.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A11": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 104.38, + "x": 104.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "H12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 11.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "G12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 20.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "F12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 29.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "E12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 38.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "D12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 47.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "C12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 56.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "B12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 65.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" }, "A12": { - "depth": 10.67, + "depth": 10.668, "shape": "circular", - "diameter": 6.86, + "diameter": 6.858, "totalLiquidVolume": 360, - "x": 113.38, + "x": 113.37, "y": 74.24, - "z": 3.55, + "z": 3.552, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json index 9c7cd7691f2..d786dcd31bd 100644 --- a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json +++ b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json @@ -33,132 +33,132 @@ "A1": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 14.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A2": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 23.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A3": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 32.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A4": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 41.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A5": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 50.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A6": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 59.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A7": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 68.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A8": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 77.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A9": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 86.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A10": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 95.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A11": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 104.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" }, "A12": { "depth": 26.85, "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 71.2, + "xDimension": 8.35, + "yDimension": 71.25, "totalLiquidVolume": 15000, "x": 113.38, - "y": 42.78, + "y": 42.74, "z": 4.55, "geometryDefinitionId": "cuboidalWell" } diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json index 07e20738fe1..13268bfd353 100644 --- a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json +++ b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json @@ -22,8 +22,8 @@ "A1": { "depth": 26.85, "shape": "rectangular", - "xDimension": 106.8, - "yDimension": 71.2, + "xDimension": 107.3, + "yDimension": 71.3, "totalLiquidVolume": 195000, "x": 63.88, "y": 42.74, diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json index 5769b697711..cfb85851ccb 100644 --- a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json +++ b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json @@ -20,11 +20,11 @@ "A1": { "depth": 39.55, "shape": "rectangular", - "xDimension": 106.8, - "yDimension": 71.2, + "xDimension": 107.76, + "yDimension": 71.1, "totalLiquidVolume": 290000, "x": 63.88, - "y": 42.74, + "y": 42.73, "z": 4.85, "geometryDefinitionId": "cuboidalWell" } diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json index c62c71666e1..4e6ff05ef85 100644 --- a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json +++ b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json @@ -27,7 +27,7 @@ "dimensions": { "xDimension": 127.76, "yDimension": 85.48, - "zDimension": 15.7 + "zDimension": 15.6 }, "gripForce": 15, "gripHeightFromLabwareBottom": 10.65, @@ -39,7 +39,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B1": { @@ -49,7 +49,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C1": { @@ -59,7 +59,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D1": { @@ -69,7 +69,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E1": { @@ -79,7 +79,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F1": { @@ -89,7 +89,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G1": { @@ -99,7 +99,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H1": { @@ -109,7 +109,7 @@ "totalLiquidVolume": 100, "x": 14.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A2": { @@ -119,7 +119,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B2": { @@ -129,7 +129,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C2": { @@ -139,7 +139,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D2": { @@ -149,7 +149,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E2": { @@ -159,7 +159,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F2": { @@ -169,7 +169,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G2": { @@ -179,7 +179,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H2": { @@ -189,7 +189,7 @@ "totalLiquidVolume": 100, "x": 23.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A3": { @@ -199,7 +199,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B3": { @@ -209,7 +209,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C3": { @@ -219,7 +219,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D3": { @@ -229,7 +229,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E3": { @@ -239,7 +239,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F3": { @@ -249,7 +249,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G3": { @@ -259,7 +259,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H3": { @@ -269,7 +269,7 @@ "totalLiquidVolume": 100, "x": 32.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A4": { @@ -279,7 +279,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B4": { @@ -289,7 +289,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C4": { @@ -299,7 +299,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D4": { @@ -309,7 +309,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E4": { @@ -319,7 +319,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F4": { @@ -329,7 +329,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G4": { @@ -339,7 +339,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H4": { @@ -349,7 +349,7 @@ "totalLiquidVolume": 100, "x": 41.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A5": { @@ -359,7 +359,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B5": { @@ -369,7 +369,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C5": { @@ -379,7 +379,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D5": { @@ -389,7 +389,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E5": { @@ -399,7 +399,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F5": { @@ -409,7 +409,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G5": { @@ -419,7 +419,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H5": { @@ -429,7 +429,7 @@ "totalLiquidVolume": 100, "x": 50.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A6": { @@ -439,7 +439,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B6": { @@ -449,7 +449,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C6": { @@ -459,7 +459,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D6": { @@ -469,7 +469,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E6": { @@ -479,7 +479,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F6": { @@ -489,7 +489,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G6": { @@ -499,7 +499,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H6": { @@ -509,7 +509,7 @@ "totalLiquidVolume": 100, "x": 59.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A7": { @@ -519,7 +519,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B7": { @@ -529,7 +529,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C7": { @@ -539,7 +539,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D7": { @@ -549,7 +549,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E7": { @@ -559,7 +559,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F7": { @@ -569,7 +569,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G7": { @@ -579,7 +579,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H7": { @@ -589,7 +589,7 @@ "totalLiquidVolume": 100, "x": 68.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A8": { @@ -599,7 +599,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B8": { @@ -609,7 +609,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C8": { @@ -619,7 +619,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D8": { @@ -629,7 +629,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E8": { @@ -639,7 +639,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F8": { @@ -649,7 +649,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G8": { @@ -659,7 +659,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H8": { @@ -669,7 +669,7 @@ "totalLiquidVolume": 100, "x": 77.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A9": { @@ -679,7 +679,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B9": { @@ -689,7 +689,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C9": { @@ -699,7 +699,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D9": { @@ -709,7 +709,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E9": { @@ -719,7 +719,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F9": { @@ -729,7 +729,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G9": { @@ -739,7 +739,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H9": { @@ -749,7 +749,7 @@ "totalLiquidVolume": 100, "x": 86.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A10": { @@ -759,7 +759,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B10": { @@ -769,7 +769,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C10": { @@ -779,7 +779,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D10": { @@ -789,7 +789,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E10": { @@ -799,7 +799,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F10": { @@ -809,7 +809,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G10": { @@ -819,7 +819,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H10": { @@ -829,7 +829,7 @@ "totalLiquidVolume": 100, "x": 95.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A11": { @@ -839,7 +839,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B11": { @@ -849,7 +849,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C11": { @@ -859,7 +859,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D11": { @@ -869,7 +869,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E11": { @@ -879,7 +879,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F11": { @@ -889,7 +889,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G11": { @@ -899,7 +899,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H11": { @@ -909,7 +909,7 @@ "totalLiquidVolume": 100, "x": 104.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "A12": { @@ -919,7 +919,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 74.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "B12": { @@ -929,7 +929,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 65.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "C12": { @@ -939,7 +939,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 56.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "D12": { @@ -949,7 +949,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 47.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "E12": { @@ -959,7 +959,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 38.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "F12": { @@ -969,7 +969,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 29.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "G12": { @@ -979,7 +979,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 20.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" }, "H12": { @@ -989,7 +989,7 @@ "totalLiquidVolume": 100, "x": 113.38, "y": 11.24, - "z": 0.92, + "z": 0.9, "geometryDefinitionId": "conicalWell" } }, diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json index 1db2f633b38..4b5efbf8ba9 100644 --- a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json +++ b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json @@ -25,8 +25,8 @@ "tags": [] }, "dimensions": { - "xDimension": 127.56, - "yDimension": 85.36, + "xDimension": 127.6, + "yDimension": 85.4, "zDimension": 14.3 }, "gripForce": 15, @@ -37,8 +37,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 74.18, + "x": 14.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -47,8 +47,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 65.18, + "x": 14.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -57,8 +57,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 56.18, + "x": 14.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -67,8 +67,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 47.18, + "x": 14.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -77,8 +77,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 38.18, + "x": 14.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -87,8 +87,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 29.18, + "x": 14.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -97,8 +97,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 20.18, + "x": 14.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -107,8 +107,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 14.28, - "y": 11.18, + "x": 14.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -117,8 +117,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 74.18, + "x": 23.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -127,8 +127,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 65.18, + "x": 23.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -137,8 +137,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 56.18, + "x": 23.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -147,8 +147,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 47.18, + "x": 23.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -157,8 +157,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 38.18, + "x": 23.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -167,8 +167,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 29.18, + "x": 23.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -177,8 +177,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 20.18, + "x": 23.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -187,8 +187,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 23.28, - "y": 11.18, + "x": 23.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -197,8 +197,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 74.18, + "x": 32.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -207,8 +207,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 65.18, + "x": 32.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -217,8 +217,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 56.18, + "x": 32.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -227,8 +227,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 47.18, + "x": 32.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -237,8 +237,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 38.18, + "x": 32.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -247,8 +247,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 29.18, + "x": 32.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -257,8 +257,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 20.18, + "x": 32.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -267,8 +267,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 32.28, - "y": 11.18, + "x": 32.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -277,8 +277,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 74.18, + "x": 41.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -287,8 +287,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 65.18, + "x": 41.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -297,8 +297,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 56.18, + "x": 41.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -307,8 +307,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 47.18, + "x": 41.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -317,8 +317,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 38.18, + "x": 41.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -327,8 +327,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 29.18, + "x": 41.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -337,8 +337,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 20.18, + "x": 41.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -347,8 +347,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 41.28, - "y": 11.18, + "x": 41.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -357,8 +357,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 74.18, + "x": 50.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -367,8 +367,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 65.18, + "x": 50.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -377,8 +377,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 56.18, + "x": 50.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -387,8 +387,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 47.18, + "x": 50.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -397,8 +397,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 38.18, + "x": 50.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -407,8 +407,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 29.18, + "x": 50.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -417,8 +417,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 20.18, + "x": 50.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -427,8 +427,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 50.28, - "y": 11.18, + "x": 50.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -437,8 +437,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 74.18, + "x": 59.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -447,8 +447,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 65.18, + "x": 59.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -457,8 +457,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 56.18, + "x": 59.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -467,8 +467,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 47.18, + "x": 59.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -477,8 +477,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 38.18, + "x": 59.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -487,8 +487,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 29.18, + "x": 59.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -497,8 +497,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 20.18, + "x": 59.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -507,8 +507,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 59.28, - "y": 11.18, + "x": 59.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -517,8 +517,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 74.18, + "x": 68.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -527,8 +527,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 65.18, + "x": 68.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -537,8 +537,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 56.18, + "x": 68.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -547,8 +547,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 47.18, + "x": 68.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -557,8 +557,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 38.18, + "x": 68.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -567,8 +567,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 29.18, + "x": 68.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -577,8 +577,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 20.18, + "x": 68.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -587,8 +587,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 68.28, - "y": 11.18, + "x": 68.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -597,8 +597,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 74.18, + "x": 77.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -607,8 +607,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 65.18, + "x": 77.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -617,8 +617,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 56.18, + "x": 77.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -627,8 +627,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 47.18, + "x": 77.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -637,8 +637,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 38.18, + "x": 77.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -647,8 +647,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 29.18, + "x": 77.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -657,8 +657,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 20.18, + "x": 77.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -667,8 +667,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 77.28, - "y": 11.18, + "x": 77.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -677,8 +677,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 74.18, + "x": 86.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -687,8 +687,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 65.18, + "x": 86.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -697,8 +697,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 56.18, + "x": 86.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -707,8 +707,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 47.18, + "x": 86.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -717,8 +717,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 38.18, + "x": 86.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -727,8 +727,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 29.18, + "x": 86.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -737,8 +737,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 20.18, + "x": 86.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -747,8 +747,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 86.28, - "y": 11.18, + "x": 86.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -757,8 +757,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 74.18, + "x": 95.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -767,8 +767,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 65.18, + "x": 95.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -777,8 +777,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 56.18, + "x": 95.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -787,8 +787,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 47.18, + "x": 95.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -797,8 +797,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 38.18, + "x": 95.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -807,8 +807,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 29.18, + "x": 95.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -817,8 +817,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 20.18, + "x": 95.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -827,8 +827,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 95.28, - "y": 11.18, + "x": 95.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -837,8 +837,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 74.18, + "x": 104.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -847,8 +847,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 65.18, + "x": 104.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -857,8 +857,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 56.18, + "x": 104.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -867,8 +867,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 47.18, + "x": 104.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -877,8 +877,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 38.18, + "x": 104.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -887,8 +887,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 29.18, + "x": 104.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -897,8 +897,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 20.18, + "x": 104.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -907,8 +907,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 104.28, - "y": 11.18, + "x": 104.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -917,8 +917,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 74.18, + "x": 113.3, + "y": 74.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -927,8 +927,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 65.18, + "x": 113.3, + "y": 65.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -937,8 +937,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 56.18, + "x": 113.3, + "y": 56.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -947,8 +947,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 47.18, + "x": 113.3, + "y": 47.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -957,8 +957,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 38.18, + "x": 113.3, + "y": 38.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -967,8 +967,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 29.18, + "x": 113.3, + "y": 29.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -977,8 +977,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 20.18, + "x": 113.3, + "y": 20.2, "z": 3.5, "geometryDefinitionId": "conicalWell" }, @@ -987,8 +987,8 @@ "shape": "circular", "diameter": 6.85, "totalLiquidVolume": 200, - "x": 113.28, - "y": 11.18, + "x": 113.3, + "y": 11.2, "z": 3.5, "geometryDefinitionId": "conicalWell" } diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json index 6b80fd36789..0870f1f3779 100644 --- a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json +++ b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json @@ -33,1059 +33,1059 @@ "gripHeightFromLabwareBottom": 21.9, "wells": { "A1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H1": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 14.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H2": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 23.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H3": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 32.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H4": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 41.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H5": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 50.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H6": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 59.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H7": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 68.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H8": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 77.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H9": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 86.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H10": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 95.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H11": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 104.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "A12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 74.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "B12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 65.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "C12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 56.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "D12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 47.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "E12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 38.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "F12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 29.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "G12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 20.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" }, "H12": { - "depth": 38, + "depth": 38.05, "totalLiquidVolume": 2000, "shape": "rectangular", "xDimension": 8.2, "yDimension": 8.2, "x": 113.3, "y": 11.15, - "z": 3, + "z": 2.95, "geometryDefinitionId": "cuboidalWell" } }, diff --git a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json index 83f22fb0a3e..95235bf624d 100644 --- a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json +++ b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json @@ -24,7 +24,7 @@ }, "dimensions": { "xDimension": 127.76, - "yDimension": 85.8, + "yDimension": 85.47, "zDimension": 44.2 }, "parameters": { @@ -38,132 +38,132 @@ "A1": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 13.94, - "y": 42.9, + "x": 14.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A2": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 23.03, - "y": 42.9, + "x": 23.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A3": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 32.12, - "y": 42.9, + "x": 32.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A4": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 41.21, - "y": 42.9, + "x": 41.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A5": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 50.3, - "y": 42.9, + "x": 50.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A6": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 59.39, - "y": 42.9, + "x": 59.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A7": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 68.48, - "y": 42.9, + "x": 68.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A8": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 77.57, - "y": 42.9, + "x": 77.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A9": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 86.66, - "y": 42.9, + "x": 86.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A10": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 95.75, - "y": 42.9, + "x": 95.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A11": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 104.84, - "y": 42.9, + "x": 104.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" }, "A12": { "shape": "rectangular", "depth": 41.75, - "xDimension": 8.33, + "xDimension": 8.317, "yDimension": 71.88, "totalLiquidVolume": 22000, - "x": 113.93, - "y": 42.9, + "x": 113.38, + "y": 42.71, "z": 2.45, "geometryDefinitionId": "cuboidalWell" } diff --git a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json index 0267c43a971..f6a71e61838 100644 --- a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json +++ b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json @@ -39,7 +39,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -50,7 +50,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -61,7 +61,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -72,7 +72,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -83,7 +83,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -94,7 +94,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -105,7 +105,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -116,7 +116,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 14.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -127,7 +127,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -138,7 +138,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -149,7 +149,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -160,7 +160,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -171,7 +171,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -182,7 +182,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -193,7 +193,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -204,7 +204,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 23.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -215,7 +215,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -226,7 +226,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -237,7 +237,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -248,7 +248,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -259,7 +259,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -270,7 +270,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -281,7 +281,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -292,7 +292,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 32.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -303,7 +303,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -314,7 +314,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -325,7 +325,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -336,7 +336,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -347,7 +347,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -358,7 +358,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -369,7 +369,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -380,7 +380,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 41.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -391,7 +391,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -402,7 +402,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -413,7 +413,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -424,7 +424,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -435,7 +435,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -446,7 +446,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -457,7 +457,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -468,7 +468,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 50.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -479,7 +479,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -490,7 +490,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -501,7 +501,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -512,7 +512,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -523,7 +523,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -534,7 +534,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -545,7 +545,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -556,7 +556,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 59.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -567,7 +567,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -578,7 +578,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -589,7 +589,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -600,7 +600,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -611,7 +611,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -622,7 +622,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -633,7 +633,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -644,7 +644,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 68.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -655,7 +655,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -666,7 +666,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -677,7 +677,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -688,7 +688,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -699,7 +699,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -710,7 +710,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -721,7 +721,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -732,7 +732,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 77.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -743,7 +743,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -754,7 +754,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -765,7 +765,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -776,7 +776,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -787,7 +787,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -798,7 +798,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -809,7 +809,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -820,7 +820,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 86.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -831,7 +831,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -842,7 +842,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -853,7 +853,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -864,7 +864,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -875,7 +875,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -886,7 +886,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -897,7 +897,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -908,7 +908,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 95.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -919,7 +919,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -930,7 +930,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -941,7 +941,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -952,7 +952,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -963,7 +963,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -974,7 +974,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -985,7 +985,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -996,7 +996,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 104.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1007,7 +1007,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 11.2, + "y": 11.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1018,7 +1018,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 20.2, + "y": 20.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1029,7 +1029,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 29.2, + "y": 29.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1040,7 +1040,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 38.2, + "y": 38.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1051,7 +1051,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 47.2, + "y": 47.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1062,7 +1062,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 56.2, + "y": 56.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1073,7 +1073,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 65.2, + "y": 65.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" }, @@ -1084,7 +1084,7 @@ "yDimension": 8.2, "totalLiquidVolume": 2400, "x": 113.4, - "y": 74.2, + "y": 74.3, "z": 2.8, "geometryDefinitionId": "cuboidalWell" } From eb5a2a4681a5cd4e85f531f39581e6aa1631aa72 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Wed, 7 May 2025 12:21:15 -0400 Subject: [PATCH 05/20] Manually fix nest_1_reservoir_195ml topXDimension/topYDimension. x/y were swapped in innerLabwareGeometry. --- .../labware/definitions/2/nest_1_reservoir_195ml/draft.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json index 13268bfd353..8f797b7af26 100644 --- a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json +++ b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json @@ -59,8 +59,8 @@ "sections": [ { "shape": "cuboidal", - "topXDimension": 71.3, - "topYDimension": 107.3, + "topXDimension": 107.3, + "topYDimension": 71.3, "bottomXDimension": 70.6, "bottomYDimension": 106.8, "topHeight": 26.85, From 177804b8b55c10c91992873b2adc0e47c5f76ef2 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 4 Aug 2025 15:25:42 -0400 Subject: [PATCH 06/20] Manually fix aluminum block tube diameters. These "aluminum block + tube" labware are not mentioned in the hardware spreadsheet. But, they have the same tubes as some "tube rack + tube" labware, which means we can take the diameters from there. * opentrons_24_tuberack_nest_0.5ml_screwcap <- opentrons_24_tuberack_nest_0.5ml_screwcap * opentrons_24_aluminumblock_nest_1.5ml_screwcap <- opentrons_24_tuberack_nest_1.5ml_screwcap * opentrons_24_aluminumblock_nest_1.5ml_snapcap <- opentrons_24_tuberack_nest_1.5ml_snapcap * opentrons_24_aluminumblock_nest_2ml_screwcap <- opentrons_24_tuberack_nest_2ml_screwcap * opentrons_24_aluminumblock_nest_2ml_snapcap <- opentrons_24_tuberack_nest_2ml_snapcap This also makes each definition's tube diameter internally consistent with the diameter implied by its innerLabwareGeometry, yay. --- .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- 5 files changed, 120 insertions(+), 120 deletions(-) diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json index 82db971ce5f..d246170b08f 100644 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json @@ -27,7 +27,7 @@ "A1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 20.75, "y": 68.62, @@ -37,7 +37,7 @@ "B1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 20.75, "y": 51.37, @@ -47,7 +47,7 @@ "C1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 20.75, "y": 34.12, @@ -57,7 +57,7 @@ "D1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 20.75, "y": 16.87, @@ -67,7 +67,7 @@ "A2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38, "y": 68.62, @@ -77,7 +77,7 @@ "B2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38, "y": 51.37, @@ -87,7 +87,7 @@ "C2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38, "y": 34.12, @@ -97,7 +97,7 @@ "D2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38, "y": 16.87, @@ -107,7 +107,7 @@ "A3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 55.25, "y": 68.62, @@ -117,7 +117,7 @@ "B3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 55.25, "y": 51.37, @@ -127,7 +127,7 @@ "C3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 55.25, "y": 34.12, @@ -137,7 +137,7 @@ "D3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 55.25, "y": 16.87, @@ -147,7 +147,7 @@ "A4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 72.5, "y": 68.62, @@ -157,7 +157,7 @@ "B4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 72.5, "y": 51.37, @@ -167,7 +167,7 @@ "C4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 72.5, "y": 34.12, @@ -177,7 +177,7 @@ "D4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 72.5, "y": 16.87, @@ -187,7 +187,7 @@ "A5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 89.75, "y": 68.62, @@ -197,7 +197,7 @@ "B5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 89.75, "y": 51.37, @@ -207,7 +207,7 @@ "C5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 89.75, "y": 34.12, @@ -217,7 +217,7 @@ "D5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 89.75, "y": 16.87, @@ -227,7 +227,7 @@ "A6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 107, "y": 68.62, @@ -237,7 +237,7 @@ "B6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 107, "y": 51.37, @@ -247,7 +247,7 @@ "C6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 107, "y": 34.12, @@ -257,7 +257,7 @@ "D6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 107, "y": 16.87, diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json index 558eadd151b..431ce06b700 100644 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json @@ -27,7 +27,7 @@ "A1": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 20.75, "y": 68.62, @@ -37,7 +37,7 @@ "B1": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 20.75, "y": 51.37, @@ -47,7 +47,7 @@ "C1": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 20.75, "y": 34.12, @@ -57,7 +57,7 @@ "D1": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 20.75, "y": 16.87, @@ -67,7 +67,7 @@ "A2": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 38, "y": 68.62, @@ -77,7 +77,7 @@ "B2": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 38, "y": 51.37, @@ -87,7 +87,7 @@ "C2": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 38, "y": 34.12, @@ -97,7 +97,7 @@ "D2": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 38, "y": 16.87, @@ -107,7 +107,7 @@ "A3": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 55.25, "y": 68.62, @@ -117,7 +117,7 @@ "B3": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 55.25, "y": 51.37, @@ -127,7 +127,7 @@ "C3": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 55.25, "y": 34.12, @@ -137,7 +137,7 @@ "D3": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 55.25, "y": 16.87, @@ -147,7 +147,7 @@ "A4": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 72.5, "y": 68.62, @@ -157,7 +157,7 @@ "B4": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 72.5, "y": 51.37, @@ -167,7 +167,7 @@ "C4": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 72.5, "y": 34.12, @@ -177,7 +177,7 @@ "D4": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 72.5, "y": 16.87, @@ -187,7 +187,7 @@ "A5": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 89.75, "y": 68.62, @@ -197,7 +197,7 @@ "B5": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 89.75, "y": 51.37, @@ -207,7 +207,7 @@ "C5": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 89.75, "y": 34.12, @@ -217,7 +217,7 @@ "D5": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 89.75, "y": 16.87, @@ -227,7 +227,7 @@ "A6": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 107, "y": 68.62, @@ -237,7 +237,7 @@ "B6": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 107, "y": 51.37, @@ -247,7 +247,7 @@ "C6": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 107, "y": 34.12, @@ -257,7 +257,7 @@ "D6": { "depth": 43.9, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 1500, "x": 107, "y": 16.87, diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json index a14b96e7b77..ce71804c796 100644 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json @@ -27,7 +27,7 @@ "A1": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 20.75, "y": 68.62, @@ -37,7 +37,7 @@ "B1": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 20.75, "y": 51.37, @@ -47,7 +47,7 @@ "C1": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 20.75, "y": 34.12, @@ -57,7 +57,7 @@ "D1": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 20.75, "y": 16.87, @@ -67,7 +67,7 @@ "A2": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 38, "y": 68.62, @@ -77,7 +77,7 @@ "B2": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 38, "y": 51.37, @@ -87,7 +87,7 @@ "C2": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 38, "y": 34.12, @@ -97,7 +97,7 @@ "D2": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 38, "y": 16.87, @@ -107,7 +107,7 @@ "A3": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 55.25, "y": 68.62, @@ -117,7 +117,7 @@ "B3": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 55.25, "y": 51.37, @@ -127,7 +127,7 @@ "C3": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 55.25, "y": 34.12, @@ -137,7 +137,7 @@ "D3": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 55.25, "y": 16.87, @@ -147,7 +147,7 @@ "A4": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 72.5, "y": 68.62, @@ -157,7 +157,7 @@ "B4": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 72.5, "y": 51.37, @@ -167,7 +167,7 @@ "C4": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 72.5, "y": 34.12, @@ -177,7 +177,7 @@ "D4": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 72.5, "y": 16.87, @@ -187,7 +187,7 @@ "A5": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 89.75, "y": 68.62, @@ -197,7 +197,7 @@ "B5": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 89.75, "y": 51.37, @@ -207,7 +207,7 @@ "C5": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 89.75, "y": 34.12, @@ -217,7 +217,7 @@ "D5": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 89.75, "y": 16.87, @@ -227,7 +227,7 @@ "A6": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 107, "y": 68.62, @@ -237,7 +237,7 @@ "B6": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 107, "y": 51.37, @@ -247,7 +247,7 @@ "C6": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 107, "y": 34.12, @@ -257,7 +257,7 @@ "D6": { "depth": 37.9, "shape": "circular", - "diameter": 10.2, + "diameter": 9.9, "totalLiquidVolume": 1500, "x": 107, "y": 16.87, diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json index 7cf9d050ec6..3929e68e669 100644 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json @@ -27,7 +27,7 @@ "A1": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 20.75, "y": 68.62, @@ -37,7 +37,7 @@ "B1": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 20.75, "y": 51.37, @@ -47,7 +47,7 @@ "C1": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 20.75, "y": 34.12, @@ -57,7 +57,7 @@ "D1": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 20.75, "y": 16.87, @@ -67,7 +67,7 @@ "A2": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 38, "y": 68.62, @@ -77,7 +77,7 @@ "B2": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 38, "y": 51.37, @@ -87,7 +87,7 @@ "C2": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 38, "y": 34.12, @@ -97,7 +97,7 @@ "D2": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 38, "y": 16.87, @@ -107,7 +107,7 @@ "A3": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 55.25, "y": 68.62, @@ -117,7 +117,7 @@ "B3": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 55.25, "y": 51.37, @@ -127,7 +127,7 @@ "C3": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 55.25, "y": 34.12, @@ -137,7 +137,7 @@ "D3": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 55.25, "y": 16.87, @@ -147,7 +147,7 @@ "A4": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 72.5, "y": 68.62, @@ -157,7 +157,7 @@ "B4": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 72.5, "y": 51.37, @@ -167,7 +167,7 @@ "C4": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 72.5, "y": 34.12, @@ -177,7 +177,7 @@ "D4": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 72.5, "y": 16.87, @@ -187,7 +187,7 @@ "A5": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 89.75, "y": 68.62, @@ -197,7 +197,7 @@ "B5": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 89.75, "y": 51.37, @@ -207,7 +207,7 @@ "C5": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 89.75, "y": 34.12, @@ -217,7 +217,7 @@ "D5": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 89.75, "y": 16.87, @@ -227,7 +227,7 @@ "A6": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 107, "y": 68.62, @@ -237,7 +237,7 @@ "B6": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 107, "y": 51.37, @@ -247,7 +247,7 @@ "C6": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 107, "y": 34.12, @@ -257,7 +257,7 @@ "D6": { "depth": 44.05, "shape": "circular", - "diameter": 8.69, + "diameter": 8.55, "totalLiquidVolume": 2000, "x": 107, "y": 16.87, diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json index 674a3e4d15e..d9129a4d9c8 100644 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json @@ -27,7 +27,7 @@ "A1": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 20.75, "y": 68.62, @@ -37,7 +37,7 @@ "B1": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 20.75, "y": 51.37, @@ -47,7 +47,7 @@ "C1": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 20.75, "y": 34.12, @@ -57,7 +57,7 @@ "D1": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 20.75, "y": 16.87, @@ -67,7 +67,7 @@ "A2": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 38, "y": 68.62, @@ -77,7 +77,7 @@ "B2": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 38, "y": 51.37, @@ -87,7 +87,7 @@ "C2": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 38, "y": 34.12, @@ -97,7 +97,7 @@ "D2": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 38, "y": 16.87, @@ -107,7 +107,7 @@ "A3": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 55.25, "y": 68.62, @@ -117,7 +117,7 @@ "B3": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 55.25, "y": 51.37, @@ -127,7 +127,7 @@ "C3": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 55.25, "y": 34.12, @@ -137,7 +137,7 @@ "D3": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 55.25, "y": 16.87, @@ -147,7 +147,7 @@ "A4": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 72.5, "y": 68.62, @@ -157,7 +157,7 @@ "B4": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 72.5, "y": 51.37, @@ -167,7 +167,7 @@ "C4": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 72.5, "y": 34.12, @@ -177,7 +177,7 @@ "D4": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 72.5, "y": 16.87, @@ -187,7 +187,7 @@ "A5": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 89.75, "y": 68.62, @@ -197,7 +197,7 @@ "B5": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 89.75, "y": 51.37, @@ -207,7 +207,7 @@ "C5": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 89.75, "y": 34.12, @@ -217,7 +217,7 @@ "D5": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 89.75, "y": 16.87, @@ -227,7 +227,7 @@ "A6": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 107, "y": 68.62, @@ -237,7 +237,7 @@ "B6": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 107, "y": 51.37, @@ -247,7 +247,7 @@ "C6": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 107, "y": 34.12, @@ -257,7 +257,7 @@ "D6": { "depth": 39.28, "shape": "circular", - "diameter": 10.18, + "diameter": 9.28, "totalLiquidVolume": 2000, "x": 107, "y": 16.87, From 2aef5cefff5e30f8b9db158c47be4269b9f85b0b Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 4 Aug 2025 15:23:59 -0400 Subject: [PATCH 07/20] Manually fix opentrons_tough_1_reservoir_300ml xDimension/yDimension. New numbers based on the drawing "SINGLE WELL RESERVOIR SUPPORT DWG" rev A1.0. xDimension 108->108.7: The old value matched the bottom of the well, but a well's xDimension needs to represent the top of the well. 108.7 matches the drawing and the number in innerLabwareGeometry. yDimension 72->70.7: I'm not sure where 72 came from, but 70.7 matches the drawing and the number in innerLabwareGeometry. --- .../2/opentrons_tough_1_reservoir_300ml/draft.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json index 4eb3b1b0a07..ddcc50dff96 100644 --- a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json +++ b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json @@ -22,8 +22,8 @@ "A1": { "depth": 42.3, "shape": "rectangular", - "xDimension": 108, - "yDimension": 72, + "xDimension": 108.7, + "yDimension": 70.7, "totalLiquidVolume": 300000, "x": 63.88, "y": 42.74, From dfd6a5b066ed83c34a8a54f16437a71178b78f45 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 4 Aug 2025 15:39:14 -0400 Subject: [PATCH 08/20] Manually sync tube rack diameters from the hardware spreadsheet. We can't easily use a script for this because the spreadsheet doesn't have full information for these definitions--it only has the diameters and depths. Also, some of the tube racks are heterogeneous. Also, we can only copy over the diameter values, not the depth values. Since the hardware spreadsheet doesn't give us a known tube top position, we can't know whether to grow/shrink the tube depths from the bottom or the top. --- .../draft.json | 12 ++--- .../draft.json | 30 ++++++------ .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- .../draft.json | 48 +++++++++---------- 5 files changed, 93 insertions(+), 93 deletions(-) diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json index 50486d91c49..d41f3350ac4 100644 --- a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json +++ b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json @@ -28,7 +28,7 @@ "wells": { "A1": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 13.88, @@ -38,7 +38,7 @@ }, "B1": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 13.88, @@ -48,7 +48,7 @@ }, "C1": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 13.88, @@ -58,7 +58,7 @@ }, "A2": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 38.88, @@ -68,7 +68,7 @@ }, "B2": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 38.88, @@ -78,7 +78,7 @@ }, "C2": { "totalLiquidVolume": 15000, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "depth": 117.5, "x": 38.88, diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json index 8b3d9d043dd..bee7facf109 100644 --- a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json +++ b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json @@ -30,7 +30,7 @@ "wells": { "C1": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 13.88, @@ -40,7 +40,7 @@ }, "B1": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 13.88, @@ -50,7 +50,7 @@ }, "A1": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 13.88, @@ -60,7 +60,7 @@ }, "C2": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 38.88, @@ -70,7 +70,7 @@ }, "B2": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 38.88, @@ -80,7 +80,7 @@ }, "A2": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 38.88, @@ -90,7 +90,7 @@ }, "C3": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 63.88, @@ -100,7 +100,7 @@ }, "B3": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 63.88, @@ -110,7 +110,7 @@ }, "A3": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 63.88, @@ -120,7 +120,7 @@ }, "C4": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 88.88, @@ -130,7 +130,7 @@ }, "B4": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 88.88, @@ -140,7 +140,7 @@ }, "A4": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 88.88, @@ -150,7 +150,7 @@ }, "C5": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 113.88, @@ -160,7 +160,7 @@ }, "B5": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 113.88, @@ -170,7 +170,7 @@ }, "A5": { "depth": 117.5, - "diameter": 14.9, + "diameter": 14.7, "shape": "circular", "totalLiquidVolume": 15000, "x": 113.88, diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json index 46bd72cbc02..5d6fe47ef05 100644 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json @@ -30,7 +30,7 @@ "wells": { "D1": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 18.21, @@ -40,7 +40,7 @@ }, "C1": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 18.21, @@ -50,7 +50,7 @@ }, "B1": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 18.21, @@ -60,7 +60,7 @@ }, "A1": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 18.21, @@ -70,7 +70,7 @@ }, "D2": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 38.1, @@ -80,7 +80,7 @@ }, "C2": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 38.1, @@ -90,7 +90,7 @@ }, "B2": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 38.1, @@ -100,7 +100,7 @@ }, "A2": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 38.1, @@ -110,7 +110,7 @@ }, "D3": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 57.99, @@ -120,7 +120,7 @@ }, "C3": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 57.99, @@ -130,7 +130,7 @@ }, "B3": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 57.99, @@ -140,7 +140,7 @@ }, "A3": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 57.99, @@ -150,7 +150,7 @@ }, "D4": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 77.88, @@ -160,7 +160,7 @@ }, "C4": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 77.88, @@ -170,7 +170,7 @@ }, "B4": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 77.88, @@ -180,7 +180,7 @@ }, "A4": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 77.88, @@ -190,7 +190,7 @@ }, "D5": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 97.77, @@ -200,7 +200,7 @@ }, "C5": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 97.77, @@ -210,7 +210,7 @@ }, "B5": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 97.77, @@ -220,7 +220,7 @@ }, "A5": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 97.77, @@ -230,7 +230,7 @@ }, "D6": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 117.66, @@ -240,7 +240,7 @@ }, "C6": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 117.66, @@ -250,7 +250,7 @@ }, "B6": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 117.66, @@ -260,7 +260,7 @@ }, "A6": { "depth": 37.8, - "diameter": 8.7, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 1500, "x": 117.66, diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json index eedfdd0053c..ed0a4d1d29a 100644 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json @@ -30,7 +30,7 @@ "wells": { "D1": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 18.21, @@ -40,7 +40,7 @@ }, "C1": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 18.21, @@ -50,7 +50,7 @@ }, "B1": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 18.21, @@ -60,7 +60,7 @@ }, "A1": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 18.21, @@ -70,7 +70,7 @@ }, "D2": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 38.1, @@ -80,7 +80,7 @@ }, "C2": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 38.1, @@ -90,7 +90,7 @@ }, "B2": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 38.1, @@ -100,7 +100,7 @@ }, "A2": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 38.1, @@ -110,7 +110,7 @@ }, "D3": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 57.99, @@ -120,7 +120,7 @@ }, "C3": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 57.99, @@ -130,7 +130,7 @@ }, "B3": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 57.99, @@ -140,7 +140,7 @@ }, "A3": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 57.99, @@ -150,7 +150,7 @@ }, "D4": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 77.88, @@ -160,7 +160,7 @@ }, "C4": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 77.88, @@ -170,7 +170,7 @@ }, "B4": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 77.88, @@ -180,7 +180,7 @@ }, "A4": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 77.88, @@ -190,7 +190,7 @@ }, "D5": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 97.77, @@ -200,7 +200,7 @@ }, "C5": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 97.77, @@ -210,7 +210,7 @@ }, "B5": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 97.77, @@ -220,7 +220,7 @@ }, "A5": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 97.77, @@ -230,7 +230,7 @@ }, "D6": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 117.66, @@ -240,7 +240,7 @@ }, "C6": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 117.66, @@ -250,7 +250,7 @@ }, "B6": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 117.66, @@ -260,7 +260,7 @@ }, "A6": { "depth": 39.1, - "diameter": 8.8, + "diameter": 10, "shape": "circular", "totalLiquidVolume": 2000, "x": 117.66, diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json index c8e04ba4ebe..d74414c84df 100644 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json @@ -29,7 +29,7 @@ "A1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 18.21, "y": 75.43, @@ -39,7 +39,7 @@ "B1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 18.21, "y": 56.15, @@ -49,7 +49,7 @@ "C1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 18.21, "y": 36.87, @@ -59,7 +59,7 @@ "D1": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 18.21, "y": 17.59, @@ -69,7 +69,7 @@ "A2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38.1, "y": 75.43, @@ -79,7 +79,7 @@ "B2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38.1, "y": 56.15, @@ -89,7 +89,7 @@ "C2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38.1, "y": 36.87, @@ -99,7 +99,7 @@ "D2": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 38.1, "y": 17.59, @@ -109,7 +109,7 @@ "A3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 57.99, "y": 75.43, @@ -119,7 +119,7 @@ "B3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 57.99, "y": 56.15, @@ -129,7 +129,7 @@ "C3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 57.99, "y": 36.87, @@ -139,7 +139,7 @@ "D3": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 57.99, "y": 17.59, @@ -149,7 +149,7 @@ "A4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 77.88, "y": 75.43, @@ -159,7 +159,7 @@ "B4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 77.88, "y": 56.15, @@ -169,7 +169,7 @@ "C4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 77.88, "y": 36.87, @@ -179,7 +179,7 @@ "D4": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 77.88, "y": 17.59, @@ -189,7 +189,7 @@ "A5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 97.77, "y": 75.43, @@ -199,7 +199,7 @@ "B5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 97.77, "y": 56.15, @@ -209,7 +209,7 @@ "C5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 97.77, "y": 36.87, @@ -219,7 +219,7 @@ "D5": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 97.77, "y": 17.59, @@ -229,7 +229,7 @@ "A6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 117.66, "y": 75.43, @@ -239,7 +239,7 @@ "B6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 117.66, "y": 56.15, @@ -249,7 +249,7 @@ "C6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 117.66, "y": 36.87, @@ -259,7 +259,7 @@ "D6": { "depth": 25.2, "shape": "circular", - "diameter": 8.69, + "diameter": 8.56, "totalLiquidVolume": 500, "x": 117.66, "y": 17.59, From 32273eecab8e37ae9b562ca3af1dacad55327b43 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 5 Aug 2025 15:04:47 -0400 Subject: [PATCH 09/20] Fix diameter in opentrons_6_tuberack_nest_50ml_conical. The hardware spreadsheet doesn't explicitly mention the diameter of these tubes, so this is a little bit dicey. These new numbers make the well diameter internally consistent with the definition's innerLabwareGeometry. A while ago, in PR #17082, this same 27.95 -> 28.18 change was made to opentrons_10_tuberack_nest_4x50ml_6x15ml_conical, which shares the same tubes. I'm guessing this definition was just accidentally omitted. --- .../draft.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json index 99eed5e6ced..f58424a7722 100644 --- a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json +++ b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json @@ -26,7 +26,7 @@ "A1": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 35.5, "y": 60.24, @@ -36,7 +36,7 @@ "B1": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 35.5, "y": 25.24, @@ -46,7 +46,7 @@ "A2": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 70.5, "y": 60.24, @@ -56,7 +56,7 @@ "B2": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 70.5, "y": 25.24, @@ -66,7 +66,7 @@ "A3": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 105.5, "y": 60.24, @@ -76,7 +76,7 @@ "B3": { "depth": 113.05, "shape": "circular", - "diameter": 27.95, + "diameter": 28.18, "totalLiquidVolume": 50000, "x": 105.5, "y": 25.24, From 0d07671a3761fa3b47220908ffb3c71ac79046c6 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 5 Aug 2025 15:07:09 -0400 Subject: [PATCH 10/20] Delete drafts that we didn't change. --- .../2/agilent_1_reservoir_290ml/draft.json | 80 - .../draft.json | 4737 --------------- .../draft.json | 1167 ---- .../2/axygen_1_reservoir_90ml/draft.json | 72 - .../2/axygen_96_wellplate_500ul/draft.json | 1159 ---- .../2/biorad_384_wellplate_50ul/draft.json | 4748 --------------- .../biorad_96_wellplate_200ul_pcr/draft.json | 1187 ---- .../draft.json | 210 - .../draft.json | 342 -- .../draft.json | 5116 ----------------- .../draft.json | 610 -- .../draft.json | 134 - .../draft.json | 1177 ---- .../corning_96_wellplate_360ul_lid/draft.json | 111 - .../draft.json | 1019 ---- .../draft.json | 1019 ---- .../eppendorf_96_wellplate_1000ul/draft.json | 1149 ---- .../ev_resin_tips_flex_96_labware/draft.json | 1067 ---- .../draft.json | 44 - .../draft.json | 44 - .../draft.json | 44 - .../2/geb_96_tiprack_1000ul/draft.json | 1017 ---- .../2/geb_96_tiprack_10ul/draft.json | 1017 ---- .../draft.json | 1216 ---- .../draft.json | 110 - .../2/milliplex_microtiter_plate/draft.json | 1018 ---- .../milliplex_microtiter_plate_lid/draft.json | 110 - .../2/nest_12_reservoir_15ml/draft.json | 226 - .../2/nest_12_reservoir_22ml/draft.json | 232 - .../2/nest_1_reservoir_195ml/draft.json | 83 - .../2/nest_1_reservoir_290ml/draft.json | 80 - .../2/nest_24_wellplate_10.4ml/draft.json | 386 -- .../2/nest_8_reservoir_22ml/draft.json | 162 - .../draft.json | 1166 ---- .../2/nest_96_wellplate_200ul_flat/draft.json | 1145 ---- .../2/nest_96_wellplate_2ml_deep/draft.json | 1261 ---- .../draft.json | 232 - .../draft.json | 162 - .../draft.json | 235 - .../draft.json | 259 - .../draft.json | 257 - .../opentrons_1_trash_1100ml_fixed/draft.json | 50 - .../opentrons_1_trash_3200ml_fixed/draft.json | 50 - .../opentrons_1_trash_850ml_fixed/draft.json | 50 - .../draft.json | 352 -- .../draft.json | 370 -- .../draft.json | 356 -- .../draft.json | 358 -- .../draft.json | 350 -- .../draft.json | 386 -- .../draft.json | 418 -- .../draft.json | 473 -- .../draft.json | 309 - .../draft.json | 298 - .../draft.json | 351 -- .../draft.json | 371 -- .../draft.json | 357 -- .../draft.json | 359 -- .../draft.json | 351 -- .../draft.json | 387 -- .../draft.json | 481 -- .../draft.json | 145 - .../draft.json | 150 - .../draft.json | 1029 ---- .../draft.json | 1149 ---- .../draft.json | 1027 ---- .../opentrons_96_deep_well_adapter/draft.json | 41 - .../draft.json | 1121 ---- .../draft.json | 41 - .../draft.json | 1017 ---- .../draft.json | 1017 ---- .../draft.json | 1017 ---- .../draft.json | 1017 ---- .../draft.json | 41 - .../draft.json | 1027 ---- .../2/opentrons_96_pcr_adapter/draft.json | 1032 ---- .../draft.json | 1027 ---- .../draft.json | 1025 ---- .../2/opentrons_96_tiprack_1000ul/draft.json | 1019 ---- .../2/opentrons_96_tiprack_10ul/draft.json | 1019 ---- .../2/opentrons_96_tiprack_20ul/draft.json | 1019 ---- .../2/opentrons_96_tiprack_300ul/draft.json | 1019 ---- .../draft.json | 1032 ---- .../draft.json | 1174 ---- .../draft.json | 41 - .../draft.json | 62 - .../draft.json | 62 - .../draft.json | 69 - .../draft.json | 71 - .../draft.json | 71 - .../draft.json | 1031 ---- .../draft.json | 1031 ---- .../draft.json | 1031 ---- .../draft.json | 1031 ---- .../draft.json | 1031 ---- .../draft.json | 1031 ---- .../opentrons_flex_96_tiprack_20ul/draft.json | 1031 ---- .../opentrons_flex_96_tiprack_50ul/draft.json | 1031 ---- .../draft.json | 41 - .../2/opentrons_flex_deck_riser/draft.json | 41 - .../draft.json | 57 - .../2/opentrons_flex_tiprack_lid/draft.json | 122 - .../draft.json | 228 - .../draft.json | 83 - .../draft.json | 114 - .../draft.json | 134 - .../opentrons_tough_universal_lid/draft.json | 96 - .../draft.json | 151 - .../draft.json | 4710 --------------- .../draft.json | 151 - .../draft.json | 48 - .../2/smc_384_read_plate/draft.json | 5100 ---------------- .../draft.json | 1141 ---- .../draft.json | 1141 ---- .../2/tipone_96_tiprack_200ul/draft.json | 1017 ---- .../draft.json | 237 - .../draft.json | 1243 ---- 117 files changed, 85771 deletions(-) delete mode 100644 shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json delete mode 100644 shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json delete mode 100644 shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json delete mode 100644 shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json delete mode 100644 shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json delete mode 100644 shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json delete mode 100644 shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json delete mode 100644 shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json delete mode 100644 shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json delete mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json delete mode 100644 shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json delete mode 100644 shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json delete mode 100644 shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json delete mode 100644 shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json delete mode 100644 shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json delete mode 100644 shared-data/labware/definitions/2/smc_384_read_plate/draft.json delete mode 100644 shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json delete mode 100644 shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json delete mode 100644 shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json delete mode 100644 shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json delete mode 100644 shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json diff --git a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json deleted file mode 100644 index e6cc4c9ac05..00000000000 --- a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/draft.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "Agilent", - "brandId": ["201252-100"], - "links": ["https://www.agilent.com/store/en_US/Prod-201252-100/201252-100"] - }, - "metadata": { - "displayName": "Agilent 1 Well Reservoir 290 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 44.04 - }, - "wells": { - "A1": { - "depth": 39.23, - "shape": "rectangular", - "xDimension": 107.5, - "yDimension": 71.25, - "totalLiquidVolume": 290000, - "x": 63.88, - "y": 42.74, - "z": 4.81, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "wells": ["A1"], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "agilent_1_reservoir_290ml", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 107.5, - "topYDimension": 71.25, - "bottomXDimension": 106.785, - "bottomYDimension": 71.0, - "topHeight": 39.23, - "bottomHeight": 2.0 - }, - { - "shape": "cuboidal", - "topXDimension": 106.785, - "topYDimension": 8, - "bottomXDimension": 100.75, - "bottomYDimension": 1.66, - "topHeight": 2, - "bottomHeight": 0, - "yCount": 8 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json b/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json deleted file mode 100644 index 8397aa71f85..00000000000 --- a/shared-data/labware/definitions/2/appliedbiosystemsmicroamp_384_wellplate_40ul/draft.json +++ /dev/null @@ -1,4737 +0,0 @@ -{ - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - ], - "brand": { - "brand": "Applied Biosystems MicroAmp", - "brandId": ["4309849", "4326270", "4343814"], - "links": [ - "https://www.thermofisher.com/order/catalog/product/4309849#/4309849" - ] - }, - "metadata": { - "displayName": "Applied Biosystems MicroAmp 384 Well Plate 40 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.8, - "yDimension": 85.5, - "zDimension": 9.7 - }, - "wells": { - "A1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P1": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 12.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P2": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 16.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P3": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 21.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P4": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 25.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P5": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 30.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P6": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 34.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P7": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 39.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P8": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 43.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P9": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 48.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P10": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 52.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P11": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 57.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P12": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 61.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P13": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 66.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P14": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 70.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P15": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 75.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P16": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 79.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P17": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 84.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P18": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 88.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P19": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 93.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P20": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 97.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P21": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 102.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P22": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 106.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P23": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 111.15, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "A24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 76.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "B24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 72, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "C24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 67.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "D24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 63, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "E24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 58.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "F24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 54, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "G24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 49.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "H24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 45, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "I24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 40.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "J24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 36, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "K24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 31.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "L24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 27, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "M24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 22.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "N24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 18, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "O24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 13.5, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - }, - "P24": { - "depth": 9.09, - "totalLiquidVolume": 40, - "shape": "circular", - "diameter": 3.17, - "x": 115.65, - "y": 9, - "z": 0.61, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13", - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14", - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15", - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16", - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17", - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18", - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19", - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20", - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21", - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22", - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23", - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - } - ], - "parameters": { - "format": "384Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "appliedbiosystemsmicroamp_384_wellplate_40ul" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "appliedbiosystemsmicroamp_384_wellplate_40ul": { - "x": 0, - "y": 0, - "z": 0.78 - } - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 3.17, - "topDiameter": 3.17, - "topHeight": 9.09, - "bottomHeight": 5.77 - }, - { - "shape": "conical", - "topDiameter": 3.17, - "bottomDiameter": 1.4, - "topHeight": 5.77, - "bottomHeight": 0.34 - }, - { - "shape": "spherical", - "radiusOfCurvature": 0.89, - "topHeight": 0.34, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json deleted file mode 100644 index faaed462f58..00000000000 --- a/shared-data/labware/definitions/2/armadillo_96_wellplate_200ul_pcr_full_skirt/draft.json +++ /dev/null @@ -1,1167 +0,0 @@ -{ - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "parameters": { - "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": true - }, - "metadata": { - "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "brand": { - "brand": "Thermo Scientific", - "brandId": ["AB2396"], - "links": [ - "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" - ] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 10, - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "wells": { - "A1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 5.5, - "topDiameter": 5.5, - "topHeight": 14.95, - "bottomHeight": 11.35 - }, - { - "shape": "conical", - "topDiameter": 5.5, - "bottomDiameter": 2.33, - "topHeight": 11.35, - "bottomHeight": 0.8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.25, - "topHeight": 0.8, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json deleted file mode 100644 index ff59cbc7c8b..00000000000 --- a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/draft.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "Axygen", - "brandId": ["RES-SW1-LP"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Genomics-%26-Molecular-Biology/Automation-Consumables/Automation-Reservoirs/Axygen%C2%AE-Reagent-Reservoirs/p/RES-SW1-LP?clear=true" - ] - }, - "metadata": { - "displayName": "Axygen 1 Well Reservoir 90 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 19.15 - }, - "wells": { - "A1": { - "depth": 12.42, - "shape": "rectangular", - "xDimension": 106.8, - "yDimension": 70.5, - "totalLiquidVolume": 90000, - "x": 63.88, - "y": 42.74, - "z": 6.73, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "wells": ["A1"], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "axygen_1_reservoir_90ml", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 106.8, - "topYDimension": 70.5, - "bottomXDimension": 106.4, - "bottomYDimension": 70, - "topHeight": 12.42, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json b/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json deleted file mode 100644 index 239d18101c4..00000000000 --- a/shared-data/labware/definitions/2/axygen_96_wellplate_500ul/draft.json +++ /dev/null @@ -1,1159 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Axygen", - "brandId": ["P-96-450V-C-S"] - }, - "metadata": { - "displayName": "Axygen 96 Well Plate 500 \u00b5L", - "displayCategory": "wellPlate", - "displayVolumeUnits": "\u00b5L", - "tags": [] - }, - "dimensions": { - "xDimension": 127.64, - "yDimension": 85.34, - "zDimension": 14.35 - }, - "wells": { - "A1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 14.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 23.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 32.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 41.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 50.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 59.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 68.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 77.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 86.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 95.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 104.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 74.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 65.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 56.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 47.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 38.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 29.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 20.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 12.43, - "totalLiquidVolume": 500, - "shape": "circular", - "diameter": 8.5, - "x": 113.38, - "y": 11.1, - "z": 1.92, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "axygen_96_wellplate_500ul" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackLimit": 2, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 8.25 - }, - "millipore_24_ball_magnet": { - "x": 0, - "y": 0, - "z": 4.85 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 47.85 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 8.18, - "topDiameter": 8.5, - "topHeight": 12.43, - "bottomHeight": 3.89 - }, - { - "shape": "conical", - "bottomDiameter": 0.723, - "topDiameter": 8.18, - "topHeight": 3.89, - "bottomHeight": 0.15 - }, - { - "shape": "spherical", - "radiusOfCurvature": 0.511, - "topHeight": 0.15, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json b/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json deleted file mode 100644 index 346c844686b..00000000000 --- a/shared-data/labware/definitions/2/biorad_384_wellplate_50ul/draft.json +++ /dev/null @@ -1,4748 +0,0 @@ -{ - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - ], - "brand": { - "brand": "Bio-Rad", - "brandId": [ - "HSP3xxx", - "HSP3801", - "HSP3805", - "HSP3901", - "HSP3905", - "HSR4xxx", - "HSR4801", - "HSR4805" - ], - "links": [ - "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" - ] - }, - "metadata": { - "displayName": "Bio-Rad 384 Well Plate 50 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 10.4 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 9.3, - "wells": { - "A1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P1": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 12.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P2": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 16.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P3": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 21.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P4": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 25.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P5": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 30.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P6": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 34.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P7": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 39.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P8": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 43.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P9": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 48.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P10": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 52.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P11": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 57.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P12": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 61.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P13": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 66.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P14": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 70.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P15": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 75.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P16": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 79.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P17": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 84.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P18": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 88.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P19": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 93.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P20": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 97.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P21": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 102.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P22": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 106.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P23": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 111.13, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 76.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 71.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 67.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 62.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 58.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 53.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 49.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 44.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "I24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 40.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "J24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 35.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "K24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 31.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "L24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 26.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "M24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 22.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "N24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 17.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "O24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 13.49, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "P24": { - "depth": 9.35, - "totalLiquidVolume": 50, - "shape": "circular", - "diameter": 3.1, - "x": 115.63, - "y": 8.99, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13", - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14", - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15", - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16", - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17", - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18", - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19", - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20", - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21", - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22", - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23", - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - } - ], - "parameters": { - "format": "384Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "biorad_384_wellplate_50ul" - }, - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "biorad_384_wellplate_50ul": { - "x": 0, - "y": 0, - "z": 1.95 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 3, - "topDiameter": 3.1, - "topHeight": 9.35, - "bottomHeight": 5.35 - }, - { - "shape": "conical", - "bottomDiameter": 1.46, - "topDiameter": 3, - "topHeight": 5.35, - "bottomHeight": 0.35 - }, - { - "shape": "spherical", - "radiusOfCurvature": 0.94, - "topHeight": 0.35, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json deleted file mode 100644 index 604f714fcd6..00000000000 --- a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/draft.json +++ /dev/null @@ -1,1187 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "metadata": { - "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "yDimension": 85.48, - "xDimension": 127.76, - "zDimension": 16.06 - }, - "parameters": { - "format": "96Standard", - "isTiprack": false, - "loadName": "biorad_96_wellplate_200ul_pcr", - "isMagneticModuleCompatible": true, - "magneticModuleEngageHeight": 18 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 10.14, - "wells": { - "H1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 14.57, - "shape": "circular", - "diameter": 5.44, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.49, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Bio-Rad", - "brandId": ["hsp9601"], - "links": [ - "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 15.41 - }, - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.16 - }, - "biorad_96_wellplate_200ul_pcr": { - "x": 0, - "y": 0, - "z": 3.32 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.75 - }, - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.87 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 5.44, - "topDiameter": 5.44, - "topHeight": 14.57, - "bottomHeight": 10.14 - }, - { - "shape": "conical", - "topDiameter": 5.44, - "bottomDiameter": 4.98, - "topHeight": 10.14, - "bottomHeight": 8.58 - }, - { - "shape": "conical", - "topDiameter": 4.98, - "bottomDiameter": 3, - "topHeight": 8.58, - "bottomHeight": 1.87 - }, - { - "shape": "conical", - "topDiameter": 3.0, - "bottomDiameter": 2.81, - "topHeight": 1.87, - "bottomHeight": 1.21 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.42, - "topHeight": 1.21, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json deleted file mode 100644 index d738bb78331..00000000000 --- a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/draft.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3", "C3"], - ["A4", "B4", "C4"] - ], - "brand": { - "brand": "Corning", - "brandId": ["3336", "3512", "3513"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3513?clear=true" - ] - }, - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "metadata": { - "displayName": "Corning 12 Well Plate 6.9 mL Flat", - "displayVolumeUnits": "mL", - "displayCategory": "wellPlate", - "tags": [] - }, - "dimensions": { - "xDimension": 127.89, - "yDimension": 85.6, - "zDimension": 20.02 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 18.3, - "wells": { - "C1": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 24.94, - "y": 16.79, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 24.94, - "y": 42.8, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 24.94, - "y": 68.81, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 50.95, - "y": 16.79, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 50.95, - "y": 42.8, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 50.95, - "y": 68.81, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 76.96, - "y": 16.79, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 76.96, - "y": 42.8, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 76.96, - "y": 68.81, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 102.97, - "y": 16.79, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 102.97, - "y": 42.8, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "shape": "circular", - "depth": 17.399, - "diameter": 22.733, - "totalLiquidVolume": 6900, - "x": 102.97, - "y": 68.81, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_12_wellplate_6.9ml_flat" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "A2", - "B2", - "C2", - "A3", - "B3", - "C3", - "A4", - "B4", - "C4" - ], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 4.5 - }, - "corning_12_wellplate_6.9ml_flat": { - "x": 0, - "y": 0, - "z": 0.93 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 22.733, - "bottomDiameter": 22.098, - "topHeight": 17.399, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json deleted file mode 100644 index ae6b21f50f4..00000000000 --- a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/draft.json +++ /dev/null @@ -1,342 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Corning", - "brandId": ["3337", "3524", "3526", "3527", "3473", "3738", "3987"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3738" - ] - }, - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "metadata": { - "displayName": "Corning 24 Well Plate 3.4 mL Flat", - "displayVolumeUnits": "mL", - "displayCategory": "wellPlate", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 20.27 - }, - "wells": { - "D1": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 17.46, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 17.46, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 17.46, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 17.46, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 36.76, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 36.76, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 36.76, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 36.76, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 56.06, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 56.06, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 56.06, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 56.06, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 75.36, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 75.36, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 75.36, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 75.36, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 94.66, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 94.66, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 94.66, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 94.66, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 113.96, - "y": 13.79, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 113.96, - "y": 33.09, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 113.96, - "y": 52.39, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "shape": "circular", - "depth": 17.399, - "diameter": 16.256, - "totalLiquidVolume": 3400, - "x": 113.96, - "y": 71.69, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_24_wellplate_3.4ml_flat" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 4.15 - }, - "corning_24_wellplate_3.4ml_flat": { - "x": 0, - "y": 0, - "z": 1.32 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 16.256, - "bottomDiameter": 15.621, - "topHeight": 17.399, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json deleted file mode 100644 index 0db275a532b..00000000000 --- a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/draft.json +++ /dev/null @@ -1,5116 +0,0 @@ -{ - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - ], - "metadata": { - "displayName": "Corning 384 Well Plate 112 µL Flat", - "displayVolumeUnits": "µL", - "displayCategory": "wellPlate", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 14.22 - }, - "parameters": { - "format": "384Standard", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_384_wellplate_112ul_flat" - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 12.4, - "wells": { - "P1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A1": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 12.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A2": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 16.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A3": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 21.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A4": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 25.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A5": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 30.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A6": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 34.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A7": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 39.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A8": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 43.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A9": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 48.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A10": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 52.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A11": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 57.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A12": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 61.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A13": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 66.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A14": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 70.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A15": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 75.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A16": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 79.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A17": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 84.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A18": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 88.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A19": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 93.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A20": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 97.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A21": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 102.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A22": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 106.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A23": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 111.12, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "P24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 8.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "O24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 13.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "N24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 17.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "M24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 22.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "L24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 26.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "K24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 31.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "J24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 35.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "I24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 40.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "H24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 44.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "G24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 49.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "F24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 53.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "E24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 58.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "D24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 62.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "C24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 67.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "B24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 71.98, - "z": 2.79, - "geometryDefinitionId": "flatWell" - }, - "A24": { - "shape": "rectangular", - "depth": 11.43, - "xDimension": 3.632, - "yDimension": 3.632, - "totalLiquidVolume": 112, - "x": 115.62, - "y": 76.48, - "z": 2.79, - "geometryDefinitionId": "flatWell" - } - }, - "brand": { - "brand": "Corning", - "brandId": ["3640", "3662", "3680", "3700", "3701", "3702"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13", - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14", - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15", - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16", - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17", - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18", - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19", - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20", - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21", - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22", - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23", - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 8.32 - }, - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 4.4 - } - }, - "innerLabwareGeometry": { - "flatWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 3.632, - "topYDimension": 3.632, - "bottomXDimension": 2.667, - "bottomYDimension": 2.667, - "topHeight": 11.43, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json deleted file mode 100644 index 08e348e938b..00000000000 --- a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/draft.json +++ /dev/null @@ -1,610 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1"], - ["A2", "B2", "C2", "D2", "E2", "F2"], - ["A3", "B3", "C3", "D3", "E3", "F3"], - ["A4", "B4", "C4", "D4", "E4", "F4"], - ["A5", "B5", "C5", "D5", "E5", "F5"], - ["A6", "B6", "C6", "D6", "E6", "F6"], - ["A7", "B7", "C7", "D7", "E7", "F7"], - ["A8", "B8", "C8", "D8", "E8", "F8"] - ], - "schemaVersion": 2, - "version": 5, - "namespace": "opentrons", - "metadata": { - "displayName": "Corning 48 Well Plate 1.6 mL Flat", - "displayVolumeUnits": "mL", - "displayCategory": "wellPlate", - "tags": [] - }, - "dimensions": { - "xDimension": 127.89, - "yDimension": 85.6, - "zDimension": 20.02 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_48_wellplate_1.6ml_flat" - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 18.3, - "wells": { - "F1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 18.16, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 31.24, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 44.32, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 57.4, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 70.48, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 83.56, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 96.64, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 10.12, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 23.2, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 36.28, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 49.36, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 62.44, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "shape": "circular", - "depth": 17.399, - "diameter": 11.1, - "totalLiquidVolume": 1600, - "x": 109.72, - "y": 75.52, - "z": 2.621, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Corning", - "brandId": ["3548"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3548" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8" - ], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 4.4 - }, - "corning_48_wellplate_1.6ml_flat": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 10.643, - "topDiameter": 11.1, - "topHeight": 17.399, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json deleted file mode 100644 index e76ad9ef082..00000000000 --- a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/draft.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "ordering": [ - ["A1", "B1"], - ["A2", "B2"], - ["A3", "B3"] - ], - "metadata": { - "displayName": "Corning 6 Well Plate 16.8 mL Flat", - "displayVolumeUnits": "mL", - "displayCategory": "wellPlate", - "tags": [] - }, - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 20.27 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_6_wellplate_16.8ml_flat" - }, - "wells": { - "B1": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 24.76, - "y": 23.19, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 24.76, - "y": 62.31, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 63.88, - "y": 23.19, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 63.88, - "y": 62.31, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 103, - "y": 23.19, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "shape": "circular", - "depth": 17.399, - "diameter": 35.433, - "totalLiquidVolume": 16800, - "x": 103, - "y": 62.31, - "z": 2.871, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Corning", - "brandId": ["3335", "3506", "3516", "3471"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3335" - ] - }, - "groups": [ - { - "wells": ["A1", "B1", "A2", "B2", "A3", "B3"], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 4.5 - }, - "corning_6_wellplate_16.8ml_flat": { - "x": 0, - "y": 0, - "z": 1.74 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 34.798, - "topDiameter": 35.433, - "topHeight": 17.399, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json deleted file mode 100644 index 0f89688208b..00000000000 --- a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/draft.json +++ /dev/null @@ -1,1177 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Corning", - "brandId": [ - "3650", - "3916", - "3915", - "3361", - "3590", - "9018", - "3591", - "9017", - "3641", - "3628", - "3370", - "2507", - "2509", - "2503", - "3665", - "3600", - "3362", - "3917", - "3912", - "3925", - "3922", - "3596", - "3977", - "3598", - "3599", - "3585", - "3595", - "3300", - "3474" - ], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Corning%C2%AE-96-well-Solid-Black-and-White-Polystyrene-Microplates/p/corning96WellSolidBlackAndWhitePolystyreneMicroplates" - ] - }, - "metadata": { - "displayName": "Corning 96 Well Plate 360 µL Flat", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 14.22 - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 12.2, - "wells": { - "H1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 14.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 23.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 32.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 41.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 50.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 59.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 68.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 77.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 86.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 95.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 104.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 11.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 20.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 29.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 38.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 47.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 56.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 65.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 10.668, - "shape": "circular", - "diameter": 6.858, - "totalLiquidVolume": 360, - "x": 113.37, - "y": 74.24, - "z": 3.552, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { - "wellBottomShape": "flat" - } - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_96_wellplate_360ul_flat" - }, - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 10.22 - }, - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 5.45 - }, - "corning_96_wellplate_360ul_flat": { - "x": 0, - "y": 0, - "z": 1.11 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 6.858, - "bottomDiameter": 6.35, - "topHeight": 10.668, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json deleted file mode 100644 index 0047263bd81..00000000000 --- a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_lid/draft.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "Corning", - "brandId": [] - }, - "metadata": { - "displayName": "Corning 96 Wellplate 360ul Lid", - "displayCategory": "lid", - "displayVolumeUnits": "\u00b5L", - "tags": [] - }, - "dimensions": { - "xDimension": 127, - "yDimension": 85, - "zDimension": 10 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": -0.71 - }, - "parameters": { - "format": "irregular", - "quirks": ["stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "corning_96_wellplate_360ul_lid" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackingOffsetWithLabware": { - "corning_96_wellplate_360ul_flat": { - "x": 0, - "y": 0, - "z": 6.5 - }, - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackLimit": 5, - "compatibleParentLabware": [ - "protocol_engine_lid_stack_object", - "opentrons_flex_deck_riser", - "corning_96_wellplate_360ul_flat" - ], - "gripForce": 10, - "gripHeightFromLabwareBottom": 7, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": -6 - } - }, - "lidOffsets": { - "pickUpOffset": { - "x": 0.5, - "y": 0, - "z": -5 - }, - "dropOffset": { - "x": 0.5, - "y": 0, - "z": -1 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json b/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json deleted file mode 100644 index 4351fc22d53..00000000000 --- a/shared-data/labware/definitions/2/eppendorf_96_tiprack_1000ul_eptips/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "metadata": { - "displayName": "Eppendorf epT.I.P.S. 96 Tip Rack 1000 µL", - "displayVolumeUnits": "µL", - "displayCategory": "tipRack", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 121.9 - }, - "parameters": { - "format": "96Standard", - "isTiprack": true, - "isMagneticModuleCompatible": false, - "tipLength": 70.7, - "tipOverlap": 0, - "loadName": "eppendorf_96_tiprack_1000ul_eptips" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 11.24, - "z": 56.9 - }, - "G1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 20.24, - "z": 56.9 - }, - "F1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 29.24, - "z": 56.9 - }, - "E1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 38.24, - "z": 56.9 - }, - "D1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 47.24, - "z": 56.9 - }, - "C1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 56.24, - "z": 56.9 - }, - "B1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 65.24, - "z": 56.9 - }, - "A1": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 74.24, - "z": 56.9 - }, - "H2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 11.24, - "z": 56.9 - }, - "G2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 20.24, - "z": 56.9 - }, - "F2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 29.24, - "z": 56.9 - }, - "E2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 38.24, - "z": 56.9 - }, - "D2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 47.24, - "z": 56.9 - }, - "C2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 56.24, - "z": 56.9 - }, - "B2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 65.24, - "z": 56.9 - }, - "A2": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 74.24, - "z": 56.9 - }, - "H3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 11.24, - "z": 56.9 - }, - "G3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 20.24, - "z": 56.9 - }, - "F3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 29.24, - "z": 56.9 - }, - "E3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 38.24, - "z": 56.9 - }, - "D3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 47.24, - "z": 56.9 - }, - "C3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 56.24, - "z": 56.9 - }, - "B3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 65.24, - "z": 56.9 - }, - "A3": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 74.24, - "z": 56.9 - }, - "H4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 11.24, - "z": 56.9 - }, - "G4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 20.24, - "z": 56.9 - }, - "F4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 29.24, - "z": 56.9 - }, - "E4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 38.24, - "z": 56.9 - }, - "D4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 47.24, - "z": 56.9 - }, - "C4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 56.24, - "z": 56.9 - }, - "B4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 65.24, - "z": 56.9 - }, - "A4": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 74.24, - "z": 56.9 - }, - "H5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 11.24, - "z": 56.9 - }, - "G5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 20.24, - "z": 56.9 - }, - "F5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 29.24, - "z": 56.9 - }, - "E5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 38.24, - "z": 56.9 - }, - "D5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 47.24, - "z": 56.9 - }, - "C5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 56.24, - "z": 56.9 - }, - "B5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 65.24, - "z": 56.9 - }, - "A5": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 74.24, - "z": 56.9 - }, - "H6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 11.24, - "z": 56.9 - }, - "G6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 20.24, - "z": 56.9 - }, - "F6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 29.24, - "z": 56.9 - }, - "E6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 38.24, - "z": 56.9 - }, - "D6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 47.24, - "z": 56.9 - }, - "C6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 56.24, - "z": 56.9 - }, - "B6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 65.24, - "z": 56.9 - }, - "A6": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 74.24, - "z": 56.9 - }, - "H7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 11.24, - "z": 56.9 - }, - "G7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 20.24, - "z": 56.9 - }, - "F7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 29.24, - "z": 56.9 - }, - "E7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 38.24, - "z": 56.9 - }, - "D7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 47.24, - "z": 56.9 - }, - "C7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 56.24, - "z": 56.9 - }, - "B7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 65.24, - "z": 56.9 - }, - "A7": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 74.24, - "z": 56.9 - }, - "H8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 11.24, - "z": 56.9 - }, - "G8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 20.24, - "z": 56.9 - }, - "F8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 29.24, - "z": 56.9 - }, - "E8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 38.24, - "z": 56.9 - }, - "D8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 47.24, - "z": 56.9 - }, - "C8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 56.24, - "z": 56.9 - }, - "B8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 65.24, - "z": 56.9 - }, - "A8": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 74.24, - "z": 56.9 - }, - "H9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 11.24, - "z": 56.9 - }, - "G9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 20.24, - "z": 56.9 - }, - "F9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 29.24, - "z": 56.9 - }, - "E9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 38.24, - "z": 56.9 - }, - "D9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 47.24, - "z": 56.9 - }, - "C9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 56.24, - "z": 56.9 - }, - "B9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 65.24, - "z": 56.9 - }, - "A9": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 74.24, - "z": 56.9 - }, - "H10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 11.24, - "z": 56.9 - }, - "G10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 20.24, - "z": 56.9 - }, - "F10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 29.24, - "z": 56.9 - }, - "E10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 38.24, - "z": 56.9 - }, - "D10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 47.24, - "z": 56.9 - }, - "C10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 56.24, - "z": 56.9 - }, - "B10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 65.24, - "z": 56.9 - }, - "A10": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 74.24, - "z": 56.9 - }, - "H11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 11.24, - "z": 56.9 - }, - "G11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 20.24, - "z": 56.9 - }, - "F11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 29.24, - "z": 56.9 - }, - "E11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 38.24, - "z": 56.9 - }, - "D11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 47.24, - "z": 56.9 - }, - "C11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 56.24, - "z": 56.9 - }, - "B11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 65.24, - "z": 56.9 - }, - "A11": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 74.24, - "z": 56.9 - }, - "H12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 11.24, - "z": 56.9 - }, - "G12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 20.24, - "z": 56.9 - }, - "F12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 29.24, - "z": 56.9 - }, - "E12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 38.24, - "z": 56.9 - }, - "D12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 47.24, - "z": 56.9 - }, - "C12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 56.24, - "z": 56.9 - }, - "B12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 65.24, - "z": 56.9 - }, - "A12": { - "shape": "circular", - "depth": 65, - "diameter": 8.8, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 74.24, - "z": 56.9 - } - }, - "brand": { - "brand": "Eppendorf", - "brandId": ["022491105"], - "links": [ - "https://online-shop.eppendorf.us/US-en/Manual-Liquid-Handling-44563/Pipette-Tips-44569/epT.I.P.S.-PF-243780.html" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json b/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json deleted file mode 100644 index 08f5396e83a..00000000000 --- a/shared-data/labware/definitions/2/eppendorf_96_tiprack_10ul_eptips/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "metadata": { - "displayName": "Eppendorf epT.I.P.S. 96 Tip Rack 10 µL", - "displayVolumeUnits": "µL", - "displayCategory": "tipRack", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 65.4 - }, - "parameters": { - "format": "96Standard", - "isTiprack": true, - "isMagneticModuleCompatible": false, - "tipLength": 34, - "tipOverlap": 1, - "loadName": "eppendorf_96_tiprack_10ul_eptips" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 11.24, - "z": 35.4 - }, - "G1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 20.24, - "z": 35.4 - }, - "F1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 29.24, - "z": 35.4 - }, - "E1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 38.24, - "z": 35.4 - }, - "D1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 47.24, - "z": 35.4 - }, - "C1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 56.24, - "z": 35.4 - }, - "B1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 65.24, - "z": 35.4 - }, - "A1": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 74.24, - "z": 35.4 - }, - "H2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 11.24, - "z": 35.4 - }, - "G2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 20.24, - "z": 35.4 - }, - "F2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 29.24, - "z": 35.4 - }, - "E2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 38.24, - "z": 35.4 - }, - "D2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 47.24, - "z": 35.4 - }, - "C2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 56.24, - "z": 35.4 - }, - "B2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 65.24, - "z": 35.4 - }, - "A2": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 74.24, - "z": 35.4 - }, - "H3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 11.24, - "z": 35.4 - }, - "G3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 20.24, - "z": 35.4 - }, - "F3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 29.24, - "z": 35.4 - }, - "E3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 38.24, - "z": 35.4 - }, - "D3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 47.24, - "z": 35.4 - }, - "C3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 56.24, - "z": 35.4 - }, - "B3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 65.24, - "z": 35.4 - }, - "A3": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 74.24, - "z": 35.4 - }, - "H4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 11.24, - "z": 35.4 - }, - "G4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 20.24, - "z": 35.4 - }, - "F4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 29.24, - "z": 35.4 - }, - "E4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 38.24, - "z": 35.4 - }, - "D4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 47.24, - "z": 35.4 - }, - "C4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 56.24, - "z": 35.4 - }, - "B4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 65.24, - "z": 35.4 - }, - "A4": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 74.24, - "z": 35.4 - }, - "H5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 11.24, - "z": 35.4 - }, - "G5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 20.24, - "z": 35.4 - }, - "F5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 29.24, - "z": 35.4 - }, - "E5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 38.24, - "z": 35.4 - }, - "D5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 47.24, - "z": 35.4 - }, - "C5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 56.24, - "z": 35.4 - }, - "B5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 65.24, - "z": 35.4 - }, - "A5": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 74.24, - "z": 35.4 - }, - "H6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 11.24, - "z": 35.4 - }, - "G6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 20.24, - "z": 35.4 - }, - "F6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 29.24, - "z": 35.4 - }, - "E6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 38.24, - "z": 35.4 - }, - "D6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 47.24, - "z": 35.4 - }, - "C6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 56.24, - "z": 35.4 - }, - "B6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 65.24, - "z": 35.4 - }, - "A6": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 74.24, - "z": 35.4 - }, - "H7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 11.24, - "z": 35.4 - }, - "G7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 20.24, - "z": 35.4 - }, - "F7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 29.24, - "z": 35.4 - }, - "E7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 38.24, - "z": 35.4 - }, - "D7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 47.24, - "z": 35.4 - }, - "C7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 56.24, - "z": 35.4 - }, - "B7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 65.24, - "z": 35.4 - }, - "A7": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 74.24, - "z": 35.4 - }, - "H8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 11.24, - "z": 35.4 - }, - "G8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 20.24, - "z": 35.4 - }, - "F8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 29.24, - "z": 35.4 - }, - "E8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 38.24, - "z": 35.4 - }, - "D8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 47.24, - "z": 35.4 - }, - "C8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 56.24, - "z": 35.4 - }, - "B8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 65.24, - "z": 35.4 - }, - "A8": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 74.24, - "z": 35.4 - }, - "H9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 11.24, - "z": 35.4 - }, - "G9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 20.24, - "z": 35.4 - }, - "F9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 29.24, - "z": 35.4 - }, - "E9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 38.24, - "z": 35.4 - }, - "D9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 47.24, - "z": 35.4 - }, - "C9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 56.24, - "z": 35.4 - }, - "B9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 65.24, - "z": 35.4 - }, - "A9": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 74.24, - "z": 35.4 - }, - "H10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 11.24, - "z": 35.4 - }, - "G10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 20.24, - "z": 35.4 - }, - "F10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 29.24, - "z": 35.4 - }, - "E10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 38.24, - "z": 35.4 - }, - "D10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 47.24, - "z": 35.4 - }, - "C10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 56.24, - "z": 35.4 - }, - "B10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 65.24, - "z": 35.4 - }, - "A10": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 74.24, - "z": 35.4 - }, - "H11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 11.24, - "z": 35.4 - }, - "G11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 20.24, - "z": 35.4 - }, - "F11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 29.24, - "z": 35.4 - }, - "E11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 38.24, - "z": 35.4 - }, - "D11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 47.24, - "z": 35.4 - }, - "C11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 56.24, - "z": 35.4 - }, - "B11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 65.24, - "z": 35.4 - }, - "A11": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 74.24, - "z": 35.4 - }, - "H12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 11.24, - "z": 35.4 - }, - "G12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 20.24, - "z": 35.4 - }, - "F12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 29.24, - "z": 35.4 - }, - "E12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 38.24, - "z": 35.4 - }, - "D12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 47.24, - "z": 35.4 - }, - "C12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 56.24, - "z": 35.4 - }, - "B12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 65.24, - "z": 35.4 - }, - "A12": { - "shape": "circular", - "depth": 30, - "diameter": 6, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 74.24, - "z": 35.4 - } - }, - "brand": { - "brand": "Eppendorf", - "brandId": ["022491300"], - "links": [ - "https://online-shop.eppendorf.us/US-en/Manual-Liquid-Handling-44563/Pipette-Tips-44569/epT.I.P.S.-PF-243780.html" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json b/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json deleted file mode 100644 index dc2fdbfec4a..00000000000 --- a/shared-data/labware/definitions/2/eppendorf_96_wellplate_1000ul/draft.json +++ /dev/null @@ -1,1149 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Eppendorf", - "brandId": ["951032603"], - "links": [ - "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-Deepwell-Plates-p-951032603" - ] - }, - "metadata": { - "displayName": "Eppendorf 96 Well Plate 1000 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.8, - "yDimension": 85.5, - "zDimension": 44.1 - }, - "wells": { - "A1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 74.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 65.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 56.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 47.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 38.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 29.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 20.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 40.9, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.4, - "y": 11.3, - "z": 3.2, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "eppendorf_96_wellplate_1000ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "eppendorf_96_wellplate_1000ul": { - "x": 0, - "y": 0, - "z": 1.4 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 3.5, - "bottomDiameter": 3.0, - "topHeight": 40.9, - "bottomHeight": 1.82 - }, - { - "shape": "conical", - "topDiameter": 3.0, - "bottomDiameter": 1.18, - "topHeight": 1.82, - "bottomHeight": 0.58 - }, - { - "shape": "spherical", - "topHeight": 0.58, - "bottomHeight": 0.0, - "radiusOfCurvature": 2.02 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json deleted file mode 100644 index 513e262edab..00000000000 --- a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_labware/draft.json +++ /dev/null @@ -1,1067 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00254"], - "links": [ - "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" - ] - }, - "metadata": { - "displayName": "Opentrons Flex EV Resin Tips Top Adapter with Third-party Evotips", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 55 - }, - "wells": { - "A1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 75.25, - "z": 0 - }, - "B1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 66.25, - "z": 0 - }, - "C1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 57.25, - "z": 0 - }, - "D1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 48.25, - "z": 0 - }, - "E1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 39.25, - "z": 0 - }, - "F1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 30.25, - "z": 0 - }, - "G1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 21.25, - "z": 0 - }, - "H1": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 14.38, - "y": 12.25, - "z": 0 - }, - "A2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 75.25, - "z": 0 - }, - "B2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 66.25, - "z": 0 - }, - "C2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 57.25, - "z": 0 - }, - "D2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 48.25, - "z": 0 - }, - "E2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 39.25, - "z": 0 - }, - "F2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 30.25, - "z": 0 - }, - "G2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 21.25, - "z": 0 - }, - "H2": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 23.38, - "y": 12.25, - "z": 0 - }, - "A3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 75.25, - "z": 0 - }, - "B3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 66.25, - "z": 0 - }, - "C3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 57.25, - "z": 0 - }, - "D3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 48.25, - "z": 0 - }, - "E3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 39.25, - "z": 0 - }, - "F3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 30.25, - "z": 0 - }, - "G3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 21.25, - "z": 0 - }, - "H3": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 32.38, - "y": 12.25, - "z": 0 - }, - "A4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 75.25, - "z": 0 - }, - "B4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 66.25, - "z": 0 - }, - "C4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 57.25, - "z": 0 - }, - "D4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 48.25, - "z": 0 - }, - "E4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 39.25, - "z": 0 - }, - "F4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 30.25, - "z": 0 - }, - "G4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 21.25, - "z": 0 - }, - "H4": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 41.38, - "y": 12.25, - "z": 0 - }, - "A5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 75.25, - "z": 0 - }, - "B5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 66.25, - "z": 0 - }, - "C5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 57.25, - "z": 0 - }, - "D5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 48.25, - "z": 0 - }, - "E5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 39.25, - "z": 0 - }, - "F5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 30.25, - "z": 0 - }, - "G5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 21.25, - "z": 0 - }, - "H5": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 50.38, - "y": 12.25, - "z": 0 - }, - "A6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 75.25, - "z": 0 - }, - "B6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 66.25, - "z": 0 - }, - "C6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 57.25, - "z": 0 - }, - "D6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 48.25, - "z": 0 - }, - "E6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 39.25, - "z": 0 - }, - "F6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 30.25, - "z": 0 - }, - "G6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 21.25, - "z": 0 - }, - "H6": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 59.38, - "y": 12.25, - "z": 0 - }, - "A7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 75.25, - "z": 0 - }, - "B7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 66.25, - "z": 0 - }, - "C7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 57.25, - "z": 0 - }, - "D7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 48.25, - "z": 0 - }, - "E7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 39.25, - "z": 0 - }, - "F7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 30.25, - "z": 0 - }, - "G7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 21.25, - "z": 0 - }, - "H7": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 68.38, - "y": 12.25, - "z": 0 - }, - "A8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 75.25, - "z": 0 - }, - "B8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 66.25, - "z": 0 - }, - "C8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 57.25, - "z": 0 - }, - "D8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 48.25, - "z": 0 - }, - "E8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 39.25, - "z": 0 - }, - "F8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 30.25, - "z": 0 - }, - "G8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 21.25, - "z": 0 - }, - "H8": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 77.38, - "y": 12.25, - "z": 0 - }, - "A9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 75.25, - "z": 0 - }, - "B9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 66.25, - "z": 0 - }, - "C9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 57.25, - "z": 0 - }, - "D9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 48.25, - "z": 0 - }, - "E9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 39.25, - "z": 0 - }, - "F9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 30.25, - "z": 0 - }, - "G9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 21.25, - "z": 0 - }, - "H9": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 86.38, - "y": 12.25, - "z": 0 - }, - "A10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 75.25, - "z": 0 - }, - "B10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 66.25, - "z": 0 - }, - "C10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 57.25, - "z": 0 - }, - "D10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 48.25, - "z": 0 - }, - "E10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 39.25, - "z": 0 - }, - "F10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 30.25, - "z": 0 - }, - "G10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 21.25, - "z": 0 - }, - "H10": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 95.38, - "y": 12.25, - "z": 0 - }, - "A11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 75.25, - "z": 0 - }, - "B11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 66.25, - "z": 0 - }, - "C11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 57.25, - "z": 0 - }, - "D11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 48.25, - "z": 0 - }, - "E11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 39.25, - "z": 0 - }, - "F11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 30.25, - "z": 0 - }, - "G11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 21.25, - "z": 0 - }, - "H11": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 104.38, - "y": 12.25, - "z": 0 - }, - "A12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 75.25, - "z": 0 - }, - "B12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 66.25, - "z": 0 - }, - "C12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 57.25, - "z": 0 - }, - "D12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 48.25, - "z": 0 - }, - "E12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 39.25, - "z": 0 - }, - "F12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 30.25, - "z": 0 - }, - "G12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 21.25, - "z": 0 - }, - "H12": { - "depth": 51, - "totalLiquidVolume": 1000, - "shape": "circular", - "diameter": 7, - "x": 113.38, - "y": 12.25, - "z": 0 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["stackingOnly"], - "isTiprack": false, - "tipLength": 51.0, - "tipOverlap": 10.0, - "isMagneticModuleCompatible": false, - "loadName": "ev_resin_tips_flex_96_labware" - }, - "namespace": "opentrons", - "allowedRoles": ["labware"], - "version": 1, - "stackLimit": 5, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "gripHeightFromLabwareBottom": 27, - "gripForce": 15, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 8 - } - } - }, - "stackingOffsetWithLabware": { - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 22.5 - }, - "nest_1_reservoir_195ml": { - "x": 0, - "y": 0, - "z": 22.5 - }, - "ev_resin_tips_flex_short_adapter": { - "x": 0, - "y": 0, - "z": 18.5 - }, - "ev_resin_tips_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 71.78 - }, - "ev_resin_tips_flex_tall_adapter": { - "x": 0, - "y": 0, - "z": 18.5 - } - } -} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json deleted file mode 100644 index edbb5341676..00000000000 --- a/shared-data/labware/definitions/2/ev_resin_tips_flex_96_tiprack_adapter/draft.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00254"], - "links": [ - "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" - ] - }, - "metadata": { - "displayName": "Opentrons Flex EV Resin Tips Tall Adapter for Third-party Evotips in 96 Tip Rack Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 156.5, - "yDimension": 98, - "zDimension": 132 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["tiprackAdapterFor96Channel", "stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "ev_resin_tips_flex_96_tiprack_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -14.25, - "y": -3.5, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json deleted file mode 100644 index 5979a2e83e0..00000000000 --- a/shared-data/labware/definitions/2/ev_resin_tips_flex_short_adapter/draft.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00254"], - "links": [ - "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" - ] - }, - "metadata": { - "displayName": "Opentrons Flex EV Resin Tips Short Adapter for Third-party Evotips", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 130.5, - "yDimension": 98, - "zDimension": 51.5 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "ev_resin_tips_flex_short_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -0.19, - "y": -0.19, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json b/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json deleted file mode 100644 index 49a316c1c31..00000000000 --- a/shared-data/labware/definitions/2/ev_resin_tips_flex_tall_adapter/draft.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00254"], - "links": [ - "https://opentrons.com/products/opentrons-flex-adapter-set-for-3rd-party-evotips/" - ] - }, - "metadata": { - "displayName": "Opentrons Flex EV Resin Tips Tall Adapter for Third-party Evotips", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 130.5, - "yDimension": 98, - "zDimension": 67.5 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "ev_resin_tips_flex_tall_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -0.19, - "y": -0.19, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json deleted file mode 100644 index 8d25376a0a4..00000000000 --- a/shared-data/labware/definitions/2/geb_96_tiprack_1000ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "namespace": "opentrons", - "schemaVersion": 2, - "version": 1, - "metadata": { - "displayName": "GEB 96 Tip Rack 1000 µL", - "displayVolumeUnits": "µL", - "displayCategory": "tipRack", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 100.25 - }, - "parameters": { - "format": "96Standard", - "isTiprack": true, - "isMagneticModuleCompatible": false, - "tipLength": 87.9, - "tipOverlap": 11.2, - "loadName": "geb_96_tiprack_1000ul" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 11.2, - "z": 18.25 - }, - "G1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 20.2, - "z": 18.25 - }, - "F1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 29.2, - "z": 18.25 - }, - "E1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 38.2, - "z": 18.25 - }, - "D1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 47.2, - "z": 18.25 - }, - "C1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 56.2, - "z": 18.25 - }, - "B1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 65.2, - "z": 18.25 - }, - "A1": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 14.2, - "y": 74.2, - "z": 18.25 - }, - "H2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 11.2, - "z": 18.25 - }, - "G2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 20.2, - "z": 18.25 - }, - "F2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 29.2, - "z": 18.25 - }, - "E2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 38.2, - "z": 18.25 - }, - "D2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 47.2, - "z": 18.25 - }, - "C2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 56.2, - "z": 18.25 - }, - "B2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 65.2, - "z": 18.25 - }, - "A2": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 23.2, - "y": 74.2, - "z": 18.25 - }, - "H3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 11.2, - "z": 18.25 - }, - "G3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 20.2, - "z": 18.25 - }, - "F3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 29.2, - "z": 18.25 - }, - "E3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 38.2, - "z": 18.25 - }, - "D3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 47.2, - "z": 18.25 - }, - "C3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 56.2, - "z": 18.25 - }, - "B3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 65.2, - "z": 18.25 - }, - "A3": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 32.2, - "y": 74.2, - "z": 18.25 - }, - "H4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 11.2, - "z": 18.25 - }, - "G4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 20.2, - "z": 18.25 - }, - "F4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 29.2, - "z": 18.25 - }, - "E4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 38.2, - "z": 18.25 - }, - "D4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 47.2, - "z": 18.25 - }, - "C4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 56.2, - "z": 18.25 - }, - "B4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 65.2, - "z": 18.25 - }, - "A4": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 41.2, - "y": 74.2, - "z": 18.25 - }, - "H5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 11.2, - "z": 18.25 - }, - "G5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 20.2, - "z": 18.25 - }, - "F5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 29.2, - "z": 18.25 - }, - "E5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 38.2, - "z": 18.25 - }, - "D5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 47.2, - "z": 18.25 - }, - "C5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 56.2, - "z": 18.25 - }, - "B5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 65.2, - "z": 18.25 - }, - "A5": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 50.2, - "y": 74.2, - "z": 18.25 - }, - "H6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 11.2, - "z": 18.25 - }, - "G6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 20.2, - "z": 18.25 - }, - "F6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 29.2, - "z": 18.25 - }, - "E6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 38.2, - "z": 18.25 - }, - "D6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 47.2, - "z": 18.25 - }, - "C6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 56.2, - "z": 18.25 - }, - "B6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 65.2, - "z": 18.25 - }, - "A6": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 59.2, - "y": 74.2, - "z": 18.25 - }, - "H7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 11.2, - "z": 18.25 - }, - "G7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 20.2, - "z": 18.25 - }, - "F7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 29.2, - "z": 18.25 - }, - "E7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 38.2, - "z": 18.25 - }, - "D7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 47.2, - "z": 18.25 - }, - "C7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 56.2, - "z": 18.25 - }, - "B7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 65.2, - "z": 18.25 - }, - "A7": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 68.2, - "y": 74.2, - "z": 18.25 - }, - "H8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 11.2, - "z": 18.25 - }, - "G8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 20.2, - "z": 18.25 - }, - "F8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 29.2, - "z": 18.25 - }, - "E8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 38.2, - "z": 18.25 - }, - "D8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 47.2, - "z": 18.25 - }, - "C8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 56.2, - "z": 18.25 - }, - "B8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 65.2, - "z": 18.25 - }, - "A8": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 77.2, - "y": 74.2, - "z": 18.25 - }, - "H9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 11.2, - "z": 18.25 - }, - "G9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 20.2, - "z": 18.25 - }, - "F9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 29.2, - "z": 18.25 - }, - "E9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 38.2, - "z": 18.25 - }, - "D9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 47.2, - "z": 18.25 - }, - "C9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 56.2, - "z": 18.25 - }, - "B9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 65.2, - "z": 18.25 - }, - "A9": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 86.2, - "y": 74.2, - "z": 18.25 - }, - "H10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 11.2, - "z": 18.25 - }, - "G10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 20.2, - "z": 18.25 - }, - "F10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 29.2, - "z": 18.25 - }, - "E10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 38.2, - "z": 18.25 - }, - "D10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 47.2, - "z": 18.25 - }, - "C10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 56.2, - "z": 18.25 - }, - "B10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 65.2, - "z": 18.25 - }, - "A10": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 95.2, - "y": 74.2, - "z": 18.25 - }, - "H11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 11.2, - "z": 18.25 - }, - "G11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 20.2, - "z": 18.25 - }, - "F11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 29.2, - "z": 18.25 - }, - "E11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 38.2, - "z": 18.25 - }, - "D11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 47.2, - "z": 18.25 - }, - "C11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 56.2, - "z": 18.25 - }, - "B11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 65.2, - "z": 18.25 - }, - "A11": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 104.2, - "y": 74.2, - "z": 18.25 - }, - "H12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 11.2, - "z": 18.25 - }, - "G12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 20.2, - "z": 18.25 - }, - "F12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 29.2, - "z": 18.25 - }, - "E12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 38.2, - "z": 18.25 - }, - "D12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 47.2, - "z": 18.25 - }, - "C12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 56.2, - "z": 18.25 - }, - "B12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 65.2, - "z": 18.25 - }, - "A12": { - "shape": "circular", - "depth": 82, - "diameter": 7.46, - "totalLiquidVolume": 1000, - "x": 113.2, - "y": 74.2, - "z": 18.25 - } - }, - "brand": { - "brand": "GEB", - "brandId": ["PT1000-1-B"], - "links": ["http://www.ge-bio.com/product/showproduct.php?lang=en&id=188"] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json b/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json deleted file mode 100644 index 4c47a9999c4..00000000000 --- a/shared-data/labware/definitions/2/geb_96_tiprack_10ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "metadata": { - "displayName": "GEB 96 Tip Rack 10 µL", - "displayVolumeUnits": "µL", - "displayCategory": "tipRack", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 52.25 - }, - "parameters": { - "format": "96Standard", - "isTiprack": true, - "isMagneticModuleCompatible": false, - "tipLength": 39.2, - "tipOverlap": 6.2, - "loadName": "geb_96_tiprack_10ul" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 11.25, - "z": 22.25 - }, - "G1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 20.25, - "z": 22.25 - }, - "F1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 29.25, - "z": 22.25 - }, - "E1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 38.25, - "z": 22.25 - }, - "D1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 47.25, - "z": 22.25 - }, - "C1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 56.25, - "z": 22.25 - }, - "B1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 65.25, - "z": 22.25 - }, - "A1": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 74.25, - "z": 22.25 - }, - "H2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 11.25, - "z": 22.25 - }, - "G2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 20.25, - "z": 22.25 - }, - "F2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 29.25, - "z": 22.25 - }, - "E2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 38.25, - "z": 22.25 - }, - "D2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 47.25, - "z": 22.25 - }, - "C2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 56.25, - "z": 22.25 - }, - "B2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 65.25, - "z": 22.25 - }, - "A2": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 74.25, - "z": 22.25 - }, - "H3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 11.25, - "z": 22.25 - }, - "G3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 20.25, - "z": 22.25 - }, - "F3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 29.25, - "z": 22.25 - }, - "E3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 38.25, - "z": 22.25 - }, - "D3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 47.25, - "z": 22.25 - }, - "C3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 56.25, - "z": 22.25 - }, - "B3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 65.25, - "z": 22.25 - }, - "A3": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 74.25, - "z": 22.25 - }, - "H4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 11.25, - "z": 22.25 - }, - "G4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 20.25, - "z": 22.25 - }, - "F4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 29.25, - "z": 22.25 - }, - "E4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 38.25, - "z": 22.25 - }, - "D4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 47.25, - "z": 22.25 - }, - "C4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 56.25, - "z": 22.25 - }, - "B4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 65.25, - "z": 22.25 - }, - "A4": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 74.25, - "z": 22.25 - }, - "H5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 11.25, - "z": 22.25 - }, - "G5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 20.25, - "z": 22.25 - }, - "F5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 29.25, - "z": 22.25 - }, - "E5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 38.25, - "z": 22.25 - }, - "D5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 47.25, - "z": 22.25 - }, - "C5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 56.25, - "z": 22.25 - }, - "B5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 65.25, - "z": 22.25 - }, - "A5": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 74.25, - "z": 22.25 - }, - "H6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 11.25, - "z": 22.25 - }, - "G6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 20.25, - "z": 22.25 - }, - "F6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 29.25, - "z": 22.25 - }, - "E6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 38.25, - "z": 22.25 - }, - "D6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 47.25, - "z": 22.25 - }, - "C6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 56.25, - "z": 22.25 - }, - "B6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 65.25, - "z": 22.25 - }, - "A6": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 74.25, - "z": 22.25 - }, - "H7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 11.25, - "z": 22.25 - }, - "G7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 20.25, - "z": 22.25 - }, - "F7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 29.25, - "z": 22.25 - }, - "E7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 38.25, - "z": 22.25 - }, - "D7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 47.25, - "z": 22.25 - }, - "C7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 56.25, - "z": 22.25 - }, - "B7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 65.25, - "z": 22.25 - }, - "A7": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 74.25, - "z": 22.25 - }, - "H8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 11.25, - "z": 22.25 - }, - "G8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 20.25, - "z": 22.25 - }, - "F8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 29.25, - "z": 22.25 - }, - "E8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 38.25, - "z": 22.25 - }, - "D8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 47.25, - "z": 22.25 - }, - "C8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 56.25, - "z": 22.25 - }, - "B8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 65.25, - "z": 22.25 - }, - "A8": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 74.25, - "z": 22.25 - }, - "H9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 11.25, - "z": 22.25 - }, - "G9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 20.25, - "z": 22.25 - }, - "F9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 29.25, - "z": 22.25 - }, - "E9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 38.25, - "z": 22.25 - }, - "D9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 47.25, - "z": 22.25 - }, - "C9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 56.25, - "z": 22.25 - }, - "B9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 65.25, - "z": 22.25 - }, - "A9": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 74.25, - "z": 22.25 - }, - "H10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 11.25, - "z": 22.25 - }, - "G10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 20.25, - "z": 22.25 - }, - "F10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 29.25, - "z": 22.25 - }, - "E10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 38.25, - "z": 22.25 - }, - "D10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 47.25, - "z": 22.25 - }, - "C10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 56.25, - "z": 22.25 - }, - "B10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 65.25, - "z": 22.25 - }, - "A10": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 74.25, - "z": 22.25 - }, - "H11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 11.25, - "z": 22.25 - }, - "G11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 20.25, - "z": 22.25 - }, - "F11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 29.25, - "z": 22.25 - }, - "E11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 38.25, - "z": 22.25 - }, - "D11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 47.25, - "z": 22.25 - }, - "C11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 56.25, - "z": 22.25 - }, - "B11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 65.25, - "z": 22.25 - }, - "A11": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 74.25, - "z": 22.25 - }, - "H12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 11.25, - "z": 22.25 - }, - "G12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 20.25, - "z": 22.25 - }, - "F12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 29.25, - "z": 22.25 - }, - "E12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 38.25, - "z": 22.25 - }, - "D12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 47.25, - "z": 22.25 - }, - "C12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 56.25, - "z": 22.25 - }, - "B12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 65.25, - "z": 22.25 - }, - "A12": { - "shape": "circular", - "depth": 34, - "diameter": 3.46, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 74.25, - "z": 22.25 - } - }, - "brand": { - "brand": "GEB", - "brandId": ["PT0010-9-N"], - "links": ["http://www.ge-bio.com/product/showproduct.php?lang=en&id=196"] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json deleted file mode 100644 index f3fdadfc5d0..00000000000 --- a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul/draft.json +++ /dev/null @@ -1,1216 +0,0 @@ -{ - "brand": { "brand": "ibidi", "brandId": ["89626", "89621"] }, - "wells": { - "A1": { - "x": 14.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A2": { - "x": 23.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A3": { - "x": 32.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A4": { - "x": 41.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A5": { - "x": 50.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A6": { - "x": 59.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A7": { - "x": 68.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A8": { - "x": 77.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A9": { - "x": 86.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B1": { - "x": 14.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B2": { - "x": 23.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B3": { - "x": 32.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B4": { - "x": 41.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B5": { - "x": 50.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B6": { - "x": 59.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B7": { - "x": 68.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B8": { - "x": 77.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B9": { - "x": 86.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C1": { - "x": 14.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C2": { - "x": 23.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C3": { - "x": 32.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C4": { - "x": 41.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C5": { - "x": 50.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C6": { - "x": 59.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C7": { - "x": 68.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C8": { - "x": 77.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C9": { - "x": 86.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D1": { - "x": 14.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D2": { - "x": 23.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D3": { - "x": 32.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D4": { - "x": 41.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D5": { - "x": 50.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D6": { - "x": 59.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D7": { - "x": 68.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D8": { - "x": 77.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D9": { - "x": 86.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E1": { - "x": 14.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E2": { - "x": 23.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E3": { - "x": 32.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E4": { - "x": 41.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E5": { - "x": 50.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E6": { - "x": 59.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E7": { - "x": 68.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E8": { - "x": 77.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E9": { - "x": 86.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F1": { - "x": 14.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F2": { - "x": 23.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F3": { - "x": 32.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F4": { - "x": 41.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F5": { - "x": 50.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F6": { - "x": 59.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F7": { - "x": 68.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F8": { - "x": 77.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F9": { - "x": 86.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G1": { - "x": 14.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G2": { - "x": 23.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G3": { - "x": 32.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G4": { - "x": 41.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G5": { - "x": 50.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G6": { - "x": 59.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G7": { - "x": 68.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G8": { - "x": 77.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G9": { - "x": 86.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H1": { - "x": 14.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H2": { - "x": 23.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H3": { - "x": 32.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H4": { - "x": 41.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H5": { - "x": 50.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H6": { - "x": 59.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H7": { - "x": 68.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H8": { - "x": 77.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H9": { - "x": 86.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A10": { - "x": 95.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A11": { - "x": 104.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "A12": { - "x": 113.38, - "y": 74.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B10": { - "x": 95.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B11": { - "x": 104.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "B12": { - "x": 113.38, - "y": 65.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C10": { - "x": 95.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C11": { - "x": 104.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "C12": { - "x": 113.38, - "y": 56.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D10": { - "x": 95.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D11": { - "x": 104.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "D12": { - "x": 113.38, - "y": 47.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E10": { - "x": 95.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E11": { - "x": 104.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "E12": { - "x": 113.38, - "y": 38.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F10": { - "x": 95.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F11": { - "x": 104.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "F12": { - "x": 113.38, - "y": 29.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G10": { - "x": 95.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G11": { - "x": 104.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "G12": { - "x": 113.38, - "y": 20.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H10": { - "x": 95.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H11": { - "x": 104.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - }, - "H12": { - "x": 113.38, - "y": 11.24, - "z": 1, - "depth": 12.9, - "shape": "rectangular", - "xDimension": 7.4, - "yDimension": 7.4, - "totalLiquidVolume": 300, - "geometryDefinitionId": "rectangularWell" - } - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { "wellBottomShape": "flat" } - } - ], - "version": 2, - "metadata": { - "tags": [], - "displayName": "ibidi 96 Square Well Flat Bottom Plate 300 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL" - }, - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "gripForce": 15, - "namespace": "opentrons", - "dimensions": { "xDimension": 127.76, "yDimension": 85.47, "zDimension": 15 }, - "parameters": { - "format": "96Standard", - "quirks": [], - "loadName": "ibidi_96_square_well_plate_300ul", - "isTiprack": false, - "isMagneticModuleCompatible": false - }, - "schemaVersion": 2, - "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { "x": 0, "y": 0, "z": 8.25 } - }, - "innerLabwareGeometry": { - "rectangularWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 7.4, - "topYDimension": 7.4, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "topHeight": 12.9, - "bottomHeight": 0 - } - ] - } - }, - "gripHeightFromLabwareBottom": 5.2 -} diff --git a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json b/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json deleted file mode 100644 index 9bd9447a498..00000000000 --- a/shared-data/labware/definitions/2/ibidi_96_square_well_plate_300ul_lid/draft.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "ibidi", - "brandId": [] - }, - "metadata": { - "displayName": "ibidi 96 Square Well Flat Bottom Plate 300 µL Lid", - "displayCategory": "lid", - "displayVolumeUnits": "\u00b5L", - "tags": [] - }, - "dimensions": { - "xDimension": 127, - "yDimension": 84.5, - "zDimension": 6.95 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "parameters": { - "format": "irregular", - "quirks": ["stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "ibidi_96_square_well_plate_300ul_lid" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "ibidi_96_square_well_plate_300ul_lid": { - "x": 0, - "y": 0, - "z": 1.2 - }, - "ibidi_96_square_well_plate_300ul": { - "x": 0, - "y": 0, - "z": 4.75 - }, - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackLimit": 5, - "compatibleParentLabware": [ - "protocol_engine_lid_stack_object", - "opentrons_flex_deck_riser", - "ibidi_96_square_well_plate_300ul", - "ibidi_96_square_well_plate_300ul_lid" - ], - "gripForce": 10, - "gripHeightFromLabwareBottom": 5, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": -6 - } - }, - "lidOffsets": { - "pickUpOffset": { - "x": 0.5, - "y": 0, - "z": -5 - }, - "dropOffset": { - "x": 0.5, - "y": 0, - "z": -1 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json b/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json deleted file mode 100644 index 11341d8d395..00000000000 --- a/shared-data/labware/definitions/2/milliplex_microtiter_plate/draft.json +++ /dev/null @@ -1,1018 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "MILLIPLEX", - "brandId": [] - }, - "metadata": { - "displayName": "MILLIPLEX Microtiter Plate", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 14.4 - }, - "wells": { - "A1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 74.24, - "z": 3.5 - }, - "B1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 65.24, - "z": 3.5 - }, - "C1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 56.24, - "z": 3.5 - }, - "D1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 47.24, - "z": 3.5 - }, - "E1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 38.24, - "z": 3.5 - }, - "F1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 29.24, - "z": 3.5 - }, - "G1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 20.24, - "z": 3.5 - }, - "H1": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 14.38, - "y": 11.24, - "z": 3.5 - }, - "A2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 74.24, - "z": 3.5 - }, - "B2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 65.24, - "z": 3.5 - }, - "C2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 56.24, - "z": 3.5 - }, - "D2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 47.24, - "z": 3.5 - }, - "E2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 38.24, - "z": 3.5 - }, - "F2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 29.24, - "z": 3.5 - }, - "G2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 20.24, - "z": 3.5 - }, - "H2": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 23.38, - "y": 11.24, - "z": 3.5 - }, - "A3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 74.24, - "z": 3.5 - }, - "B3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 65.24, - "z": 3.5 - }, - "C3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 56.24, - "z": 3.5 - }, - "D3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 47.24, - "z": 3.5 - }, - "E3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 38.24, - "z": 3.5 - }, - "F3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 29.24, - "z": 3.5 - }, - "G3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 20.24, - "z": 3.5 - }, - "H3": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 32.38, - "y": 11.24, - "z": 3.5 - }, - "A4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 74.24, - "z": 3.5 - }, - "B4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 65.24, - "z": 3.5 - }, - "C4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 56.24, - "z": 3.5 - }, - "D4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 47.24, - "z": 3.5 - }, - "E4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 38.24, - "z": 3.5 - }, - "F4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 29.24, - "z": 3.5 - }, - "G4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 20.24, - "z": 3.5 - }, - "H4": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 41.38, - "y": 11.24, - "z": 3.5 - }, - "A5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 74.24, - "z": 3.5 - }, - "B5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 65.24, - "z": 3.5 - }, - "C5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 56.24, - "z": 3.5 - }, - "D5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 47.24, - "z": 3.5 - }, - "E5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 38.24, - "z": 3.5 - }, - "F5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 29.24, - "z": 3.5 - }, - "G5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 20.24, - "z": 3.5 - }, - "H5": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 50.38, - "y": 11.24, - "z": 3.5 - }, - "A6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 74.24, - "z": 3.5 - }, - "B6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 65.24, - "z": 3.5 - }, - "C6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 56.24, - "z": 3.5 - }, - "D6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 47.24, - "z": 3.5 - }, - "E6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 38.24, - "z": 3.5 - }, - "F6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 29.24, - "z": 3.5 - }, - "G6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 20.24, - "z": 3.5 - }, - "H6": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 59.38, - "y": 11.24, - "z": 3.5 - }, - "A7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 74.24, - "z": 3.5 - }, - "B7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 65.24, - "z": 3.5 - }, - "C7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 56.24, - "z": 3.5 - }, - "D7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 47.24, - "z": 3.5 - }, - "E7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 38.24, - "z": 3.5 - }, - "F7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 29.24, - "z": 3.5 - }, - "G7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 20.24, - "z": 3.5 - }, - "H7": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 68.38, - "y": 11.24, - "z": 3.5 - }, - "A8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 74.24, - "z": 3.5 - }, - "B8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 65.24, - "z": 3.5 - }, - "C8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 56.24, - "z": 3.5 - }, - "D8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 47.24, - "z": 3.5 - }, - "E8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 38.24, - "z": 3.5 - }, - "F8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 29.24, - "z": 3.5 - }, - "G8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 20.24, - "z": 3.5 - }, - "H8": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 77.38, - "y": 11.24, - "z": 3.5 - }, - "A9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 74.24, - "z": 3.5 - }, - "B9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 65.24, - "z": 3.5 - }, - "C9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 56.24, - "z": 3.5 - }, - "D9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 47.24, - "z": 3.5 - }, - "E9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 38.24, - "z": 3.5 - }, - "F9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 29.24, - "z": 3.5 - }, - "G9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 20.24, - "z": 3.5 - }, - "H9": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 86.38, - "y": 11.24, - "z": 3.5 - }, - "A10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 74.24, - "z": 3.5 - }, - "B10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 65.24, - "z": 3.5 - }, - "C10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 56.24, - "z": 3.5 - }, - "D10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 47.24, - "z": 3.5 - }, - "E10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 38.24, - "z": 3.5 - }, - "F10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 29.24, - "z": 3.5 - }, - "G10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 20.24, - "z": 3.5 - }, - "H10": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 95.38, - "y": 11.24, - "z": 3.5 - }, - "A11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 74.24, - "z": 3.5 - }, - "B11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 65.24, - "z": 3.5 - }, - "C11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 56.24, - "z": 3.5 - }, - "D11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 47.24, - "z": 3.5 - }, - "E11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 38.24, - "z": 3.5 - }, - "F11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 29.24, - "z": 3.5 - }, - "G11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 20.24, - "z": 3.5 - }, - "H11": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 104.38, - "y": 11.24, - "z": 3.5 - }, - "A12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 74.24, - "z": 3.5 - }, - "B12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 65.24, - "z": 3.5 - }, - "C12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 56.24, - "z": 3.5 - }, - "D12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 47.24, - "z": 3.5 - }, - "E12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 38.24, - "z": 3.5 - }, - "F12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 29.24, - "z": 3.5 - }, - "G12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 20.24, - "z": 3.5 - }, - "H12": { - "depth": 10.9, - "totalLiquidVolume": 392, - "shape": "circular", - "diameter": 6.96, - "x": 113.38, - "y": 11.24, - "z": 3.5 - } - }, - "groups": [ - { - "metadata": { "wellBottomShape": "flat" }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "milliplex_microtiter_plate" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter_type_b": { - "x": 0, - "y": 0, - "z": 3.3 - } - } -} diff --git a/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json b/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json deleted file mode 100644 index de3d7d66491..00000000000 --- a/shared-data/labware/definitions/2/milliplex_microtiter_plate_lid/draft.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "MILLIPLEX", - "brandId": [] - }, - "metadata": { - "displayName": "MILLIPLEX Microtiter Plate Lid", - "displayCategory": "lid", - "displayVolumeUnits": "\u00b5L", - "tags": [] - }, - "dimensions": { - "xDimension": 127.5, - "yDimension": 85, - "zDimension": 10 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": -0.71 - }, - "parameters": { - "format": "irregular", - "quirks": ["stackingMaxFive"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "milliplex_microtiter_plate_lid" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "milliplex_microtiter_plate": { - "x": 0, - "y": 0, - "z": 7.4 - }, - "milliplex_microtiter_plate_lid": { - "x": 0, - "y": 0, - "z": 1 - }, - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackLimit": 5, - "compatibleParentLabware": [ - "protocol_engine_lid_stack_object", - "opentrons_flex_deck_riser", - "milliplex_microtiter_plate", - "milliplex_microtiter_plate_lid" - ], - "gripForce": 10, - "gripHeightFromLabwareBottom": 7, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": -5 - } - }, - "lidOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": -5 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": -5 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json deleted file mode 100644 index d786dcd31bd..00000000000 --- a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/draft.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "ordering": [ - ["A1"], - ["A2"], - ["A3"], - ["A4"], - ["A5"], - ["A6"], - ["A7"], - ["A8"], - ["A9"], - ["A10"], - ["A11"], - ["A12"] - ], - "brand": { - "brand": "NEST", - "brandId": ["360102"], - "links": ["https://www.nest-biotech.com/reagent-reserviors/59178414.html"] - }, - "metadata": { - "displayName": "NEST 12 Well Reservoir 15 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 31.4 - }, - "wells": { - "A1": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 14.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 23.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 32.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 41.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 50.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 59.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A7": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 68.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A8": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 77.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A9": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 86.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A10": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 95.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A11": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 104.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "A12": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 8.35, - "yDimension": 71.25, - "totalLiquidVolume": 15000, - "x": 113.38, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "A10", - "A11", - "A12" - ] - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "loadName": "nest_12_reservoir_15ml" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 8.35, - "topYDimension": 71.25, - "bottomXDimension": 7.95, - "bottomYDimension": 70.53, - "topHeight": 26.85, - "bottomHeight": 2.05 - }, - { - "shape": "cuboidal", - "topXDimension": 7.95, - "topYDimension": 70.53, - "bottomXDimension": 1.87, - "bottomYDimension": 64.45, - "topHeight": 2.05, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json deleted file mode 100644 index 39a4dc9c450..00000000000 --- a/shared-data/labware/definitions/2/nest_12_reservoir_22ml/draft.json +++ /dev/null @@ -1,232 +0,0 @@ -{ - "ordering": [ - ["A1"], - ["A2"], - ["A3"], - ["A4"], - ["A5"], - ["A6"], - ["A7"], - ["A8"], - ["A9"], - ["A10"], - ["A11"], - ["A12"] - ], - "brand": { - "brand": "NEST", - "brandId": ["360262"] - }, - "metadata": { - "displayName": "NEST 12 Well Reservoir 22 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 44.4 - }, - "wells": { - "A1": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 14.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 23.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 32.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 41.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 50.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 59.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A7": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 68.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A8": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 77.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A9": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 86.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A10": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 95.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A11": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 104.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - }, - "A12": { - "depth": 39.55, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 8, - "yDimension": 71.5, - "x": 113.38, - "y": 42.74, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "A10", - "A11", - "A12" - ] - } - ], - "parameters": { - "format": "trough", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "nest_12_reservoir_22ml" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 10.22 - } - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 8, - "topYDimension": 71.5, - "bottomXDimension": 8, - "bottomYDimension": 71.5, - "topHeight": 39.55, - "bottomHeight": 3 - }, - { - "shape": "cuboidal", - "topXDimension": 8, - "topYDimension": 71.5, - "bottomXDimension": 2, - "bottomYDimension": 65.5, - "topHeight": 3, - "bottomHeight": 0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json deleted file mode 100644 index 8f797b7af26..00000000000 --- a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/draft.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "NEST", - "brandId": ["360103"], - "links": ["https://www.nest-biotech.com/reagent-reserviors/59178416.html"] - }, - "metadata": { - "displayName": "NEST 1 Well Reservoir 195 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 31.4 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 16.8, - "wells": { - "A1": { - "depth": 26.85, - "shape": "rectangular", - "xDimension": 107.3, - "yDimension": 71.3, - "totalLiquidVolume": 195000, - "x": 63.88, - "y": 42.74, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": ["A1"] - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "loadName": "nest_1_reservoir_195ml" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 107.3, - "topYDimension": 71.3, - "bottomXDimension": 70.6, - "bottomYDimension": 106.8, - "topHeight": 26.85, - "bottomHeight": 2.0 - }, - { - "shape": "cuboidal", - "topXDimension": 9, - "topYDimension": 9, - "bottomXDimension": 1.93, - "bottomYDimension": 1.93, - "topHeight": 2, - "bottomHeight": 0, - "xCount": 12, - "yCount": 8 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json deleted file mode 100644 index cfb85851ccb..00000000000 --- a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/draft.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "NEST", - "brandId": ["360206", "360266"], - "links": ["https://www.nest-biotech.com/reagent-reserviors"] - }, - "metadata": { - "displayName": "NEST 1 Well Reservoir 290 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 44.4 - }, - "wells": { - "A1": { - "depth": 39.55, - "shape": "rectangular", - "xDimension": 107.76, - "yDimension": 71.1, - "totalLiquidVolume": 290000, - "x": 63.88, - "y": 42.73, - "z": 4.85, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": ["A1"] - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "loadName": "nest_1_reservoir_290ml" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 107.76, - "topYDimension": 71.1, - "bottomXDimension": 106.75, - "bottomYDimension": 70.75, - "topHeight": 39.55, - "bottomHeight": 2.0 - }, - { - "shape": "cuboidal", - "topXDimension": 7.75, - "topYDimension": 70.75, - "bottomXDimension": 3.127, - "bottomYDimension": 66.85, - "topHeight": 2.0, - "bottomHeight": 0.0, - "xCount": 12 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json b/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json deleted file mode 100644 index f4e7fb91b5a..00000000000 --- a/shared-data/labware/definitions/2/nest_24_wellplate_10.4ml/draft.json +++ /dev/null @@ -1,386 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "NEST", - "brandId": ["504361"] - }, - "metadata": { - "displayName": "NEST 24 Well Plate 10.4mL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.2, - "yDimension": 84.9, - "zDimension": 44 - }, - "wells": { - "A1": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 18.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B1": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 18.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C1": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 18.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D1": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 18.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 36.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B2": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 36.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C2": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 36.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D2": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 36.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 54.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B3": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 54.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C3": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 54.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D3": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 54.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 72.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B4": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 72.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C4": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 72.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D4": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 72.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 90.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B5": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 90.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C5": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 90.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D5": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 90.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 108.6, - "y": 71.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "B6": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 108.6, - "y": 53.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "C6": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 108.6, - "y": 35.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - }, - "D6": { - "depth": 40.85, - "totalLiquidVolume": 10400, - "shape": "rectangular", - "xDimension": 17, - "yDimension": 17, - "x": 108.6, - "y": 17.03, - "z": 3.15, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "nest_24_wellplate_10.4ml" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 9.219999999999999 - } - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 17, - "topYDimension": 17, - "bottomXDimension": 16.7, - "bottomYDimension": 16.7, - "topHeight": 40.85, - "bottomHeight": 19.85 - }, - { - "shape": "squaredcone", - "bottomCrossSection": "circular", - "circleDiameter": 16.7, - "rectangleXDimension": 16.7, - "rectangleYDimension": 16.7, - "topHeight": 19.85, - "bottomHeight": 14.4, - "xCount": 1, - "yCount": 1 - }, - { - "shape": "conical", - "bottomDiameter": 13.9, - "topDiameter": 16.7, - "topHeight": 14.4, - "bottomHeight": 3.77 - }, - { - "shape": "conical", - "bottomDiameter": 0, - "topDiameter": 13.9, - "topHeight": 3.77, - "bottomHeight": 0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json deleted file mode 100644 index fe5a60b16cd..00000000000 --- a/shared-data/labware/definitions/2/nest_8_reservoir_22ml/draft.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "ordering": [["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"]], - "brand": { - "brand": "NEST", - "brandId": ["360111"] - }, - "metadata": { - "displayName": "NEST 8 Well Reservoir 22 mL", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 31.4 - }, - "wells": { - "A1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 74.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "B1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 65.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "C1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 56.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "D1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 47.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "E1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 38.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "F1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 29.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "G1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 20.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - }, - "H1": { - "depth": 26.85, - "totalLiquidVolume": 22000, - "shape": "rectangular", - "xDimension": 107.1, - "yDimension": 8.25, - "x": 64.4, - "y": 11.24, - "z": 4.55, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"] - } - ], - "parameters": { - "format": "trough", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "nest_8_reservoir_22ml" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_universal_flat_adapter": { - "x": 0, - "y": 0, - "z": 10.22 - } - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 107.1, - "topYDimension": 8, - "bottomXDimension": 107.1, - "bottomYDimension": 8, - "topHeight": 26.85, - "bottomHeight": 3 - }, - { - "shape": "cuboidal", - "topXDimension": 107.1, - "topYDimension": 8, - "bottomXDimension": 101.1, - "bottomYDimension": 2, - "topHeight": 3, - "bottomHeight": 0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json deleted file mode 100644 index 4e6ff05ef85..00000000000 --- a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/draft.json +++ /dev/null @@ -1,1166 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "NEST", - "brandId": ["402501"], - "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] - }, - "metadata": { - "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 15.6 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 10.65, - "wells": { - "A1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 74.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 65.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 56.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 47.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 38.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 29.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 20.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 14.7, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 11.24, - "z": 0.9, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": true, - "magneticModuleEngageHeight": 20, - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt" - }, - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.2 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.66 - }, - "nest_96_wellplate_100ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 3.7 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.8 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 5.26, - "topDiameter": 5.34, - "topHeight": 14.7, - "bottomHeight": 9.89 - }, - { - "shape": "conical", - "bottomDiameter": 2.16, - "topDiameter": 5.26, - "topHeight": 9.89, - "bottomHeight": 0.2 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.015, - "topHeight": 0.2, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json deleted file mode 100644 index 4b5efbf8ba9..00000000000 --- a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/draft.json +++ /dev/null @@ -1,1145 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "NEST", - "brandId": ["701011"], - "links": ["https://www.nest-biotech.com/cell-culture-plates/59415537.html"] - }, - "metadata": { - "displayName": "NEST 96 Well Plate 200 µL Flat", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.4, - "zDimension": 14.3 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 11.8, - "wells": { - "A1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 14.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 23.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 32.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 41.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 50.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 59.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 68.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 77.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 86.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 95.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 104.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 74.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 65.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 56.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 47.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 38.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 29.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 20.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 10.8, - "shape": "circular", - "diameter": 6.85, - "totalLiquidVolume": 200, - "x": 113.3, - "y": 11.2, - "z": 3.5, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "flat" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "nest_96_wellplate_200ul_flat" - }, - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_96_flat_bottom_adapter": { - "x": 0, - "y": 0, - "z": 6.7 - }, - "opentrons_aluminum_flat_bottom_plate": { - "x": 0, - "y": 0, - "z": 5.55 - }, - "nest_96_wellplate_200ul_flat": { - "x": 0, - "y": 0, - "z": 1.66 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 6.32, - "topDiameter": 6.85, - "topHeight": 10.8, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json deleted file mode 100644 index 0870f1f3779..00000000000 --- a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/draft.json +++ /dev/null @@ -1,1261 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "NEST", - "brandId": ["503001", "503501"], - "links": ["https://www.nest-biotech.com/deep-well-plates/59253726.html"] - }, - "metadata": { - "displayName": "NEST 96 Deep Well Plate 2 mL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 21.9, - "wells": { - "A1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H1": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H2": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H3": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H4": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H5": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H6": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H7": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H8": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H9": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H10": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H11": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "A12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 74.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "B12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 65.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "C12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 56.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "D12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 47.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "E12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 38.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "F12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 29.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "G12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 20.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - }, - "H12": { - "depth": 38.05, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 11.15, - "z": 2.95, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": true, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8 - }, - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - }, - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 2.75 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 8.2, - "topYDimension": 8.2, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "topHeight": 38.05, - "bottomHeight": 1.67 - }, - { - "shape": "cuboidal", - "topXDimension": 7.4, - "topYDimension": 7.4, - "bottomXDimension": 2.63, - "bottomYDimension": 2.63, - "topHeight": 1.67, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json deleted file mode 100644 index d41f3350ac4..00000000000 --- a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/draft.json +++ /dev/null @@ -1,232 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3"], - ["A4", "B4"] - ], - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "metadata": { - "displayName": "Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 124.35 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical" - }, - "wells": { - "A1": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 13.88, - "y": 67.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "B1": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 13.88, - "y": 42.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "C1": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 13.88, - "y": 17.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "A2": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 38.88, - "y": 67.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "B2": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 38.88, - "y": 42.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "C2": { - "totalLiquidVolume": 15000, - "diameter": 14.7, - "shape": "circular", - "depth": 117.5, - "x": 38.88, - "y": 17.75, - "z": 6.85, - "geometryDefinitionId": "15mlconicalWell" - }, - "A3": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 112.85, - "x": 71.38, - "y": 60.25, - "z": 7.3, - "geometryDefinitionId": "50mlconicalWell" - }, - "B3": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 112.85, - "x": 71.38, - "y": 25.25, - "z": 7.3, - "geometryDefinitionId": "50mlconicalWell" - }, - "A4": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 112.85, - "x": 106.38, - "y": 60.25, - "z": 7.3, - "geometryDefinitionId": "50mlconicalWell" - }, - "B4": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 112.85, - "x": 106.38, - "y": 25.25, - "z": 7.3, - "geometryDefinitionId": "50mlconicalWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "groups": [ - { - "wells": ["A1", "B1", "C1", "A2", "B2", "C2"], - "metadata": { - "displayName": "Falcon 6x15 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352095", "352096", "352097", "352099", "352196"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - }, - { - "wells": ["A3", "B3", "A4", "B4"], - "metadata": { - "displayName": "Falcon 4x50 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352070", "352098"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "15mlconicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 14.5, - "topDiameter": 14.7, - "topHeight": 118.2, - "bottomHeight": 108.6 - }, - { - "shape": "conical", - "bottomDiameter": 13.5, - "topDiameter": 14.5, - "topHeight": 108.6, - "bottomHeight": 20.7 - }, - { - "shape": "conical", - "bottomDiameter": 4, - "topDiameter": 13.5, - "topHeight": 20.7, - "bottomHeight": 0.8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.9, - "topHeight": 0.8, - "bottomHeight": 0.0 - } - ] - }, - "50mlconicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 27.52, - "topDiameter": 27.81, - "topHeight": 112.85, - "bottomHeight": 100.65 - }, - { - "shape": "conical", - "bottomDiameter": 26.18, - "topDiameter": 27.52, - "topHeight": 100.65, - "bottomHeight": 14.3 - }, - { - "shape": "conical", - "bottomDiameter": 6.15, - "topDiameter": 26.18, - "topHeight": 14.3, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json deleted file mode 100644 index 8b9dcc3a030..00000000000 --- a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic/draft.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "wells": { - "A1": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 19, - "y": 74, - "z": 5.78 - }, - "B1": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 19, - "y": 42.5, - "z": 5.78 - }, - "C1": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 19, - "y": 11, - "z": 5.78 - }, - "A2": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 42, - "y": 74, - "z": 5.78 - }, - "B2": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 42, - "y": 42.5, - "z": 5.78 - }, - "C2": { - "totalLiquidVolume": 15000, - "diameter": 14.9, - "shape": "circular", - "depth": 117.98, - "x": 42, - "y": 11, - "z": 5.78 - }, - "A3": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 113.85, - "x": 70.2, - "y": 62.2, - "z": 5.95 - }, - "B3": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 113.85, - "x": 70.2, - "y": 16.8, - "z": 5.95 - }, - "A4": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 113.85, - "x": 106.1, - "y": 62.2, - "z": 5.95 - }, - "B4": { - "totalLiquidVolume": 50000, - "diameter": 27.81, - "shape": "circular", - "depth": 113.85, - "x": 106.1, - "y": 16.8, - "z": 5.95 - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 10 Tube Rack (Acrylic) with Falcon 4x50 mL, 6x15 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 123.76 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical_acrylic" - }, - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3"], - ["A4", "B4"] - ], - "groups": [ - { - "wells": ["A3", "B3", "A4", "B4"], - "metadata": { - "displayName": "Falcon 4x50 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352070", "352098"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - }, - { - "wells": ["A1", "B1", "C1", "A2", "B2", "C2"], - "metadata": { - "displayName": "Falcon 6x15 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352095", "352096", "352097", "352099", "352196"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - } - ], - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json deleted file mode 100644 index 7b800483690..00000000000 --- a/shared-data/labware/definitions/2/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/draft.json +++ /dev/null @@ -1,235 +0,0 @@ -{ - "wells": { - "A1": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 13.88, - "y": 67.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "B1": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 13.88, - "y": 42.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "C1": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 13.88, - "y": 17.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "A2": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 38.88, - "y": 67.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "B2": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 38.88, - "y": 42.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "C2": { - "totalLiquidVolume": 15000, - "diameter": 15.5, - "shape": "circular", - "depth": 117.8, - "x": 38.88, - "y": 17.75, - "z": 6.85, - "geometryDefinitionId": "conicalWell15mL" - }, - "A3": { - "totalLiquidVolume": 50000, - "diameter": 28.18, - "shape": "circular", - "depth": 113.1, - "x": 71.38, - "y": 60.25, - "z": 7.3, - "geometryDefinitionId": "conicalWell50mL" - }, - "B3": { - "totalLiquidVolume": 50000, - "diameter": 28.18, - "shape": "circular", - "depth": 113.1, - "x": 71.38, - "y": 25.25, - "z": 7.3, - "geometryDefinitionId": "conicalWell50mL" - }, - "A4": { - "totalLiquidVolume": 50000, - "diameter": 28.18, - "shape": "circular", - "depth": 113.1, - "x": 106.38, - "y": 60.25, - "z": 7.3, - "geometryDefinitionId": "conicalWell50mL" - }, - "B4": { - "totalLiquidVolume": 50000, - "diameter": 28.18, - "shape": "circular", - "depth": 113.1, - "x": 106.38, - "y": 25.25, - "z": 7.3, - "geometryDefinitionId": "conicalWell50mL" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 6x15 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["601052"], - "links": ["https://www.nest-biotech.com/centrifuge-tube/59282849.html"] - }, - "wells": ["A1", "B1", "C1", "A2", "B2", "C2"] - }, - { - "metadata": { - "displayName": "NEST 4x50 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["602052"], - "links": ["https://www.nest-biotech.com/centrifuge-tube/59282837.html"] - }, - "wells": ["A3", "B3", "A4", "B4"] - } - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 10 Tube Rack with NEST 4x50 mL, 6x15 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 124.65 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_10_tuberack_nest_4x50ml_6x15ml_conical" - }, - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3"], - ["A4", "B4"] - ], - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell15mL": { - "sections": [ - { - "shape": "conical", - "topDiameter": 15.5, - "bottomDiameter": 14.56, - "topHeight": 117.8, - "bottomHeight": 113.8 - }, - { - "shape": "conical", - "topDiameter": 14.56, - "bottomDiameter": 13.8, - "topHeight": 113.8, - "bottomHeight": 22.55 - }, - { - "shape": "conical", - "topDiameter": 13.8, - "bottomDiameter": 2.38, - "topHeight": 22.55, - "bottomHeight": 0.92 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.235, - "topHeight": 0.92, - "bottomHeight": 0.0 - } - ] - }, - "conicalWell50mL": { - "sections": [ - { - "shape": "conical", - "topDiameter": 28.18, - "bottomDiameter": 27.95, - "topHeight": 113.1, - "bottomHeight": 109.1 - }, - { - "shape": "conical", - "topDiameter": 27.95, - "bottomDiameter": 27.69, - "topHeight": 109.1, - "bottomHeight": 108.8 - }, - { - "shape": "conical", - "topDiameter": 27.69, - "bottomDiameter": 26.0, - "topHeight": 108.8, - "bottomHeight": 14.35 - }, - { - "shape": "conical", - "topDiameter": 26.0, - "bottomDiameter": 4.5, - "topHeight": 14.35, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json deleted file mode 100644 index bee7facf109..00000000000 --- a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/draft.json +++ /dev/null @@ -1,259 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3", "C3"], - ["A4", "B4", "C4"], - ["A5", "B5", "C5"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "tags": [], - "displayName": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL" - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 124.35 - }, - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "wells": { - "C1": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 117.5, - "diameter": 14.7, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_15_tuberack_falcon_15ml_conical" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "A2", - "B2", - "C2", - "A3", - "B3", - "C3", - "A4", - "B4", - "C4", - "A5", - "B5", - "C5" - ], - "metadata": { - "displayName": "Falcon 6x15 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352095", "352096", "352097", "352099", "352196"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 14.5, - "topDiameter": 14.7, - "topHeight": 118.2, - "bottomHeight": 108.6 - }, - { - "shape": "conical", - "bottomDiameter": 13.5, - "topDiameter": 14.5, - "topHeight": 108.6, - "bottomHeight": 20.7 - }, - { - "shape": "conical", - "bottomDiameter": 4, - "topDiameter": 13.5, - "topHeight": 20.7, - "bottomHeight": 0.8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.9, - "topHeight": 0.8, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json deleted file mode 100644 index ffd63c57720..00000000000 --- a/shared-data/labware/definitions/2/opentrons_15_tuberack_nest_15ml_conical/draft.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1"], - ["A2", "B2", "C2"], - ["A3", "B3", "C3"], - ["A4", "B4", "C4"], - ["A5", "B5", "C5"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 15 Tube Rack with NEST 15 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 124.65 - }, - "wells": { - "A1": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 67.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 42.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 117.8, - "shape": "circular", - "diameter": 15.5, - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 17.74, - "z": 6.85, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 15x15 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["601052"], - "links": ["https://www.nest-biotech.com/centrifuge-tube/59282849.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "A2", - "B2", - "C2", - "A3", - "B3", - "C3", - "A4", - "B4", - "C4", - "A5", - "B5", - "C5" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_15_tuberack_nest_15ml_conical" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 15.5, - "bottomDiameter": 14.56, - "topHeight": 117.8, - "bottomHeight": 113.8 - }, - { - "shape": "conical", - "topDiameter": 14.56, - "bottomDiameter": 13.8, - "topHeight": 113.8, - "bottomHeight": 22.55 - }, - { - "shape": "conical", - "topDiameter": 13.8, - "bottomDiameter": 2.38, - "topHeight": 22.55, - "bottomHeight": 0.92 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.235, - "topHeight": 0.92, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json deleted file mode 100644 index 9a552225e8d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_1_trash_1100ml_fixed/draft.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "ordering": [["A1"]], - "metadata": { - "displayCategory": "trash", - "displayVolumeUnits": "mL", - "displayName": "Opentrons Fixed Trash", - "tags": [] - }, - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "dimensions": { - "xDimension": 172.86, - "yDimension": 165.86, - "zDimension": 82 - }, - "parameters": { - "format": "trash", - "isTiprack": false, - "loadName": "opentrons_1_trash_1100ml_fixed", - "isMagneticModuleCompatible": false, - "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] - }, - "wells": { - "A1": { - "shape": "rectangular", - "yDimension": 165.67, - "xDimension": 107.11, - "totalLiquidVolume": 1100000, - "depth": 0, - "x": 82.84, - "y": 80, - "z": 82 - } - }, - "brand": { - "brand": "Opentrons" - }, - "groups": [ - { - "wells": ["A1"], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json deleted file mode 100644 index f78e3fcda82..00000000000 --- a/shared-data/labware/definitions/2/opentrons_1_trash_3200ml_fixed/draft.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "ordering": [["A1"]], - "metadata": { - "displayCategory": "trash", - "displayVolumeUnits": "mL", - "displayName": "Opentrons Fixed Trash", - "tags": [] - }, - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "dimensions": { - "xDimension": 246.5, - "yDimension": 91.5, - "zDimension": 40 - }, - "parameters": { - "format": "trash", - "isTiprack": false, - "loadName": "opentrons_1_trash_3200ml_fixed", - "isMagneticModuleCompatible": false, - "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] - }, - "wells": { - "A1": { - "shape": "rectangular", - "yDimension": 78, - "xDimension": 225, - "totalLiquidVolume": 3200000, - "depth": 40, - "x": 123.25, - "y": 45.75, - "z": 0 - } - }, - "brand": { - "brand": "Opentrons" - }, - "groups": [ - { - "wells": ["A1"], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": -17, - "y": -2.75, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json b/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json deleted file mode 100644 index ea8c15ea66d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_1_trash_850ml_fixed/draft.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "ordering": [["A1"]], - "metadata": { - "displayCategory": "trash", - "displayVolumeUnits": "mL", - "displayName": "Opentrons Short Fixed Trash", - "tags": [] - }, - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "dimensions": { - "xDimension": 172.86, - "yDimension": 165.86, - "zDimension": 58 - }, - "parameters": { - "format": "trash", - "isTiprack": false, - "loadName": "opentrons_1_trash_850ml_fixed", - "isMagneticModuleCompatible": false, - "quirks": ["fixedTrash", "centerMultichannelOnWells", "touchTipDisabled"] - }, - "wells": { - "A1": { - "shape": "rectangular", - "yDimension": 165.67, - "xDimension": 107.11, - "totalLiquidVolume": 850000, - "depth": 0, - "x": 82.84, - "y": 80, - "z": 58 - } - }, - "brand": { - "brand": "Opentrons" - }, - "groups": [ - { - "wells": ["A1"], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json deleted file mode 100644 index 9f9c321d117..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_generic_2ml_screwcap/draft.json +++ /dev/null @@ -1,352 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "schemaVersion": 2, - "version": 3, - "namespace": "opentrons", - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", - "displayVolumeUnits": "mL", - "displayCategory": "aluminumBlock", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 48.7 - }, - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" - }, - "wells": { - "D1": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 38, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 38, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 38, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 38, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 107, - "y": 16.88, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 107, - "y": 34.13, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 107, - "y": 51.38, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "shape": "circular", - "depth": 42, - "diameter": 8.5, - "totalLiquidVolume": 2000, - "x": 107, - "y": 68.63, - "z": 6.7, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Generic 2 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "generic", - "brandId": [], - "links": [] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.5, - "bottomDiameter": 8.14, - "topHeight": 42.0, - "bottomHeight": 3.04 - }, - { - "shape": "conical", - "topDiameter": 8.14, - "bottomDiameter": 6.5, - "topHeight": 3.04, - "bottomHeight": 2.08 - }, - { - "shape": "conical", - "topDiameter": 6.5, - "bottomDiameter": 1.21, - "topHeight": 2.08, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json deleted file mode 100644 index d246170b08f..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/draft.json +++ /dev/null @@ -1,370 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": ["https://shop.opentrons.com/aluminum-block-set/"] - }, - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with NEST 0.5 mL Screwcap", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 49.35 - }, - "wells": { - "A1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 20.75, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 20.75, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 20.75, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 20.75, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 55.25, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 55.25, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 55.25, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 55.25, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 72.5, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 72.5, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 72.5, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 72.5, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 89.75, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 89.75, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 89.75, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 89.75, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 107, - "y": 68.62, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 107, - "y": 51.37, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 107, - "y": 34.12, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 107, - "y": 16.87, - "z": 24.15, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x0.5 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["633001"], - "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_nest_0.5ml_screwcap" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.56, - "bottomDiameter": 8.56, - "topHeight": 25.2, - "bottomHeight": 13.95 - }, - { - "shape": "conical", - "topDiameter": 8.56, - "bottomDiameter": 7.9, - "topHeight": 13.95, - "bottomHeight": 11.9 - }, - { - "shape": "conical", - "topDiameter": 7.9, - "bottomDiameter": 5.8, - "topHeight": 11.9, - "bottomHeight": 10.2 - }, - { - "shape": "conical", - "topDiameter": 5.8, - "bottomDiameter": 2.8, - "topHeight": 10.2, - "bottomHeight": 0.95 - }, - { - "shape": "conical", - "topDiameter": 2.8, - "bottomDiameter": 2, - "topHeight": 0.95, - "bottomHeight": 0.14 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.64, - "topHeight": 0.14, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json deleted file mode 100644 index 431ce06b700..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/draft.json +++ /dev/null @@ -1,356 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": ["https://shop.opentrons.com/aluminum-block-set/"] - }, - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 49.35 - }, - "wells": { - "A1": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 107, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 107, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 107, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 43.9, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 107, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x1.5 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["634001"], - "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_nest_1.5ml_screwcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.55, - "bottomDiameter": 8.2, - "topHeight": 42.6, - "bottomHeight": 13.7 - }, - { - "shape": "conical", - "topDiameter": 8.2, - "bottomDiameter": 3.2, - "topHeight": 13.7, - "bottomHeight": 1.88 - }, - { - "shape": "conical", - "topDiameter": 3.2, - "bottomDiameter": 1.9, - "topHeight": 1.88, - "bottomHeight": 0.2 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.36, - "topHeight": 0.2, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json deleted file mode 100644 index ce71804c796..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/draft.json +++ /dev/null @@ -1,358 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": ["https://shop.opentrons.com/aluminum-block-set/"] - }, - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 43.7 - }, - "wells": { - "A1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 107, - "y": 68.62, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 107, - "y": 51.37, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 107, - "y": 34.12, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 107, - "y": 16.87, - "z": 5.8, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x1.5 mL Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["615601", "615001"], - "links": [ - "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 9.9, - "bottomDiameter": 9.28, - "topHeight": 37.9, - "bottomHeight": 35.4 - }, - { - "shape": "conical", - "topDiameter": 9.28, - "bottomDiameter": 8.98, - "topHeight": 35.4, - "bottomHeight": 17.4 - }, - { - "shape": "conical", - "topDiameter": 8.98, - "bottomDiameter": 3.69, - "topHeight": 17.4, - "bottomHeight": 1.56 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.87, - "topHeight": 1.56, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json deleted file mode 100644 index 3929e68e669..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/draft.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": ["https://shop.opentrons.com/aluminum-block-set/"] - }, - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Screwcap", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 49.5 - }, - "wells": { - "A1": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 107, - "y": 68.62, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 107, - "y": 51.37, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 107, - "y": 34.12, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 44.05, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 107, - "y": 16.87, - "z": 5.45, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x2 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["635001"], - "links": ["https://www.nest-biotech.com/sample-vials/59249854.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_nest_2ml_screwcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 8.14, - "topDiameter": 8.55, - "topHeight": 43.4, - "bottomHeight": 3.04 - }, - { - "shape": "conical", - "bottomDiameter": 6.5, - "topDiameter": 8.14, - "topHeight": 3.04, - "bottomHeight": 2.08 - }, - { - "shape": "conical", - "bottomDiameter": 1.21, - "topDiameter": 6.5, - "topHeight": 2.08, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json deleted file mode 100644 index d9129a4d9c8..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/draft.json +++ /dev/null @@ -1,386 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": ["https://shop.opentrons.com/aluminum-block-set/"] - }, - "metadata": { - "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Snapcap", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 43.6 - }, - "wells": { - "A1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 20.75, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 55.25, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 72.5, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 89.75, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 107, - "y": 68.62, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 107, - "y": 51.37, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 107, - "y": 34.12, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 107, - "y": 16.87, - "z": 4.32, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x2 mL Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "u" - }, - "brand": { - "brand": "NEST", - "brandId": ["620611", "620011"], - "links": [ - "https://www.nest-biotech.com/micro-centrifuge-tube/59201045.html" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_aluminumblock_nest_2ml_snapcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 9.28, - "bottomDiameter": 8.9, - "topHeight": 39.28, - "bottomHeight": 15.04 - }, - { - "shape": "conical", - "topDiameter": 8.9, - "bottomDiameter": 8.74, - "topHeight": 15.04, - "bottomHeight": 6.26 - }, - { - "shape": "conical", - "topDiameter": 8.74, - "bottomDiameter": 8.0, - "topHeight": 6.26, - "bottomHeight": 3.98 - }, - { - "shape": "conical", - "topDiameter": 8.0, - "bottomDiameter": 7.2, - "topHeight": 3.98, - "bottomHeight": 2.74 - }, - { - "shape": "conical", - "topDiameter": 7.2, - "bottomDiameter": 7.0, - "topHeight": 2.74, - "bottomHeight": 2.59 - }, - { - "shape": "conical", - "topDiameter": 7.0, - "bottomDiameter": 6.0, - "topHeight": 2.59, - "bottomHeight": 1.83 - }, - { - "shape": "conical", - "topDiameter": 6.0, - "bottomDiameter": 5.0, - "topHeight": 1.83, - "bottomHeight": 1.21 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.19, - "topHeight": 1.21, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json deleted file mode 100644 index 5d6fe47ef05..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/draft.json +++ /dev/null @@ -1,418 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "metadata": { - "tags": [], - "displayName": "Opentrons 24 Tube Rack with Eppendorf 1.5 mL Safe-Lock Snapcap", - "displayVolumeUnits": "mL", - "displayCategory": "tubeRack" - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 79.85 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap" - }, - "wells": { - "D1": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 17.59, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 36.87, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 56.15, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 37.8, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 75.43, - "z": 42.05, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Eppendorf 24x1.5 mL Safelock Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Eppendorf", - "brandId": [ - "022363204", - "022363212", - "022363221", - "022363247", - "022363263", - "022363280", - "022363280", - "022363301", - "022363328" - ], - "links": [ - "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 9.6, - "topDiameter": 10, - "topHeight": 37.8, - "bottomHeight": 32.49 - }, - { - "shape": "conical", - "bottomDiameter": 9.2, - "topDiameter": 9.6, - "topHeight": 32.49, - "bottomHeight": 31.97 - }, - { - "shape": "conical", - "bottomDiameter": 9.02, - "topDiameter": 9.2, - "topHeight": 31.97, - "bottomHeight": 31.16 - }, - { - "shape": "conical", - "bottomDiameter": 8.9, - "topDiameter": 9.02, - "topHeight": 31.16, - "bottomHeight": 28.16 - }, - { - "shape": "conical", - "bottomDiameter": 8.5, - "topDiameter": 8.9, - "topHeight": 28.16, - "bottomHeight": 17.56 - }, - { - "shape": "conical", - "bottomDiameter": 8, - "topDiameter": 8.5, - "topHeight": 17.56, - "bottomHeight": 15.89 - }, - { - "shape": "conical", - "bottomDiameter": 6, - "topDiameter": 8, - "topHeight": 15.89, - "bottomHeight": 9.24 - }, - { - "shape": "conical", - "bottomDiameter": 4, - "topDiameter": 6, - "topHeight": 9.24, - "bottomHeight": 2.9 - }, - { - "shape": "conical", - "bottomDiameter": 3.26, - "topDiameter": 4, - "topHeight": 2.9, - "bottomHeight": 1 - }, - { - "shape": "conical", - "bottomDiameter": 2, - "topDiameter": 3.26, - "topHeight": 1, - "bottomHeight": 0.2 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.6, - "topHeight": 0.2, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json deleted file mode 100644 index ed0a4d1d29a..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/draft.json +++ /dev/null @@ -1,473 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "metadata": { - "displayVolumeUnits": "mL", - "displayCategory": "tubeRack", - "displayName": "Opentrons 24 Tube Rack with Eppendorf 2 mL Safe-Lock Snapcap", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 79.85 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "loadName": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", - "isMagneticModuleCompatible": false - }, - "wells": { - "D1": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 17.59, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 36.87, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 56.15, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 39.1, - "diameter": 10, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 75.43, - "z": 41.27, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Eppendorf 24x2 mL Safelock Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "u" - }, - "brand": { - "brand": "Eppendorf", - "brandId": [ - "022363344", - "022363352", - "022363379", - "022363395", - "022363417", - "022363433", - "022363450", - "022363476" - ], - "links": [ - "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 10.0, - "bottomDiameter": 9.6, - "topHeight": 39.02, - "bottomHeight": 33.96 - }, - { - "shape": "conical", - "topDiameter": 9.6, - "bottomDiameter": 9.2, - "topHeight": 33.96, - "bottomHeight": 32.5 - }, - { - "shape": "conical", - "topDiameter": 9.2, - "bottomDiameter": 9.1, - "topHeight": 32.5, - "bottomHeight": 25.26 - }, - { - "shape": "conical", - "topDiameter": 9.1, - "bottomDiameter": 9.0, - "topHeight": 25.26, - "bottomHeight": 13.32 - }, - { - "shape": "conical", - "topDiameter": 9.0, - "bottomDiameter": 8.9, - "topHeight": 13.32, - "bottomHeight": 10.17 - }, - { - "shape": "conical", - "topDiameter": 8.9, - "bottomDiameter": 8.78, - "topHeight": 10.17, - "bottomHeight": 6.97 - }, - { - "shape": "conical", - "topDiameter": 8.78, - "bottomDiameter": 8.6, - "topHeight": 6.97, - "bottomHeight": 5.43 - }, - { - "shape": "conical", - "topDiameter": 8.6, - "bottomDiameter": 8.5, - "topHeight": 5.43, - "bottomHeight": 5.15 - }, - { - "shape": "conical", - "topDiameter": 8.5, - "bottomDiameter": 8.4, - "topHeight": 5.15, - "bottomHeight": 5.03 - }, - { - "shape": "conical", - "topDiameter": 8.4, - "bottomDiameter": 8.2, - "topHeight": 5.03, - "bottomHeight": 4.53 - }, - { - "shape": "conical", - "topDiameter": 8.2, - "bottomDiameter": 8.0, - "topHeight": 4.53, - "bottomHeight": 4.29 - }, - { - "shape": "conical", - "topDiameter": 8.0, - "bottomDiameter": 7.7, - "topHeight": 4.29, - "bottomHeight": 3.93 - }, - { - "shape": "conical", - "topDiameter": 7.7, - "bottomDiameter": 7.6, - "topHeight": 3.93, - "bottomHeight": 3.67 - }, - { - "shape": "conical", - "topDiameter": 7.6, - "bottomDiameter": 7.2, - "topHeight": 3.67, - "bottomHeight": 3.14 - }, - { - "shape": "conical", - "topDiameter": 7.2, - "bottomDiameter": 6.8, - "topHeight": 3.14, - "bottomHeight": 2.75 - }, - { - "shape": "conical", - "topDiameter": 6.8, - "bottomDiameter": 6.4, - "topHeight": 2.75, - "bottomHeight": 2.45 - }, - { - "shape": "conical", - "topDiameter": 6.4, - "bottomDiameter": 6.0, - "topHeight": 2.45, - "bottomHeight": 2.2 - }, - { - "shape": "conical", - "topDiameter": 6.0, - "bottomDiameter": 5.0, - "topHeight": 2.2, - "bottomHeight": 1.45 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.88, - "topHeight": 1.45, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json deleted file mode 100644 index d2f77b37475..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic/draft.json +++ /dev/null @@ -1,309 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack (Acrylic) with Eppendorf 2 mL Safe-Lock Snapcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 52 - }, - "wells": { - "D1": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 15.28, - "y": 13.9, - "z": 13.42 - }, - "C1": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 15.28, - "y": 33.4, - "z": 13.42 - }, - "B1": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 15.28, - "y": 52.9, - "z": 13.42 - }, - "A1": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 15.28, - "y": 72.4, - "z": 13.42 - }, - "D2": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 34.78, - "y": 13.9, - "z": 13.42 - }, - "C2": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 34.78, - "y": 33.4, - "z": 13.42 - }, - "B2": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 34.78, - "y": 52.9, - "z": 13.42 - }, - "A2": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 34.78, - "y": 72.4, - "z": 13.42 - }, - "D3": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 54.28, - "y": 13.9, - "z": 13.42 - }, - "C3": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 54.28, - "y": 33.4, - "z": 13.42 - }, - "B3": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 54.28, - "y": 52.9, - "z": 13.42 - }, - "A3": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 54.28, - "y": 72.4, - "z": 13.42 - }, - "D4": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 73.78, - "y": 13.9, - "z": 13.42 - }, - "C4": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 73.78, - "y": 33.4, - "z": 13.42 - }, - "B4": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 73.78, - "y": 52.9, - "z": 13.42 - }, - "A4": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 73.78, - "y": 72.4, - "z": 13.42 - }, - "D5": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 93.28, - "y": 13.9, - "z": 13.42 - }, - "C5": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 93.28, - "y": 33.4, - "z": 13.42 - }, - "B5": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 93.28, - "y": 52.9, - "z": 13.42 - }, - "A5": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 93.28, - "y": 72.4, - "z": 13.42 - }, - "D6": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 112.78, - "y": 13.9, - "z": 13.42 - }, - "C6": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 112.78, - "y": 33.4, - "z": 13.42 - }, - "B6": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 112.78, - "y": 52.9, - "z": 13.42 - }, - "A6": { - "depth": 38.58, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 2000, - "x": 112.78, - "y": 72.4, - "z": 13.42 - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap_acrylic" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Eppendorf 24x2 mL Safelock Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "u" - }, - "brand": { - "brand": "Eppendorf", - "brandId": [ - "022363344", - "022363352", - "022363379", - "022363395", - "022363417", - "022363433", - "022363450", - "022363476" - ], - "links": [ - "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" - ] - } - } - ], - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json deleted file mode 100644 index c8dddaaab03..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic/draft.json +++ /dev/null @@ -1,298 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack (Acrylic) with Generic 0.75 mL Snapcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 55 - }, - "wells": { - "D1": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 16.76, - "y": 11.94, - "z": 35 - }, - "C1": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 16.76, - "y": 31.5, - "z": 35 - }, - "B1": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 16.76, - "y": 51.06, - "z": 35 - }, - "A1": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 16.76, - "y": 70.62, - "z": 35 - }, - "D2": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 36.32, - "y": 11.94, - "z": 35 - }, - "C2": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 36.32, - "y": 31.5, - "z": 35 - }, - "B2": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 36.32, - "y": 51.06, - "z": 35 - }, - "A2": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 36.32, - "y": 70.62, - "z": 35 - }, - "D3": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 55.88, - "y": 11.94, - "z": 35 - }, - "C3": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 55.88, - "y": 31.5, - "z": 35 - }, - "B3": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 55.88, - "y": 51.06, - "z": 35 - }, - "A3": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 55.88, - "y": 70.62, - "z": 35 - }, - "D4": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 75.44, - "y": 11.94, - "z": 35 - }, - "C4": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 75.44, - "y": 31.5, - "z": 35 - }, - "B4": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 75.44, - "y": 51.06, - "z": 35 - }, - "A4": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 75.44, - "y": 70.62, - "z": 35 - }, - "D5": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 95, - "y": 11.94, - "z": 35 - }, - "C5": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 95, - "y": 31.5, - "z": 35 - }, - "B5": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 95, - "y": 51.06, - "z": 35 - }, - "A5": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 95, - "y": 70.62, - "z": 35 - }, - "D6": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 114.56, - "y": 11.94, - "z": 35 - }, - "C6": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 114.56, - "y": 31.5, - "z": 35 - }, - "B6": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 114.56, - "y": 51.06, - "z": 35 - }, - "A6": { - "depth": 20, - "shape": "circular", - "diameter": 6, - "totalLiquidVolume": 750, - "x": 114.56, - "y": 70.62, - "z": 35 - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_generic_0.75ml_snapcap_acrylic" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Generic 0.75 mL Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "generic", - "brandId": [], - "links": [] - } - } - ], - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json deleted file mode 100644 index 3d60b15cc91..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_generic_2ml_screwcap/draft.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "metadata": { - "displayVolumeUnits": "mL", - "displayCategory": "tubeRack", - "displayName": "Opentrons 24 Tube Rack with Generic 2 mL Screwcap", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 84 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "loadName": "opentrons_24_tuberack_generic_2ml_screwcap", - "isMagneticModuleCompatible": false - }, - "wells": { - "D1": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 17.59, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 36.87, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 56.15, - "z": 42, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 42, - "diameter": 8.5, - "shape": "circular", - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 75.43, - "z": 42, - "geometryDefinitionId": "conicalWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ], - "metadata": { - "displayName": "Generic 2 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "generic", - "brandId": [], - "links": [] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.5, - "bottomDiameter": 8.14, - "topHeight": 42.0, - "bottomHeight": 3.04 - }, - { - "shape": "conical", - "topDiameter": 8.14, - "bottomDiameter": 6.5, - "topHeight": 3.04, - "bottomHeight": 2.08 - }, - { - "shape": "conical", - "topDiameter": 6.5, - "bottomDiameter": 1.21, - "topHeight": 2.08, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json deleted file mode 100644 index d74414c84df..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/draft.json +++ /dev/null @@ -1,371 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack with NEST 0.5 mL Screwcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 85.2 - }, - "wells": { - "A1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 18.21, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 18.21, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 18.21, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 18.21, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38.1, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38.1, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38.1, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 38.1, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 57.99, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 57.99, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 57.99, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 57.99, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 77.88, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 77.88, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 77.88, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 77.88, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 97.77, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 97.77, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 97.77, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 97.77, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 117.66, - "y": 75.43, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 117.66, - "y": 56.15, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 117.66, - "y": 36.87, - "z": 60, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 25.2, - "shape": "circular", - "diameter": 8.56, - "totalLiquidVolume": 500, - "x": 117.66, - "y": 17.59, - "z": 60, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x0.5 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["633001"], - "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_nest_0.5ml_screwcap" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.56, - "bottomDiameter": 8.56, - "topHeight": 25.2, - "bottomHeight": 13.95 - }, - { - "shape": "conical", - "topDiameter": 8.56, - "bottomDiameter": 7.9, - "topHeight": 13.95, - "bottomHeight": 11.9 - }, - { - "shape": "conical", - "topDiameter": 7.9, - "bottomDiameter": 5.8, - "topHeight": 11.9, - "bottomHeight": 10.2 - }, - { - "shape": "conical", - "topDiameter": 5.8, - "bottomDiameter": 2.8, - "topHeight": 10.2, - "bottomHeight": 0.95 - }, - { - "shape": "conical", - "topDiameter": 2.8, - "bottomDiameter": 2, - "topHeight": 0.95, - "bottomHeight": 0.14 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.64, - "topHeight": 0.14, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json deleted file mode 100644 index 5410a3b71ec..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_screwcap/draft.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack with NEST 1.5 mL Screwcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 85.2 - }, - "wells": { - "A1": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 42.6, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x1.5 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["634001"], - "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_nest_1.5ml_screwcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.55, - "bottomDiameter": 8.2, - "topHeight": 42.6, - "bottomHeight": 13.7 - }, - { - "shape": "conical", - "topDiameter": 8.2, - "bottomDiameter": 3.2, - "topHeight": 13.7, - "bottomHeight": 1.88 - }, - { - "shape": "conical", - "topDiameter": 3.2, - "bottomDiameter": 1.9, - "topHeight": 1.88, - "bottomHeight": 0.2 - }, - { - "shape": "spherical", - "radiusOfCurvature": 2.36, - "topHeight": 0.2, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json deleted file mode 100644 index 17be0329351..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_1.5ml_snapcap/draft.json +++ /dev/null @@ -1,359 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack with NEST 1.5 mL Snapcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 79.55 - }, - "wells": { - "A1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 18.21, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 38.1, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 57.99, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 77.88, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 97.77, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 75.43, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 56.15, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 36.87, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 37.9, - "shape": "circular", - "diameter": 9.9, - "totalLiquidVolume": 1500, - "x": 117.66, - "y": 17.59, - "z": 41.65, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x1.5 mL Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["615601", "615001"], - "links": [ - "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_nest_1.5ml_snapcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 9.9, - "bottomDiameter": 9.28, - "topHeight": 37.9, - "bottomHeight": 35.4 - }, - { - "shape": "conical", - "topDiameter": 9.28, - "bottomDiameter": 8.98, - "topHeight": 35.4, - "bottomHeight": 17.4 - }, - { - "shape": "conical", - "topDiameter": 8.98, - "bottomDiameter": 3.69, - "topHeight": 17.4, - "bottomHeight": 1.56 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.87, - "topHeight": 1.56, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json deleted file mode 100644 index 25a47474b37..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_screwcap/draft.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack with NEST 2 mL Screwcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 85.35 - }, - "wells": { - "A1": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 75.43, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 56.15, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 36.87, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 43.4, - "shape": "circular", - "diameter": 8.55, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 17.59, - "z": 41.3, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x2 mL Screwcap", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["635001"], - "links": ["https://www.nest-biotech.com/sample-vials/59249854.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_nest_2ml_screwcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 8.55, - "bottomDiameter": 8.14, - "topHeight": 43.4, - "bottomHeight": 3.04 - }, - { - "shape": "conical", - "topDiameter": 8.14, - "bottomDiameter": 6.5, - "topHeight": 3.04, - "bottomHeight": 2.08 - }, - { - "shape": "conical", - "bottomDiameter": 1.21, - "topDiameter": 6.5, - "topHeight": 2.08, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json deleted file mode 100644 index e431d887ec8..00000000000 --- a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_2ml_snapcap/draft.json +++ /dev/null @@ -1,387 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1"], - ["A2", "B2", "C2", "D2"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 24 Tube Rack with NEST 2 mL Snapcap", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 79.45 - }, - "wells": { - "A1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 18.21, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 38.1, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 57.99, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 77.88, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 97.77, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 75.43, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 56.15, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 36.87, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 39.28, - "shape": "circular", - "diameter": 9.28, - "totalLiquidVolume": 2000, - "x": 117.66, - "y": 17.59, - "z": 40.17, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 24x2 mL Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "u" - }, - "brand": { - "brand": "NEST", - "brandId": ["620611", "620011"], - "links": [ - "https://www.nest-biotech.com/micro-centrifuge-tube/59201045.html" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "A2", - "B2", - "C2", - "D2", - "A3", - "B3", - "C3", - "D3", - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6" - ] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_24_tuberack_nest_2ml_snapcap" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 9.28, - "bottomDiameter": 8.9, - "topHeight": 39.28, - "bottomHeight": 15.04 - }, - { - "shape": "conical", - "topDiameter": 8.9, - "bottomDiameter": 8.74, - "topHeight": 15.04, - "bottomHeight": 6.26 - }, - { - "shape": "conical", - "topDiameter": 8.74, - "bottomDiameter": 8.0, - "topHeight": 6.26, - "bottomHeight": 3.98 - }, - { - "shape": "conical", - "topDiameter": 8.0, - "bottomDiameter": 7.2, - "topHeight": 3.98, - "bottomHeight": 2.74 - }, - { - "shape": "conical", - "topDiameter": 7.2, - "bottomDiameter": 7.0, - "topHeight": 2.74, - "bottomHeight": 2.59 - }, - { - "shape": "conical", - "topDiameter": 7.0, - "bottomDiameter": 6.0, - "topHeight": 2.59, - "bottomHeight": 1.83 - }, - { - "shape": "conical", - "topDiameter": 6.0, - "bottomDiameter": 5.0, - "topHeight": 1.83, - "bottomHeight": 1.21 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.19, - "topHeight": 1.21, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json b/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json deleted file mode 100644 index 56b4dda5031..00000000000 --- a/shared-data/labware/definitions/2/opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip/draft.json +++ /dev/null @@ -1,481 +0,0 @@ -{ - "wells": { - "A1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 74.25, - "z": 28.92 - }, - "B1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 65.25, - "z": 28.92 - }, - "C1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 56.25, - "z": 28.92 - }, - "D1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 47.25, - "z": 28.92 - }, - "E1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 38.25, - "z": 28.92 - }, - "F1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 29.25, - "z": 28.92 - }, - "G1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 20.25, - "z": 28.92 - }, - "H1": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 5, - "y": 11.25, - "z": 28.92 - }, - "A3": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 15.13, - "y": 72, - "z": 6.26 - }, - "B3": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 15.13, - "y": 52.5, - "z": 6.26 - }, - "C3": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 15.13, - "y": 33, - "z": 6.26 - }, - "D3": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 15.13, - "y": 13.5, - "z": 6.26 - }, - "A4": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 34.63, - "y": 72, - "z": 6.26 - }, - "B4": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 34.63, - "y": 52.5, - "z": 6.26 - }, - "C4": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 34.63, - "y": 33, - "z": 6.26 - }, - "D4": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 34.63, - "y": 13.5, - "z": 6.26 - }, - "A5": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 54.13, - "y": 72, - "z": 6.26 - }, - "B5": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 54.13, - "y": 52.5, - "z": 6.26 - }, - "C5": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 54.13, - "y": 33, - "z": 6.26 - }, - "D5": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 54.13, - "y": 13.5, - "z": 6.26 - }, - "A6": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 73.63, - "y": 72, - "z": 6.26 - }, - "B6": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 73.63, - "y": 52.5, - "z": 6.26 - }, - "C6": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 73.63, - "y": 33, - "z": 6.26 - }, - "D6": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 73.63, - "y": 13.5, - "z": 6.26 - }, - "A7": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 93.13, - "y": 72, - "z": 6.26 - }, - "B7": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 93.13, - "y": 52.5, - "z": 6.26 - }, - "C7": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 93.13, - "y": 33, - "z": 6.26 - }, - "D7": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 93.13, - "y": 13.5, - "z": 6.26 - }, - "A8": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 112.63, - "y": 72, - "z": 6.26 - }, - "B8": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 112.63, - "y": 52.5, - "z": 6.26 - }, - "C8": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 112.63, - "y": 33, - "z": 6.26 - }, - "D8": { - "totalLiquidVolume": 2000, - "diameter": 8.5, - "shape": "circular", - "depth": 42, - "x": 112.63, - "y": 13.5, - "z": 6.26 - }, - "A13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 74.25, - "z": 28.92 - }, - "B13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 65.25, - "z": 28.92 - }, - "C13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 56.25, - "z": 28.92 - }, - "D13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 47.25, - "z": 28.92 - }, - "E13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 38.25, - "z": 28.92 - }, - "F13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 29.25, - "z": 28.92 - }, - "G13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 20.25, - "z": 28.92 - }, - "H13": { - "totalLiquidVolume": 200, - "diameter": 5.46, - "shape": "circular", - "depth": 20.3, - "x": 122.75, - "y": 11.25, - "z": 28.92 - } - }, - "brand": { - "brand": "Opentrons", - "brandId": ["4ti-0785/M", "649020"] - }, - "metadata": { - "displayName": "Opentrons 40 Well Aluminum Block with Eppendorf 24x2 mL Safe-Lock Snapcap, Generic 16x0.2 mL PCR Strip", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 49.22 - }, - "namespace": "opentrons", - "schemaVersion": 2, - "version": 1, - "parameters": { - "format": "irregular", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_40_aluminumblock_eppendorf_24x2ml_safelock_snapcap_generic_16x0.2ml_pcr_strip" - }, - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A3", "B3", "C3", "D3"], - ["A4", "B4", "C4", "D4"], - ["A5", "B5", "C5", "D5"], - ["A6", "B6", "C6", "D6"], - ["A7", "B7", "C7", "D7"], - ["A8", "B8", "C8", "D8"], - ["A13", "B13", "C13", "D13", "E13", "F13", "G13", "H13"] - ], - "groups": [ - { - "wells": [ - "A4", - "B4", - "C4", - "D4", - "A5", - "B5", - "C5", - "D5", - "A6", - "B6", - "C6", - "D6", - "A7", - "B7", - "C7", - "D7", - "A8", - "B8", - "C8", - "D8" - ], - "metadata": { - "displayName": "Eppendorf 24x2 mL Safelock Snapcap", - "displayCategory": "tubeRack", - "wellBottomShape": "u" - }, - "brand": { - "brand": "Eppendorf", - "brandId": [ - "022363344", - "022363352", - "022363379", - "022363395", - "022363417", - "022363433", - "022363450", - "022363476" - ], - "links": [ - "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" - ] - } - }, - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13" - ], - "metadata": { - "displayName": "Generic 2x8x0.2 mL PCR Strip", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "generic", - "brandId": [], - "links": [] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json deleted file mode 100644 index 30da0309c70..00000000000 --- a/shared-data/labware/definitions/2/opentrons_6_tuberack_falcon_50ml_conical/draft.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "ordering": [ - ["A1", "B1"], - ["A2", "B2"], - ["A3", "B3"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "tags": [], - "displayName": "Opentrons 6 Tube Rack with Falcon 50 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL" - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 120.3 - }, - "schemaVersion": 2, - "version": 2, - "namespace": "opentrons", - "wells": { - "B1": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 35.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "A1": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 35.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 70.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 70.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 105.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 113, - "diameter": 27.81, - "shape": "circular", - "totalLiquidVolume": 50000, - "x": 105.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - } - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_6_tuberack_falcon_50ml_conical" - }, - "groups": [ - { - "wells": ["A1", "B1", "A2", "B2", "A3", "B3"], - "metadata": { - "displayName": "Falcon 6x50 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Falcon", - "brandId": ["352070", "352098"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 27.52, - "topDiameter": 27.81, - "topHeight": 112.85, - "bottomHeight": 100.65 - }, - { - "shape": "conical", - "bottomDiameter": 26.18, - "topDiameter": 27.52, - "topHeight": 100.65, - "bottomHeight": 14.3 - }, - { - "shape": "conical", - "bottomDiameter": 6.15, - "topDiameter": 26.18, - "topHeight": 14.3, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json deleted file mode 100644 index f58424a7722..00000000000 --- a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/draft.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "ordering": [ - ["A1", "B1"], - ["A2", "B2"], - ["A3", "B3"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "metadata": { - "displayName": "Opentrons 6 Tube Rack with NEST 50 mL Conical", - "displayCategory": "tubeRack", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 120.35 - }, - "wells": { - "A1": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 35.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 35.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 70.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 70.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 105.5, - "y": 60.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 113.05, - "shape": "circular", - "diameter": 28.18, - "totalLiquidVolume": 50000, - "x": 105.5, - "y": 25.24, - "z": 7.3, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 6x50 mL Conical", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["602052"], - "links": ["https://www.nest-biotech.com/centrifuge-tube/59282837.html"] - }, - "wells": ["A1", "B1", "A2", "B2", "A3", "B3"] - } - ], - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_6_tuberack_nest_50ml_conical" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "topDiameter": 28.18, - "bottomDiameter": 27.95, - "topHeight": 113.1, - "bottomHeight": 109.1 - }, - { - "shape": "conical", - "topDiameter": 27.95, - "bottomDiameter": 27.69, - "topHeight": 109.1, - "bottomHeight": 108.8 - }, - { - "shape": "conical", - "topDiameter": 27.69, - "bottomDiameter": 26.0, - "topHeight": 108.8, - "bottomHeight": 14.35 - }, - { - "shape": "conical", - "topDiameter": 26.0, - "bottomDiameter": 4.5, - "topHeight": 14.35, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json deleted file mode 100644 index b84497a4879..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_biorad_wellplate_200ul/draft.json +++ /dev/null @@ -1,1029 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 1, - "namespace": "opentrons", - "metadata": { - "displayName": "Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 µL", - "displayVolumeUnits": "µL", - "displayCategory": "aluminumBlock", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 18.81 - }, - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 4 - }, - "G1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 4 - }, - "F1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 4 - }, - "E1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 4 - }, - "D1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 4 - }, - "C1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 4 - }, - "B1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 4 - }, - "A1": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 4 - }, - "H2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 4 - }, - "G2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 4 - }, - "F2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 4 - }, - "E2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 4 - }, - "D2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 4 - }, - "C2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 4 - }, - "B2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 4 - }, - "A2": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 4 - }, - "H3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 4 - }, - "G3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 4 - }, - "F3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 4 - }, - "E3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 4 - }, - "D3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 4 - }, - "C3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 4 - }, - "B3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 4 - }, - "A3": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 4 - }, - "H4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 4 - }, - "G4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 4 - }, - "F4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 4 - }, - "E4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 4 - }, - "D4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 4 - }, - "C4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 4 - }, - "B4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 4 - }, - "A4": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 4 - }, - "H5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 4 - }, - "G5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 4 - }, - "F5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 4 - }, - "E5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 4 - }, - "D5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 4 - }, - "C5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 4 - }, - "B5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 4 - }, - "A5": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 4 - }, - "H6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 4 - }, - "G6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 4 - }, - "F6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 4 - }, - "E6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 4 - }, - "D6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 4 - }, - "C6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 4 - }, - "B6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 4 - }, - "A6": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 4 - }, - "H7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 4 - }, - "G7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 4 - }, - "F7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 4 - }, - "E7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 4 - }, - "D7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 4 - }, - "C7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 4 - }, - "B7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 4 - }, - "A7": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 4 - }, - "H8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 4 - }, - "G8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 4 - }, - "F8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 4 - }, - "E8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 4 - }, - "D8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 4 - }, - "C8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 4 - }, - "B8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 4 - }, - "A8": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 4 - }, - "H9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 4 - }, - "G9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 4 - }, - "F9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 4 - }, - "E9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 4 - }, - "D9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 4 - }, - "C9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 4 - }, - "B9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 4 - }, - "A9": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 4 - }, - "H10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 4 - }, - "G10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 4 - }, - "F10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 4 - }, - "E10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 4 - }, - "D10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 4 - }, - "C10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 4 - }, - "B10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 4 - }, - "A10": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 4 - }, - "H11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 4 - }, - "G11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 4 - }, - "F11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 4 - }, - "E11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 4 - }, - "D11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 4 - }, - "C11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 4 - }, - "B11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 4 - }, - "A11": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 4 - }, - "H12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 4 - }, - "G12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 4 - }, - "F12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 4 - }, - "E12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 4 - }, - "D12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 4 - }, - "C12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 4 - }, - "B12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 4 - }, - "A12": { - "shape": "circular", - "depth": 14.81, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 4 - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { - "displayName": "Bio-Rad 96 Well Plate 200 µL", - "displayCategory": "wellPlate", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Bio-Rad", - "brandId": ["hsp9601"], - "links": [ - "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" - ] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json deleted file mode 100644 index a2b966b02eb..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_generic_pcr_strip_200ul/draft.json +++ /dev/null @@ -1,1149 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "schemaVersion": 2, - "version": 4, - "namespace": "opentrons", - "metadata": { - "displayName": "Opentrons 96 Well Aluminum Block with Generic PCR Strip 200 µL", - "displayVolumeUnits": "µL", - "displayCategory": "aluminumBlock", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 25.61 - }, - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_aluminumblock_generic_pcr_strip_200ul" - }, - "wells": { - "H1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A1": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A2": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A3": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A4": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A5": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A6": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A7": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A8": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A9": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A10": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A11": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "H12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "G12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "F12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "E12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "D12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "C12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "B12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - }, - "A12": { - "shape": "circular", - "depth": 20.3, - "diameter": 5.46, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.25, - "z": 5.31, - "geometryDefinitionId": "pcrWell" - } - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" - ] - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { - "displayName": "Generic 12x8x0.2 mL PCR Strip", - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "brand": { - "brand": "generic", - "brandId": [], - "links": [] - } - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "pcrWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 5.3, - "topDiameter": 5.46, - "topHeight": 20.3, - "bottomHeight": 11.35 - }, - { - "shape": "conical", - "bottomDiameter": 2.33, - "topDiameter": 5.3, - "topHeight": 11.35, - "bottomHeight": 0.8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.25, - "topHeight": 0.8, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json deleted file mode 100644 index 875ff19df17..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_aluminumblock_nest_wellplate_100ul/draft.json +++ /dev/null @@ -1,1027 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" - ] - }, - "metadata": { - "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.45, - "zDimension": 21.2 - }, - "wells": { - "A1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 74.2, - "z": 6.42 - }, - "B1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 65.2, - "z": 6.42 - }, - "C1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 56.2, - "z": 6.42 - }, - "D1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 47.2, - "z": 6.42 - }, - "E1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 38.2, - "z": 6.42 - }, - "F1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 29.2, - "z": 6.42 - }, - "G1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 20.2, - "z": 6.42 - }, - "H1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 14.38, - "y": 11.2, - "z": 6.42 - }, - "A2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 74.2, - "z": 6.42 - }, - "B2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 65.2, - "z": 6.42 - }, - "C2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 56.2, - "z": 6.42 - }, - "D2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 47.2, - "z": 6.42 - }, - "E2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 38.2, - "z": 6.42 - }, - "F2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 29.2, - "z": 6.42 - }, - "G2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 20.2, - "z": 6.42 - }, - "H2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 23.38, - "y": 11.2, - "z": 6.42 - }, - "A3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 74.2, - "z": 6.42 - }, - "B3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 65.2, - "z": 6.42 - }, - "C3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 56.2, - "z": 6.42 - }, - "D3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 47.2, - "z": 6.42 - }, - "E3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 38.2, - "z": 6.42 - }, - "F3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 29.2, - "z": 6.42 - }, - "G3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 20.2, - "z": 6.42 - }, - "H3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 32.38, - "y": 11.2, - "z": 6.42 - }, - "A4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 74.2, - "z": 6.42 - }, - "B4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 65.2, - "z": 6.42 - }, - "C4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 56.2, - "z": 6.42 - }, - "D4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 47.2, - "z": 6.42 - }, - "E4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 38.2, - "z": 6.42 - }, - "F4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 29.2, - "z": 6.42 - }, - "G4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 20.2, - "z": 6.42 - }, - "H4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 41.38, - "y": 11.2, - "z": 6.42 - }, - "A5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 74.2, - "z": 6.42 - }, - "B5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 65.2, - "z": 6.42 - }, - "C5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 56.2, - "z": 6.42 - }, - "D5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 47.2, - "z": 6.42 - }, - "E5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 38.2, - "z": 6.42 - }, - "F5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 29.2, - "z": 6.42 - }, - "G5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 20.2, - "z": 6.42 - }, - "H5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 50.38, - "y": 11.2, - "z": 6.42 - }, - "A6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 74.2, - "z": 6.42 - }, - "B6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 65.2, - "z": 6.42 - }, - "C6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 56.2, - "z": 6.42 - }, - "D6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 47.2, - "z": 6.42 - }, - "E6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 38.2, - "z": 6.42 - }, - "F6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 29.2, - "z": 6.42 - }, - "G6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 20.2, - "z": 6.42 - }, - "H6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 59.38, - "y": 11.2, - "z": 6.42 - }, - "A7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 74.2, - "z": 6.42 - }, - "B7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 65.2, - "z": 6.42 - }, - "C7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 56.2, - "z": 6.42 - }, - "D7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 47.2, - "z": 6.42 - }, - "E7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 38.2, - "z": 6.42 - }, - "F7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 29.2, - "z": 6.42 - }, - "G7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 20.2, - "z": 6.42 - }, - "H7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 68.38, - "y": 11.2, - "z": 6.42 - }, - "A8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 74.2, - "z": 6.42 - }, - "B8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 65.2, - "z": 6.42 - }, - "C8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 56.2, - "z": 6.42 - }, - "D8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 47.2, - "z": 6.42 - }, - "E8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 38.2, - "z": 6.42 - }, - "F8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 29.2, - "z": 6.42 - }, - "G8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 20.2, - "z": 6.42 - }, - "H8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 77.38, - "y": 11.2, - "z": 6.42 - }, - "A9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 74.2, - "z": 6.42 - }, - "B9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 65.2, - "z": 6.42 - }, - "C9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 56.2, - "z": 6.42 - }, - "D9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 47.2, - "z": 6.42 - }, - "E9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 38.2, - "z": 6.42 - }, - "F9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 29.2, - "z": 6.42 - }, - "G9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 20.2, - "z": 6.42 - }, - "H9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 86.38, - "y": 11.2, - "z": 6.42 - }, - "A10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 74.2, - "z": 6.42 - }, - "B10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 65.2, - "z": 6.42 - }, - "C10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 56.2, - "z": 6.42 - }, - "D10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 47.2, - "z": 6.42 - }, - "E10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 38.2, - "z": 6.42 - }, - "F10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 29.2, - "z": 6.42 - }, - "G10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 20.2, - "z": 6.42 - }, - "H10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 95.38, - "y": 11.2, - "z": 6.42 - }, - "A11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 74.2, - "z": 6.42 - }, - "B11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 65.2, - "z": 6.42 - }, - "C11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 56.2, - "z": 6.42 - }, - "D11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 47.2, - "z": 6.42 - }, - "E11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 38.2, - "z": 6.42 - }, - "F11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 29.2, - "z": 6.42 - }, - "G11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 20.2, - "z": 6.42 - }, - "H11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 104.38, - "y": 11.2, - "z": 6.42 - }, - "A12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 74.2, - "z": 6.42 - }, - "B12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 65.2, - "z": 6.42 - }, - "C12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 56.2, - "z": 6.42 - }, - "D12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 47.2, - "z": 6.42 - }, - "E12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 38.2, - "z": 6.42 - }, - "F12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 29.2, - "z": 6.42 - }, - "G12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 20.2, - "z": 6.42 - }, - "H12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 100, - "x": 113.38, - "y": 11.2, - "z": 6.42 - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 96 Well Plate 100 µL", - "displayCategory": "wellPlate", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["402501"], - "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json deleted file mode 100644 index d8b45937703..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons 96 Deep Well Heater-Shaker Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 114.2, - "yDimension": 78.2, - "zDimension": 17.55 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_deep_well_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 6.9, - "y": 3.9, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json deleted file mode 100644 index 97c71f7b920..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/draft.json +++ /dev/null @@ -1,1121 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 96 Deep Well Heater-Shaker Adapter with NEST Deep Well Plate 2 mL", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 42.25 - }, - "wells": { - "A1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 74.15, - "z": 4.25 - }, - "B1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 65.15, - "z": 4.25 - }, - "C1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 56.15, - "z": 4.25 - }, - "D1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 47.15, - "z": 4.25 - }, - "E1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 38.15, - "z": 4.25 - }, - "F1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 29.15, - "z": 4.25 - }, - "G1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 20.15, - "z": 4.25 - }, - "H1": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 14.3, - "y": 11.15, - "z": 4.25 - }, - "A2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 74.15, - "z": 4.25 - }, - "B2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 65.15, - "z": 4.25 - }, - "C2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 56.15, - "z": 4.25 - }, - "D2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 47.15, - "z": 4.25 - }, - "E2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 38.15, - "z": 4.25 - }, - "F2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 29.15, - "z": 4.25 - }, - "G2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 20.15, - "z": 4.25 - }, - "H2": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 23.3, - "y": 11.15, - "z": 4.25 - }, - "A3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 74.15, - "z": 4.25 - }, - "B3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 65.15, - "z": 4.25 - }, - "C3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 56.15, - "z": 4.25 - }, - "D3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 47.15, - "z": 4.25 - }, - "E3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 38.15, - "z": 4.25 - }, - "F3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 29.15, - "z": 4.25 - }, - "G3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 20.15, - "z": 4.25 - }, - "H3": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 32.3, - "y": 11.15, - "z": 4.25 - }, - "A4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 74.15, - "z": 4.25 - }, - "B4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 65.15, - "z": 4.25 - }, - "C4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 56.15, - "z": 4.25 - }, - "D4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 47.15, - "z": 4.25 - }, - "E4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 38.15, - "z": 4.25 - }, - "F4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 29.15, - "z": 4.25 - }, - "G4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 20.15, - "z": 4.25 - }, - "H4": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 41.3, - "y": 11.15, - "z": 4.25 - }, - "A5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 74.15, - "z": 4.25 - }, - "B5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 65.15, - "z": 4.25 - }, - "C5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 56.15, - "z": 4.25 - }, - "D5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 47.15, - "z": 4.25 - }, - "E5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 38.15, - "z": 4.25 - }, - "F5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 29.15, - "z": 4.25 - }, - "G5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 20.15, - "z": 4.25 - }, - "H5": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 50.3, - "y": 11.15, - "z": 4.25 - }, - "A6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 74.15, - "z": 4.25 - }, - "B6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 65.15, - "z": 4.25 - }, - "C6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 56.15, - "z": 4.25 - }, - "D6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 47.15, - "z": 4.25 - }, - "E6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 38.15, - "z": 4.25 - }, - "F6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 29.15, - "z": 4.25 - }, - "G6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 20.15, - "z": 4.25 - }, - "H6": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 59.3, - "y": 11.15, - "z": 4.25 - }, - "A7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 74.15, - "z": 4.25 - }, - "B7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 65.15, - "z": 4.25 - }, - "C7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 56.15, - "z": 4.25 - }, - "D7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 47.15, - "z": 4.25 - }, - "E7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 38.15, - "z": 4.25 - }, - "F7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 29.15, - "z": 4.25 - }, - "G7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 20.15, - "z": 4.25 - }, - "H7": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 68.3, - "y": 11.15, - "z": 4.25 - }, - "A8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 74.15, - "z": 4.25 - }, - "B8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 65.15, - "z": 4.25 - }, - "C8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 56.15, - "z": 4.25 - }, - "D8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 47.15, - "z": 4.25 - }, - "E8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 38.15, - "z": 4.25 - }, - "F8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 29.15, - "z": 4.25 - }, - "G8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 20.15, - "z": 4.25 - }, - "H8": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 77.3, - "y": 11.15, - "z": 4.25 - }, - "A9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 74.15, - "z": 4.25 - }, - "B9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 65.15, - "z": 4.25 - }, - "C9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 56.15, - "z": 4.25 - }, - "D9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 47.15, - "z": 4.25 - }, - "E9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 38.15, - "z": 4.25 - }, - "F9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 29.15, - "z": 4.25 - }, - "G9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 20.15, - "z": 4.25 - }, - "H9": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 86.3, - "y": 11.15, - "z": 4.25 - }, - "A10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 74.15, - "z": 4.25 - }, - "B10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 65.15, - "z": 4.25 - }, - "C10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 56.15, - "z": 4.25 - }, - "D10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 47.15, - "z": 4.25 - }, - "E10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 38.15, - "z": 4.25 - }, - "F10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 29.15, - "z": 4.25 - }, - "G10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 20.15, - "z": 4.25 - }, - "H10": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 95.3, - "y": 11.15, - "z": 4.25 - }, - "A11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 74.15, - "z": 4.25 - }, - "B11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 65.15, - "z": 4.25 - }, - "C11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 56.15, - "z": 4.25 - }, - "D11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 47.15, - "z": 4.25 - }, - "E11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 38.15, - "z": 4.25 - }, - "F11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 29.15, - "z": 4.25 - }, - "G11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 20.15, - "z": 4.25 - }, - "H11": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 104.3, - "y": 11.15, - "z": 4.25 - }, - "A12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 74.15, - "z": 4.25 - }, - "B12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 65.15, - "z": 4.25 - }, - "C12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 56.15, - "z": 4.25 - }, - "D12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 47.15, - "z": 4.25 - }, - "E12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 38.15, - "z": 4.25 - }, - "F12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 29.15, - "z": 4.25 - }, - "G12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 20.15, - "z": 4.25 - }, - "H12": { - "depth": 38, - "totalLiquidVolume": 2000, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "x": 113.3, - "y": 11.15, - "z": 4.25 - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 96 Deepwell Plate 2mL", - "displayCategory": "wellPlate", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["503501", "503001"], - "links": ["https://www.nest-biotech.com/deep-well-plates/59253726.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json deleted file mode 100644 index aa88c994b7a..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_deep_well_temp_mod_adapter/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons 96 Deep Well Temperature Module Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 21.4 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_deep_well_temp_mod_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 0.125, - "y": 0.25, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json deleted file mode 100644 index f964a2f60b4..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_1000ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Filter Tip Rack 1000 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 97.47 - }, - "wells": { - "A1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 74.26, - "z": 9.47 - }, - "B1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 65.26, - "z": 9.47 - }, - "C1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 56.26, - "z": 9.47 - }, - "D1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 47.26, - "z": 9.47 - }, - "E1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 38.26, - "z": 9.47 - }, - "F1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 29.26, - "z": 9.47 - }, - "G1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 20.26, - "z": 9.47 - }, - "H1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.36, - "y": 11.26, - "z": 9.47 - }, - "A2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 74.26, - "z": 9.47 - }, - "B2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 65.26, - "z": 9.47 - }, - "C2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 56.26, - "z": 9.47 - }, - "D2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 47.26, - "z": 9.47 - }, - "E2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 38.26, - "z": 9.47 - }, - "F2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 29.26, - "z": 9.47 - }, - "G2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 20.26, - "z": 9.47 - }, - "H2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.36, - "y": 11.26, - "z": 9.47 - }, - "A3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 74.26, - "z": 9.47 - }, - "B3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 65.26, - "z": 9.47 - }, - "C3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 56.26, - "z": 9.47 - }, - "D3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 47.26, - "z": 9.47 - }, - "E3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 38.26, - "z": 9.47 - }, - "F3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 29.26, - "z": 9.47 - }, - "G3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 20.26, - "z": 9.47 - }, - "H3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.36, - "y": 11.26, - "z": 9.47 - }, - "A4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 74.26, - "z": 9.47 - }, - "B4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 65.26, - "z": 9.47 - }, - "C4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 56.26, - "z": 9.47 - }, - "D4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 47.26, - "z": 9.47 - }, - "E4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 38.26, - "z": 9.47 - }, - "F4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 29.26, - "z": 9.47 - }, - "G4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 20.26, - "z": 9.47 - }, - "H4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.36, - "y": 11.26, - "z": 9.47 - }, - "A5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 74.26, - "z": 9.47 - }, - "B5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 65.26, - "z": 9.47 - }, - "C5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 56.26, - "z": 9.47 - }, - "D5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 47.26, - "z": 9.47 - }, - "E5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 38.26, - "z": 9.47 - }, - "F5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 29.26, - "z": 9.47 - }, - "G5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 20.26, - "z": 9.47 - }, - "H5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.36, - "y": 11.26, - "z": 9.47 - }, - "A6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 74.26, - "z": 9.47 - }, - "B6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 65.26, - "z": 9.47 - }, - "C6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 56.26, - "z": 9.47 - }, - "D6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 47.26, - "z": 9.47 - }, - "E6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 38.26, - "z": 9.47 - }, - "F6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 29.26, - "z": 9.47 - }, - "G6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 20.26, - "z": 9.47 - }, - "H6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.36, - "y": 11.26, - "z": 9.47 - }, - "A7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 74.26, - "z": 9.47 - }, - "B7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 65.26, - "z": 9.47 - }, - "C7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 56.26, - "z": 9.47 - }, - "D7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 47.26, - "z": 9.47 - }, - "E7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 38.26, - "z": 9.47 - }, - "F7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 29.26, - "z": 9.47 - }, - "G7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 20.26, - "z": 9.47 - }, - "H7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.36, - "y": 11.26, - "z": 9.47 - }, - "A8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 74.26, - "z": 9.47 - }, - "B8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 65.26, - "z": 9.47 - }, - "C8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 56.26, - "z": 9.47 - }, - "D8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 47.26, - "z": 9.47 - }, - "E8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 38.26, - "z": 9.47 - }, - "F8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 29.26, - "z": 9.47 - }, - "G8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 20.26, - "z": 9.47 - }, - "H8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.36, - "y": 11.26, - "z": 9.47 - }, - "A9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 74.26, - "z": 9.47 - }, - "B9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 65.26, - "z": 9.47 - }, - "C9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 56.26, - "z": 9.47 - }, - "D9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 47.26, - "z": 9.47 - }, - "E9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 38.26, - "z": 9.47 - }, - "F9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 29.26, - "z": 9.47 - }, - "G9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 20.26, - "z": 9.47 - }, - "H9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.36, - "y": 11.26, - "z": 9.47 - }, - "A10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 74.26, - "z": 9.47 - }, - "B10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 65.26, - "z": 9.47 - }, - "C10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 56.26, - "z": 9.47 - }, - "D10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 47.26, - "z": 9.47 - }, - "E10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 38.26, - "z": 9.47 - }, - "F10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 29.26, - "z": 9.47 - }, - "G10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 20.26, - "z": 9.47 - }, - "H10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.36, - "y": 11.26, - "z": 9.47 - }, - "A11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 74.26, - "z": 9.47 - }, - "B11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 65.26, - "z": 9.47 - }, - "C11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 56.26, - "z": 9.47 - }, - "D11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 47.26, - "z": 9.47 - }, - "E11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 38.26, - "z": 9.47 - }, - "F11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 29.26, - "z": 9.47 - }, - "G11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 20.26, - "z": 9.47 - }, - "H11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.36, - "y": 11.26, - "z": 9.47 - }, - "A12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 74.26, - "z": 9.47 - }, - "B12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 65.26, - "z": 9.47 - }, - "C12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 56.26, - "z": 9.47 - }, - "D12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 47.26, - "z": 9.47 - }, - "E12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 38.26, - "z": 9.47 - }, - "F12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 29.26, - "z": 9.47 - }, - "G12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 20.26, - "z": 9.47 - }, - "H12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.36, - "y": 11.26, - "z": 9.47 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 88, - "tipOverlap": 7.95, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_filtertiprack_1000ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json deleted file mode 100644 index 37dd458f9a6..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_10ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Filter Tip Rack 10 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.69 - }, - "wells": { - "A1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 74.26, - "z": 25.49 - }, - "B1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 65.26, - "z": 25.49 - }, - "C1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 56.26, - "z": 25.49 - }, - "D1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 47.26, - "z": 25.49 - }, - "E1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 38.26, - "z": 25.49 - }, - "F1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 29.26, - "z": 25.49 - }, - "G1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 20.26, - "z": 25.49 - }, - "H1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.36, - "y": 11.26, - "z": 25.49 - }, - "A2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 74.26, - "z": 25.49 - }, - "B2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 65.26, - "z": 25.49 - }, - "C2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 56.26, - "z": 25.49 - }, - "D2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 47.26, - "z": 25.49 - }, - "E2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 38.26, - "z": 25.49 - }, - "F2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 29.26, - "z": 25.49 - }, - "G2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 20.26, - "z": 25.49 - }, - "H2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.36, - "y": 11.26, - "z": 25.49 - }, - "A3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 74.26, - "z": 25.49 - }, - "B3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 65.26, - "z": 25.49 - }, - "C3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 56.26, - "z": 25.49 - }, - "D3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 47.26, - "z": 25.49 - }, - "E3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 38.26, - "z": 25.49 - }, - "F3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 29.26, - "z": 25.49 - }, - "G3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 20.26, - "z": 25.49 - }, - "H3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.36, - "y": 11.26, - "z": 25.49 - }, - "A4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 74.26, - "z": 25.49 - }, - "B4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 65.26, - "z": 25.49 - }, - "C4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 56.26, - "z": 25.49 - }, - "D4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 47.26, - "z": 25.49 - }, - "E4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 38.26, - "z": 25.49 - }, - "F4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 29.26, - "z": 25.49 - }, - "G4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 20.26, - "z": 25.49 - }, - "H4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.36, - "y": 11.26, - "z": 25.49 - }, - "A5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 74.26, - "z": 25.49 - }, - "B5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 65.26, - "z": 25.49 - }, - "C5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 56.26, - "z": 25.49 - }, - "D5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 47.26, - "z": 25.49 - }, - "E5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 38.26, - "z": 25.49 - }, - "F5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 29.26, - "z": 25.49 - }, - "G5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 20.26, - "z": 25.49 - }, - "H5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.36, - "y": 11.26, - "z": 25.49 - }, - "A6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 74.26, - "z": 25.49 - }, - "B6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 65.26, - "z": 25.49 - }, - "C6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 56.26, - "z": 25.49 - }, - "D6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 47.26, - "z": 25.49 - }, - "E6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 38.26, - "z": 25.49 - }, - "F6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 29.26, - "z": 25.49 - }, - "G6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 20.26, - "z": 25.49 - }, - "H6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.36, - "y": 11.26, - "z": 25.49 - }, - "A7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 74.26, - "z": 25.49 - }, - "B7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 65.26, - "z": 25.49 - }, - "C7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 56.26, - "z": 25.49 - }, - "D7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 47.26, - "z": 25.49 - }, - "E7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 38.26, - "z": 25.49 - }, - "F7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 29.26, - "z": 25.49 - }, - "G7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 20.26, - "z": 25.49 - }, - "H7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.36, - "y": 11.26, - "z": 25.49 - }, - "A8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 74.26, - "z": 25.49 - }, - "B8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 65.26, - "z": 25.49 - }, - "C8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 56.26, - "z": 25.49 - }, - "D8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 47.26, - "z": 25.49 - }, - "E8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 38.26, - "z": 25.49 - }, - "F8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 29.26, - "z": 25.49 - }, - "G8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 20.26, - "z": 25.49 - }, - "H8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.36, - "y": 11.26, - "z": 25.49 - }, - "A9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 74.26, - "z": 25.49 - }, - "B9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 65.26, - "z": 25.49 - }, - "C9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 56.26, - "z": 25.49 - }, - "D9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 47.26, - "z": 25.49 - }, - "E9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 38.26, - "z": 25.49 - }, - "F9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 29.26, - "z": 25.49 - }, - "G9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 20.26, - "z": 25.49 - }, - "H9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.36, - "y": 11.26, - "z": 25.49 - }, - "A10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 74.26, - "z": 25.49 - }, - "B10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 65.26, - "z": 25.49 - }, - "C10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 56.26, - "z": 25.49 - }, - "D10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 47.26, - "z": 25.49 - }, - "E10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 38.26, - "z": 25.49 - }, - "F10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 29.26, - "z": 25.49 - }, - "G10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 20.26, - "z": 25.49 - }, - "H10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.36, - "y": 11.26, - "z": 25.49 - }, - "A11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 74.26, - "z": 25.49 - }, - "B11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 65.26, - "z": 25.49 - }, - "C11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 56.26, - "z": 25.49 - }, - "D11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 47.26, - "z": 25.49 - }, - "E11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 38.26, - "z": 25.49 - }, - "F11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 29.26, - "z": 25.49 - }, - "G11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 20.26, - "z": 25.49 - }, - "H11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.36, - "y": 11.26, - "z": 25.49 - }, - "A12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 74.26, - "z": 25.49 - }, - "B12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 65.26, - "z": 25.49 - }, - "C12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 56.26, - "z": 25.49 - }, - "D12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 47.26, - "z": 25.49 - }, - "E12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 38.26, - "z": 25.49 - }, - "F12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 29.26, - "z": 25.49 - }, - "G12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 20.26, - "z": 25.49 - }, - "H12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.36, - "y": 11.26, - "z": 25.49 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 39.2, - "tipOverlap": 3.29, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_filtertiprack_10ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json deleted file mode 100644 index f4fa822553d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_200ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Filter Tip Rack 200 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.49 - }, - "wells": { - "A1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 5.39 - }, - "B1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 5.39 - }, - "C1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 5.39 - }, - "D1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 5.39 - }, - "E1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 5.39 - }, - "F1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 5.39 - }, - "G1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 5.39 - }, - "H1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 5.39 - }, - "A2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 5.39 - }, - "B2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 5.39 - }, - "C2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 5.39 - }, - "D2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 5.39 - }, - "E2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 5.39 - }, - "F2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 5.39 - }, - "G2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 5.39 - }, - "H2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 5.39 - }, - "A3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 5.39 - }, - "B3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 5.39 - }, - "C3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 5.39 - }, - "D3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 5.39 - }, - "E3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 5.39 - }, - "F3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 5.39 - }, - "G3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 5.39 - }, - "H3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 5.39 - }, - "A4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 5.39 - }, - "B4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 5.39 - }, - "C4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 5.39 - }, - "D4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 5.39 - }, - "E4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 5.39 - }, - "F4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 5.39 - }, - "G4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 5.39 - }, - "H4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 5.39 - }, - "A5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 5.39 - }, - "B5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 5.39 - }, - "C5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 5.39 - }, - "D5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 5.39 - }, - "E5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 5.39 - }, - "F5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 5.39 - }, - "G5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 5.39 - }, - "H5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 5.39 - }, - "A6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 5.39 - }, - "B6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 5.39 - }, - "C6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 5.39 - }, - "D6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 5.39 - }, - "E6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 5.39 - }, - "F6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 5.39 - }, - "G6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 5.39 - }, - "H6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 5.39 - }, - "A7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 5.39 - }, - "B7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 5.39 - }, - "C7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 5.39 - }, - "D7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 5.39 - }, - "E7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 5.39 - }, - "F7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 5.39 - }, - "G7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 5.39 - }, - "H7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 5.39 - }, - "A8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 5.39 - }, - "B8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 5.39 - }, - "C8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 5.39 - }, - "D8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 5.39 - }, - "E8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 5.39 - }, - "F8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 5.39 - }, - "G8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 5.39 - }, - "H8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 5.39 - }, - "A9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 5.39 - }, - "B9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 5.39 - }, - "C9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 5.39 - }, - "D9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 5.39 - }, - "E9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 5.39 - }, - "F9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 5.39 - }, - "G9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 5.39 - }, - "H9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 5.39 - }, - "A10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 5.39 - }, - "B10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 5.39 - }, - "C10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 5.39 - }, - "D10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 5.39 - }, - "E10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 5.39 - }, - "F10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 5.39 - }, - "G10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 5.39 - }, - "H10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 5.39 - }, - "A11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 5.39 - }, - "B11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 5.39 - }, - "C11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 5.39 - }, - "D11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 5.39 - }, - "E11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 5.39 - }, - "F11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 5.39 - }, - "G11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 5.39 - }, - "H11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 5.39 - }, - "A12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 5.39 - }, - "B12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 5.39 - }, - "C12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 5.39 - }, - "D12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 5.39 - }, - "E12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 5.39 - }, - "F12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 5.39 - }, - "G12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 5.39 - }, - "H12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 5.39 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 59.3, - "tipOverlap": 7.47, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_filtertiprack_200ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json deleted file mode 100644 index c957375d2f0..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_filtertiprack_20ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Filter Tip Rack 20 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.69 - }, - "wells": { - "A1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 74.26, - "z": 25.49 - }, - "B1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 65.26, - "z": 25.49 - }, - "C1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 56.26, - "z": 25.49 - }, - "D1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 47.26, - "z": 25.49 - }, - "E1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 38.26, - "z": 25.49 - }, - "F1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 29.26, - "z": 25.49 - }, - "G1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 20.26, - "z": 25.49 - }, - "H1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.36, - "y": 11.26, - "z": 25.49 - }, - "A2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 74.26, - "z": 25.49 - }, - "B2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 65.26, - "z": 25.49 - }, - "C2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 56.26, - "z": 25.49 - }, - "D2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 47.26, - "z": 25.49 - }, - "E2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 38.26, - "z": 25.49 - }, - "F2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 29.26, - "z": 25.49 - }, - "G2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 20.26, - "z": 25.49 - }, - "H2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.36, - "y": 11.26, - "z": 25.49 - }, - "A3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 74.26, - "z": 25.49 - }, - "B3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 65.26, - "z": 25.49 - }, - "C3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 56.26, - "z": 25.49 - }, - "D3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 47.26, - "z": 25.49 - }, - "E3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 38.26, - "z": 25.49 - }, - "F3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 29.26, - "z": 25.49 - }, - "G3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 20.26, - "z": 25.49 - }, - "H3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.36, - "y": 11.26, - "z": 25.49 - }, - "A4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 74.26, - "z": 25.49 - }, - "B4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 65.26, - "z": 25.49 - }, - "C4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 56.26, - "z": 25.49 - }, - "D4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 47.26, - "z": 25.49 - }, - "E4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 38.26, - "z": 25.49 - }, - "F4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 29.26, - "z": 25.49 - }, - "G4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 20.26, - "z": 25.49 - }, - "H4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.36, - "y": 11.26, - "z": 25.49 - }, - "A5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 74.26, - "z": 25.49 - }, - "B5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 65.26, - "z": 25.49 - }, - "C5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 56.26, - "z": 25.49 - }, - "D5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 47.26, - "z": 25.49 - }, - "E5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 38.26, - "z": 25.49 - }, - "F5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 29.26, - "z": 25.49 - }, - "G5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 20.26, - "z": 25.49 - }, - "H5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.36, - "y": 11.26, - "z": 25.49 - }, - "A6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 74.26, - "z": 25.49 - }, - "B6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 65.26, - "z": 25.49 - }, - "C6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 56.26, - "z": 25.49 - }, - "D6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 47.26, - "z": 25.49 - }, - "E6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 38.26, - "z": 25.49 - }, - "F6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 29.26, - "z": 25.49 - }, - "G6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 20.26, - "z": 25.49 - }, - "H6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.36, - "y": 11.26, - "z": 25.49 - }, - "A7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 74.26, - "z": 25.49 - }, - "B7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 65.26, - "z": 25.49 - }, - "C7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 56.26, - "z": 25.49 - }, - "D7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 47.26, - "z": 25.49 - }, - "E7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 38.26, - "z": 25.49 - }, - "F7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 29.26, - "z": 25.49 - }, - "G7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 20.26, - "z": 25.49 - }, - "H7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.36, - "y": 11.26, - "z": 25.49 - }, - "A8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 74.26, - "z": 25.49 - }, - "B8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 65.26, - "z": 25.49 - }, - "C8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 56.26, - "z": 25.49 - }, - "D8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 47.26, - "z": 25.49 - }, - "E8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 38.26, - "z": 25.49 - }, - "F8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 29.26, - "z": 25.49 - }, - "G8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 20.26, - "z": 25.49 - }, - "H8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.36, - "y": 11.26, - "z": 25.49 - }, - "A9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 74.26, - "z": 25.49 - }, - "B9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 65.26, - "z": 25.49 - }, - "C9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 56.26, - "z": 25.49 - }, - "D9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 47.26, - "z": 25.49 - }, - "E9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 38.26, - "z": 25.49 - }, - "F9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 29.26, - "z": 25.49 - }, - "G9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 20.26, - "z": 25.49 - }, - "H9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.36, - "y": 11.26, - "z": 25.49 - }, - "A10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 74.26, - "z": 25.49 - }, - "B10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 65.26, - "z": 25.49 - }, - "C10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 56.26, - "z": 25.49 - }, - "D10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 47.26, - "z": 25.49 - }, - "E10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 38.26, - "z": 25.49 - }, - "F10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 29.26, - "z": 25.49 - }, - "G10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 20.26, - "z": 25.49 - }, - "H10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.36, - "y": 11.26, - "z": 25.49 - }, - "A11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 74.26, - "z": 25.49 - }, - "B11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 65.26, - "z": 25.49 - }, - "C11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 56.26, - "z": 25.49 - }, - "D11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 47.26, - "z": 25.49 - }, - "E11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 38.26, - "z": 25.49 - }, - "F11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 29.26, - "z": 25.49 - }, - "G11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 20.26, - "z": 25.49 - }, - "H11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.36, - "y": 11.26, - "z": 25.49 - }, - "A12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 74.26, - "z": 25.49 - }, - "B12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 65.26, - "z": 25.49 - }, - "C12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 56.26, - "z": 25.49 - }, - "D12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 47.26, - "z": 25.49 - }, - "E12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 38.26, - "z": 25.49 - }, - "F12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 29.26, - "z": 25.49 - }, - "G12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 20.26, - "z": 25.49 - }, - "H12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.36, - "y": 11.26, - "z": 25.49 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 39.2, - "tipOverlap": 3.29, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_filtertiprack_20ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json deleted file mode 100644 index e8f2570517c..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons 96 Flat Bottom Heater-Shaker Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 7.9 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_flat_bottom_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json b/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json deleted file mode 100644 index 3a687572d17..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/draft.json +++ /dev/null @@ -1,1027 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 96 Flat Bottom Heater-Shaker Adapter with NEST 96 Well Plate 200 µL Flat", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 15.5 - }, - "wells": { - "A1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 74.18, - "z": 4.55 - }, - "B1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 65.18, - "z": 4.55 - }, - "C1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 56.18, - "z": 4.55 - }, - "D1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 47.18, - "z": 4.55 - }, - "E1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 38.18, - "z": 4.55 - }, - "F1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 29.18, - "z": 4.55 - }, - "G1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 20.18, - "z": 4.55 - }, - "H1": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 14.28, - "y": 11.18, - "z": 4.55 - }, - "A2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 74.18, - "z": 4.55 - }, - "B2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 65.18, - "z": 4.55 - }, - "C2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 56.18, - "z": 4.55 - }, - "D2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 47.18, - "z": 4.55 - }, - "E2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 38.18, - "z": 4.55 - }, - "F2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 29.18, - "z": 4.55 - }, - "G2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 20.18, - "z": 4.55 - }, - "H2": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 23.28, - "y": 11.18, - "z": 4.55 - }, - "A3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 74.18, - "z": 4.55 - }, - "B3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 65.18, - "z": 4.55 - }, - "C3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 56.18, - "z": 4.55 - }, - "D3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 47.18, - "z": 4.55 - }, - "E3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 38.18, - "z": 4.55 - }, - "F3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 29.18, - "z": 4.55 - }, - "G3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 20.18, - "z": 4.55 - }, - "H3": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 32.28, - "y": 11.18, - "z": 4.55 - }, - "A4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 74.18, - "z": 4.55 - }, - "B4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 65.18, - "z": 4.55 - }, - "C4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 56.18, - "z": 4.55 - }, - "D4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 47.18, - "z": 4.55 - }, - "E4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 38.18, - "z": 4.55 - }, - "F4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 29.18, - "z": 4.55 - }, - "G4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 20.18, - "z": 4.55 - }, - "H4": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 41.28, - "y": 11.18, - "z": 4.55 - }, - "A5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 74.18, - "z": 4.55 - }, - "B5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 65.18, - "z": 4.55 - }, - "C5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 56.18, - "z": 4.55 - }, - "D5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 47.18, - "z": 4.55 - }, - "E5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 38.18, - "z": 4.55 - }, - "F5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 29.18, - "z": 4.55 - }, - "G5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 20.18, - "z": 4.55 - }, - "H5": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 50.28, - "y": 11.18, - "z": 4.55 - }, - "A6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 74.18, - "z": 4.55 - }, - "B6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 65.18, - "z": 4.55 - }, - "C6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 56.18, - "z": 4.55 - }, - "D6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 47.18, - "z": 4.55 - }, - "E6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 38.18, - "z": 4.55 - }, - "F6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 29.18, - "z": 4.55 - }, - "G6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 20.18, - "z": 4.55 - }, - "H6": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 59.28, - "y": 11.18, - "z": 4.55 - }, - "A7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 74.18, - "z": 4.55 - }, - "B7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 65.18, - "z": 4.55 - }, - "C7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 56.18, - "z": 4.55 - }, - "D7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 47.18, - "z": 4.55 - }, - "E7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 38.18, - "z": 4.55 - }, - "F7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 29.18, - "z": 4.55 - }, - "G7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 20.18, - "z": 4.55 - }, - "H7": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 68.28, - "y": 11.18, - "z": 4.55 - }, - "A8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 74.18, - "z": 4.55 - }, - "B8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 65.18, - "z": 4.55 - }, - "C8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 56.18, - "z": 4.55 - }, - "D8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 47.18, - "z": 4.55 - }, - "E8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 38.18, - "z": 4.55 - }, - "F8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 29.18, - "z": 4.55 - }, - "G8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 20.18, - "z": 4.55 - }, - "H8": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 77.28, - "y": 11.18, - "z": 4.55 - }, - "A9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 74.18, - "z": 4.55 - }, - "B9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 65.18, - "z": 4.55 - }, - "C9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 56.18, - "z": 4.55 - }, - "D9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 47.18, - "z": 4.55 - }, - "E9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 38.18, - "z": 4.55 - }, - "F9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 29.18, - "z": 4.55 - }, - "G9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 20.18, - "z": 4.55 - }, - "H9": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 86.28, - "y": 11.18, - "z": 4.55 - }, - "A10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 74.18, - "z": 4.55 - }, - "B10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 65.18, - "z": 4.55 - }, - "C10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 56.18, - "z": 4.55 - }, - "D10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 47.18, - "z": 4.55 - }, - "E10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 38.18, - "z": 4.55 - }, - "F10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 29.18, - "z": 4.55 - }, - "G10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 20.18, - "z": 4.55 - }, - "H10": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 95.28, - "y": 11.18, - "z": 4.55 - }, - "A11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 74.18, - "z": 4.55 - }, - "B11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 65.18, - "z": 4.55 - }, - "C11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 56.18, - "z": 4.55 - }, - "D11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 47.18, - "z": 4.55 - }, - "E11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 38.18, - "z": 4.55 - }, - "F11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 29.18, - "z": 4.55 - }, - "G11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 20.18, - "z": 4.55 - }, - "H11": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 104.28, - "y": 11.18, - "z": 4.55 - }, - "A12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 74.18, - "z": 4.55 - }, - "B12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 65.18, - "z": 4.55 - }, - "C12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 56.18, - "z": 4.55 - }, - "D12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 47.18, - "z": 4.55 - }, - "E12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 38.18, - "z": 4.55 - }, - "F12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 29.18, - "z": 4.55 - }, - "G12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 20.18, - "z": 4.55 - }, - "H12": { - "depth": 10.8, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 6.85, - "x": 113.28, - "y": 11.18, - "z": 4.55 - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 96 Well Plate 200 µL Flat", - "displayCategory": "wellPlate", - "wellBottomShape": "flat" - }, - "brand": { - "brand": "NEST", - "brandId": ["701011", "701001"], - "links": [ - "https://www.nest-biotech.com/cell-culture-plates/59415537.html" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json deleted file mode 100644 index e6062d94b1c..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter/draft.json +++ /dev/null @@ -1,1032 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 13.85 - }, - "wells": { - "A1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 69, - "z": 1.85 - }, - "B1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 60, - "z": 1.85 - }, - "C1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 51, - "z": 1.85 - }, - "D1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 42, - "z": 1.85 - }, - "E1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 33, - "z": 1.85 - }, - "F1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 24, - "z": 1.85 - }, - "G1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 15, - "z": 1.85 - }, - "H1": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 6, - "y": 6, - "z": 1.85 - }, - "A2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 69, - "z": 1.85 - }, - "B2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 60, - "z": 1.85 - }, - "C2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 51, - "z": 1.85 - }, - "D2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 42, - "z": 1.85 - }, - "E2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 33, - "z": 1.85 - }, - "F2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 24, - "z": 1.85 - }, - "G2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 15, - "z": 1.85 - }, - "H2": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 15, - "y": 6, - "z": 1.85 - }, - "A3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 69, - "z": 1.85 - }, - "B3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 60, - "z": 1.85 - }, - "C3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 51, - "z": 1.85 - }, - "D3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 42, - "z": 1.85 - }, - "E3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 33, - "z": 1.85 - }, - "F3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 24, - "z": 1.85 - }, - "G3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 15, - "z": 1.85 - }, - "H3": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 24, - "y": 6, - "z": 1.85 - }, - "A4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 69, - "z": 1.85 - }, - "B4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 60, - "z": 1.85 - }, - "C4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 51, - "z": 1.85 - }, - "D4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 42, - "z": 1.85 - }, - "E4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 33, - "z": 1.85 - }, - "F4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 24, - "z": 1.85 - }, - "G4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 15, - "z": 1.85 - }, - "H4": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 33, - "y": 6, - "z": 1.85 - }, - "A5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 69, - "z": 1.85 - }, - "B5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 60, - "z": 1.85 - }, - "C5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 51, - "z": 1.85 - }, - "D5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 42, - "z": 1.85 - }, - "E5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 33, - "z": 1.85 - }, - "F5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 24, - "z": 1.85 - }, - "G5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 15, - "z": 1.85 - }, - "H5": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 42, - "y": 6, - "z": 1.85 - }, - "A6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 69, - "z": 1.85 - }, - "B6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 60, - "z": 1.85 - }, - "C6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 51, - "z": 1.85 - }, - "D6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 42, - "z": 1.85 - }, - "E6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 33, - "z": 1.85 - }, - "F6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 24, - "z": 1.85 - }, - "G6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 15, - "z": 1.85 - }, - "H6": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 51, - "y": 6, - "z": 1.85 - }, - "A7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 69, - "z": 1.85 - }, - "B7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 60, - "z": 1.85 - }, - "C7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 51, - "z": 1.85 - }, - "D7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 42, - "z": 1.85 - }, - "E7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 33, - "z": 1.85 - }, - "F7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 24, - "z": 1.85 - }, - "G7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 15, - "z": 1.85 - }, - "H7": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 60, - "y": 6, - "z": 1.85 - }, - "A8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 69, - "z": 1.85 - }, - "B8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 60, - "z": 1.85 - }, - "C8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 51, - "z": 1.85 - }, - "D8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 42, - "z": 1.85 - }, - "E8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 33, - "z": 1.85 - }, - "F8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 24, - "z": 1.85 - }, - "G8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 15, - "z": 1.85 - }, - "H8": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 69, - "y": 6, - "z": 1.85 - }, - "A9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 69, - "z": 1.85 - }, - "B9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 60, - "z": 1.85 - }, - "C9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 51, - "z": 1.85 - }, - "D9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 42, - "z": 1.85 - }, - "E9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 33, - "z": 1.85 - }, - "F9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 24, - "z": 1.85 - }, - "G9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 15, - "z": 1.85 - }, - "H9": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 78, - "y": 6, - "z": 1.85 - }, - "A10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 69, - "z": 1.85 - }, - "B10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 60, - "z": 1.85 - }, - "C10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 51, - "z": 1.85 - }, - "D10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 42, - "z": 1.85 - }, - "E10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 33, - "z": 1.85 - }, - "F10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 24, - "z": 1.85 - }, - "G10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 15, - "z": 1.85 - }, - "H10": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 87, - "y": 6, - "z": 1.85 - }, - "A11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 69, - "z": 1.85 - }, - "B11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 60, - "z": 1.85 - }, - "C11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 51, - "z": 1.85 - }, - "D11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 42, - "z": 1.85 - }, - "E11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 33, - "z": 1.85 - }, - "F11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 24, - "z": 1.85 - }, - "G11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 15, - "z": 1.85 - }, - "H11": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 96, - "y": 6, - "z": 1.85 - }, - "A12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 69, - "z": 1.85 - }, - "B12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 60, - "z": 1.85 - }, - "C12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 51, - "z": 1.85 - }, - "D12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 42, - "z": 1.85 - }, - "E12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 33, - "z": 1.85 - }, - "F12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 24, - "z": 1.85 - }, - "G12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 15, - "z": 1.85 - }, - "H12": { - "depth": 12, - "shape": "circular", - "diameter": 5.64, - "totalLiquidVolume": 0, - "x": 105, - "y": 6, - "z": 1.85 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_pcr_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - }, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 1.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json deleted file mode 100644 index 7c00586b016..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/draft.json +++ /dev/null @@ -1,1027 +0,0 @@ -{ - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "parameters": { - "loadName": "opentrons_96_pcr_adapter_armadillo_wellplate_200ul", - "quirks": ["gripperIncompatible"], - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": false - }, - "metadata": { - "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with Armadillo Well Plate 200 µl", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "µL", - "tags": [] - }, - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 18.9 - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "wells": { - "A1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 74.24, - "z": 3.95 - }, - "B1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 65.24, - "z": 3.95 - }, - "C1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 56.24, - "z": 3.95 - }, - "D1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 47.24, - "z": 3.95 - }, - "E1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 38.24, - "z": 3.95 - }, - "F1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 29.24, - "z": 3.95 - }, - "G1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 20.24, - "z": 3.95 - }, - "H1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 11.24, - "z": 3.95 - }, - "A2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 74.24, - "z": 3.95 - }, - "B2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 65.24, - "z": 3.95 - }, - "C2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 56.24, - "z": 3.95 - }, - "D2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 47.24, - "z": 3.95 - }, - "E2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 38.24, - "z": 3.95 - }, - "F2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 29.24, - "z": 3.95 - }, - "G2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 20.24, - "z": 3.95 - }, - "H2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 11.24, - "z": 3.95 - }, - "A3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 74.24, - "z": 3.95 - }, - "B3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 65.24, - "z": 3.95 - }, - "C3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 56.24, - "z": 3.95 - }, - "D3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 47.24, - "z": 3.95 - }, - "E3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 38.24, - "z": 3.95 - }, - "F3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 29.24, - "z": 3.95 - }, - "G3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 20.24, - "z": 3.95 - }, - "H3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 11.24, - "z": 3.95 - }, - "A4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 74.24, - "z": 3.95 - }, - "B4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 65.24, - "z": 3.95 - }, - "C4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 56.24, - "z": 3.95 - }, - "D4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 47.24, - "z": 3.95 - }, - "E4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 38.24, - "z": 3.95 - }, - "F4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 29.24, - "z": 3.95 - }, - "G4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 20.24, - "z": 3.95 - }, - "H4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 11.24, - "z": 3.95 - }, - "A5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 74.24, - "z": 3.95 - }, - "B5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 65.24, - "z": 3.95 - }, - "C5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 56.24, - "z": 3.95 - }, - "D5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 47.24, - "z": 3.95 - }, - "E5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 38.24, - "z": 3.95 - }, - "F5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 29.24, - "z": 3.95 - }, - "G5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 20.24, - "z": 3.95 - }, - "H5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 11.24, - "z": 3.95 - }, - "A6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 74.24, - "z": 3.95 - }, - "B6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 65.24, - "z": 3.95 - }, - "C6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 56.24, - "z": 3.95 - }, - "D6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 47.24, - "z": 3.95 - }, - "E6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 38.24, - "z": 3.95 - }, - "F6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 29.24, - "z": 3.95 - }, - "G6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 20.24, - "z": 3.95 - }, - "H6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 11.24, - "z": 3.95 - }, - "A7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 74.24, - "z": 3.95 - }, - "B7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 65.24, - "z": 3.95 - }, - "C7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 56.24, - "z": 3.95 - }, - "D7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 47.24, - "z": 3.95 - }, - "E7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 38.24, - "z": 3.95 - }, - "F7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 29.24, - "z": 3.95 - }, - "G7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 20.24, - "z": 3.95 - }, - "H7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 11.24, - "z": 3.95 - }, - "A8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 74.24, - "z": 3.95 - }, - "B8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 65.24, - "z": 3.95 - }, - "C8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 56.24, - "z": 3.95 - }, - "D8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 47.24, - "z": 3.95 - }, - "E8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 38.24, - "z": 3.95 - }, - "F8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 29.24, - "z": 3.95 - }, - "G8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 20.24, - "z": 3.95 - }, - "H8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 11.24, - "z": 3.95 - }, - "A9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 74.24, - "z": 3.95 - }, - "B9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 65.24, - "z": 3.95 - }, - "C9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 56.24, - "z": 3.95 - }, - "D9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 47.24, - "z": 3.95 - }, - "E9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 38.24, - "z": 3.95 - }, - "F9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 29.24, - "z": 3.95 - }, - "G9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 20.24, - "z": 3.95 - }, - "H9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 11.24, - "z": 3.95 - }, - "A10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 74.24, - "z": 3.95 - }, - "B10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 65.24, - "z": 3.95 - }, - "C10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 56.24, - "z": 3.95 - }, - "D10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 47.24, - "z": 3.95 - }, - "E10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 38.24, - "z": 3.95 - }, - "F10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 29.24, - "z": 3.95 - }, - "G10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 20.24, - "z": 3.95 - }, - "H10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 11.24, - "z": 3.95 - }, - "A11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 74.24, - "z": 3.95 - }, - "B11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 65.24, - "z": 3.95 - }, - "C11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 56.24, - "z": 3.95 - }, - "D11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 47.24, - "z": 3.95 - }, - "E11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 38.24, - "z": 3.95 - }, - "F11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 29.24, - "z": 3.95 - }, - "G11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 20.24, - "z": 3.95 - }, - "H11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 11.24, - "z": 3.95 - }, - "A12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 74.24, - "z": 3.95 - }, - "B12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 65.24, - "z": 3.95 - }, - "C12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 56.24, - "z": 3.95 - }, - "D12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 47.24, - "z": 3.95 - }, - "E12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 38.24, - "z": 3.95 - }, - "F12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 29.24, - "z": 3.95 - }, - "G12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 20.24, - "z": 3.95 - }, - "H12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 11.24, - "z": 3.95 - } - }, - "groups": [ - { - "metadata": { - "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", - "displayCategory": "wellPlate", - "wellBottomShape": "v" - }, - "brand": { - "brand": "Thermo Scientific", - "brandId": ["AB2396"], - "links": [ - "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ] -} diff --git a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json deleted file mode 100644 index dff19df1d4c..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/draft.json +++ /dev/null @@ -1,1025 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 µl", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 19.35 - }, - "wells": { - "A1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 74.24, - "z": 3.57 - }, - "B1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 65.24, - "z": 3.57 - }, - "C1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 56.24, - "z": 3.57 - }, - "D1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 47.24, - "z": 3.57 - }, - "E1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 38.24, - "z": 3.57 - }, - "F1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 29.24, - "z": 3.57 - }, - "G1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 20.24, - "z": 3.57 - }, - "H1": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 14.38, - "y": 11.24, - "z": 3.57 - }, - "A2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 74.24, - "z": 3.57 - }, - "B2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 65.24, - "z": 3.57 - }, - "C2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 56.24, - "z": 3.57 - }, - "D2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 47.24, - "z": 3.57 - }, - "E2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 38.24, - "z": 3.57 - }, - "F2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 29.24, - "z": 3.57 - }, - "G2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 20.24, - "z": 3.57 - }, - "H2": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 23.38, - "y": 11.24, - "z": 3.57 - }, - "A3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 74.24, - "z": 3.57 - }, - "B3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 65.24, - "z": 3.57 - }, - "C3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 56.24, - "z": 3.57 - }, - "D3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 47.24, - "z": 3.57 - }, - "E3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 38.24, - "z": 3.57 - }, - "F3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 29.24, - "z": 3.57 - }, - "G3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 20.24, - "z": 3.57 - }, - "H3": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 32.38, - "y": 11.24, - "z": 3.57 - }, - "A4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 74.24, - "z": 3.57 - }, - "B4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 65.24, - "z": 3.57 - }, - "C4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 56.24, - "z": 3.57 - }, - "D4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 47.24, - "z": 3.57 - }, - "E4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 38.24, - "z": 3.57 - }, - "F4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 29.24, - "z": 3.57 - }, - "G4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 20.24, - "z": 3.57 - }, - "H4": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 41.38, - "y": 11.24, - "z": 3.57 - }, - "A5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 74.24, - "z": 3.57 - }, - "B5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 65.24, - "z": 3.57 - }, - "C5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 56.24, - "z": 3.57 - }, - "D5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 47.24, - "z": 3.57 - }, - "E5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 38.24, - "z": 3.57 - }, - "F5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 29.24, - "z": 3.57 - }, - "G5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 20.24, - "z": 3.57 - }, - "H5": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 50.38, - "y": 11.24, - "z": 3.57 - }, - "A6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 74.24, - "z": 3.57 - }, - "B6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 65.24, - "z": 3.57 - }, - "C6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 56.24, - "z": 3.57 - }, - "D6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 47.24, - "z": 3.57 - }, - "E6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 38.24, - "z": 3.57 - }, - "F6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 29.24, - "z": 3.57 - }, - "G6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 20.24, - "z": 3.57 - }, - "H6": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 59.38, - "y": 11.24, - "z": 3.57 - }, - "A7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 74.24, - "z": 3.57 - }, - "B7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 65.24, - "z": 3.57 - }, - "C7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 56.24, - "z": 3.57 - }, - "D7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 47.24, - "z": 3.57 - }, - "E7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 38.24, - "z": 3.57 - }, - "F7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 29.24, - "z": 3.57 - }, - "G7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 20.24, - "z": 3.57 - }, - "H7": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 68.38, - "y": 11.24, - "z": 3.57 - }, - "A8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 74.24, - "z": 3.57 - }, - "B8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 65.24, - "z": 3.57 - }, - "C8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 56.24, - "z": 3.57 - }, - "D8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 47.24, - "z": 3.57 - }, - "E8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 38.24, - "z": 3.57 - }, - "F8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 29.24, - "z": 3.57 - }, - "G8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 20.24, - "z": 3.57 - }, - "H8": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 77.38, - "y": 11.24, - "z": 3.57 - }, - "A9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 74.24, - "z": 3.57 - }, - "B9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 65.24, - "z": 3.57 - }, - "C9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 56.24, - "z": 3.57 - }, - "D9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 47.24, - "z": 3.57 - }, - "E9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 38.24, - "z": 3.57 - }, - "F9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 29.24, - "z": 3.57 - }, - "G9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 20.24, - "z": 3.57 - }, - "H9": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 86.38, - "y": 11.24, - "z": 3.57 - }, - "A10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 74.24, - "z": 3.57 - }, - "B10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 65.24, - "z": 3.57 - }, - "C10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 56.24, - "z": 3.57 - }, - "D10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 47.24, - "z": 3.57 - }, - "E10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 38.24, - "z": 3.57 - }, - "F10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 29.24, - "z": 3.57 - }, - "G10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 20.24, - "z": 3.57 - }, - "H10": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 95.38, - "y": 11.24, - "z": 3.57 - }, - "A11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 74.24, - "z": 3.57 - }, - "B11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 65.24, - "z": 3.57 - }, - "C11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 56.24, - "z": 3.57 - }, - "D11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 47.24, - "z": 3.57 - }, - "E11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 38.24, - "z": 3.57 - }, - "F11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 29.24, - "z": 3.57 - }, - "G11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 20.24, - "z": 3.57 - }, - "H11": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 104.38, - "y": 11.24, - "z": 3.57 - }, - "A12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 74.24, - "z": 3.57 - }, - "B12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 65.24, - "z": 3.57 - }, - "C12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 56.24, - "z": 3.57 - }, - "D12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 47.24, - "z": 3.57 - }, - "E12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 38.24, - "z": 3.57 - }, - "F12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 29.24, - "z": 3.57 - }, - "G12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 20.24, - "z": 3.57 - }, - "H12": { - "depth": 14.78, - "totalLiquidVolume": 100, - "shape": "circular", - "diameter": 5.34, - "x": 113.38, - "y": 11.24, - "z": 3.57 - } - }, - "groups": [ - { - "metadata": { - "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", - "displayCategory": "wellPlate", - "wellBottomShape": "v" - }, - "brand": { - "brand": "NEST", - "brandId": ["402501"], - "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json deleted file mode 100644 index 8326d858565..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_tiprack_1000ul/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-1000ul-tips" - ] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Tip Rack 1000 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 97.47 - }, - "wells": { - "A1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 74.24, - "z": 9.47 - }, - "B1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 65.24, - "z": 9.47 - }, - "C1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 56.24, - "z": 9.47 - }, - "D1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 47.24, - "z": 9.47 - }, - "E1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 38.24, - "z": 9.47 - }, - "F1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 29.24, - "z": 9.47 - }, - "G1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 20.24, - "z": 9.47 - }, - "H1": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 11.24, - "z": 9.47 - }, - "A2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 74.24, - "z": 9.47 - }, - "B2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 65.24, - "z": 9.47 - }, - "C2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 56.24, - "z": 9.47 - }, - "D2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 47.24, - "z": 9.47 - }, - "E2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 38.24, - "z": 9.47 - }, - "F2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 29.24, - "z": 9.47 - }, - "G2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 20.24, - "z": 9.47 - }, - "H2": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 11.24, - "z": 9.47 - }, - "A3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 74.24, - "z": 9.47 - }, - "B3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 65.24, - "z": 9.47 - }, - "C3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 56.24, - "z": 9.47 - }, - "D3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 47.24, - "z": 9.47 - }, - "E3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 38.24, - "z": 9.47 - }, - "F3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 29.24, - "z": 9.47 - }, - "G3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 20.24, - "z": 9.47 - }, - "H3": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 11.24, - "z": 9.47 - }, - "A4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 74.24, - "z": 9.47 - }, - "B4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 65.24, - "z": 9.47 - }, - "C4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 56.24, - "z": 9.47 - }, - "D4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 47.24, - "z": 9.47 - }, - "E4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 38.24, - "z": 9.47 - }, - "F4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 29.24, - "z": 9.47 - }, - "G4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 20.24, - "z": 9.47 - }, - "H4": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 11.24, - "z": 9.47 - }, - "A5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 74.24, - "z": 9.47 - }, - "B5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 65.24, - "z": 9.47 - }, - "C5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 56.24, - "z": 9.47 - }, - "D5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 47.24, - "z": 9.47 - }, - "E5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 38.24, - "z": 9.47 - }, - "F5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 29.24, - "z": 9.47 - }, - "G5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 20.24, - "z": 9.47 - }, - "H5": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 11.24, - "z": 9.47 - }, - "A6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 74.24, - "z": 9.47 - }, - "B6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 65.24, - "z": 9.47 - }, - "C6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 56.24, - "z": 9.47 - }, - "D6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 47.24, - "z": 9.47 - }, - "E6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 38.24, - "z": 9.47 - }, - "F6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 29.24, - "z": 9.47 - }, - "G6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 20.24, - "z": 9.47 - }, - "H6": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 11.24, - "z": 9.47 - }, - "A7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 74.24, - "z": 9.47 - }, - "B7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 65.24, - "z": 9.47 - }, - "C7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 56.24, - "z": 9.47 - }, - "D7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 47.24, - "z": 9.47 - }, - "E7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 38.24, - "z": 9.47 - }, - "F7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 29.24, - "z": 9.47 - }, - "G7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 20.24, - "z": 9.47 - }, - "H7": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 11.24, - "z": 9.47 - }, - "A8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 74.24, - "z": 9.47 - }, - "B8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 65.24, - "z": 9.47 - }, - "C8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 56.24, - "z": 9.47 - }, - "D8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 47.24, - "z": 9.47 - }, - "E8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 38.24, - "z": 9.47 - }, - "F8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 29.24, - "z": 9.47 - }, - "G8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 20.24, - "z": 9.47 - }, - "H8": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 11.24, - "z": 9.47 - }, - "A9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 74.24, - "z": 9.47 - }, - "B9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 65.24, - "z": 9.47 - }, - "C9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 56.24, - "z": 9.47 - }, - "D9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 47.24, - "z": 9.47 - }, - "E9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 38.24, - "z": 9.47 - }, - "F9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 29.24, - "z": 9.47 - }, - "G9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 20.24, - "z": 9.47 - }, - "H9": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 11.24, - "z": 9.47 - }, - "A10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 74.24, - "z": 9.47 - }, - "B10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 65.24, - "z": 9.47 - }, - "C10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 56.24, - "z": 9.47 - }, - "D10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 47.24, - "z": 9.47 - }, - "E10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 38.24, - "z": 9.47 - }, - "F10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 29.24, - "z": 9.47 - }, - "G10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 20.24, - "z": 9.47 - }, - "H10": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 11.24, - "z": 9.47 - }, - "A11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 74.24, - "z": 9.47 - }, - "B11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 65.24, - "z": 9.47 - }, - "C11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 56.24, - "z": 9.47 - }, - "D11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 47.24, - "z": 9.47 - }, - "E11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 38.24, - "z": 9.47 - }, - "F11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 29.24, - "z": 9.47 - }, - "G11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 20.24, - "z": 9.47 - }, - "H11": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 11.24, - "z": 9.47 - }, - "A12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 74.24, - "z": 9.47 - }, - "B12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 65.24, - "z": 9.47 - }, - "C12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 56.24, - "z": 9.47 - }, - "D12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 47.24, - "z": 9.47 - }, - "E12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 38.24, - "z": 9.47 - }, - "F12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 29.24, - "z": 9.47 - }, - "G12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 20.24, - "z": 9.47 - }, - "H12": { - "depth": 88, - "shape": "circular", - "diameter": 7.23, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 11.24, - "z": 9.47 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 88, - "tipOverlap": 7.95, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_tiprack_1000ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json deleted file mode 100644 index adbd249302d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_tiprack_10ul/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" - ] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Tip Rack 10 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.69 - }, - "wells": { - "A1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 74.24, - "z": 25.49 - }, - "B1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 65.24, - "z": 25.49 - }, - "C1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 56.24, - "z": 25.49 - }, - "D1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 47.24, - "z": 25.49 - }, - "E1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 38.24, - "z": 25.49 - }, - "F1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 29.24, - "z": 25.49 - }, - "G1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 20.24, - "z": 25.49 - }, - "H1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 14.38, - "y": 11.24, - "z": 25.49 - }, - "A2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 74.24, - "z": 25.49 - }, - "B2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 65.24, - "z": 25.49 - }, - "C2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 56.24, - "z": 25.49 - }, - "D2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 47.24, - "z": 25.49 - }, - "E2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 38.24, - "z": 25.49 - }, - "F2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 29.24, - "z": 25.49 - }, - "G2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 20.24, - "z": 25.49 - }, - "H2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 23.38, - "y": 11.24, - "z": 25.49 - }, - "A3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 74.24, - "z": 25.49 - }, - "B3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 65.24, - "z": 25.49 - }, - "C3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 56.24, - "z": 25.49 - }, - "D3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 47.24, - "z": 25.49 - }, - "E3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 38.24, - "z": 25.49 - }, - "F3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 29.24, - "z": 25.49 - }, - "G3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 20.24, - "z": 25.49 - }, - "H3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 32.38, - "y": 11.24, - "z": 25.49 - }, - "A4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 74.24, - "z": 25.49 - }, - "B4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 65.24, - "z": 25.49 - }, - "C4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 56.24, - "z": 25.49 - }, - "D4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 47.24, - "z": 25.49 - }, - "E4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 38.24, - "z": 25.49 - }, - "F4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 29.24, - "z": 25.49 - }, - "G4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 20.24, - "z": 25.49 - }, - "H4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 41.38, - "y": 11.24, - "z": 25.49 - }, - "A5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 74.24, - "z": 25.49 - }, - "B5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 65.24, - "z": 25.49 - }, - "C5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 56.24, - "z": 25.49 - }, - "D5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 47.24, - "z": 25.49 - }, - "E5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 38.24, - "z": 25.49 - }, - "F5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 29.24, - "z": 25.49 - }, - "G5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 20.24, - "z": 25.49 - }, - "H5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 50.38, - "y": 11.24, - "z": 25.49 - }, - "A6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 74.24, - "z": 25.49 - }, - "B6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 65.24, - "z": 25.49 - }, - "C6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 56.24, - "z": 25.49 - }, - "D6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 47.24, - "z": 25.49 - }, - "E6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 38.24, - "z": 25.49 - }, - "F6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 29.24, - "z": 25.49 - }, - "G6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 20.24, - "z": 25.49 - }, - "H6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 59.38, - "y": 11.24, - "z": 25.49 - }, - "A7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 74.24, - "z": 25.49 - }, - "B7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 65.24, - "z": 25.49 - }, - "C7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 56.24, - "z": 25.49 - }, - "D7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 47.24, - "z": 25.49 - }, - "E7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 38.24, - "z": 25.49 - }, - "F7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 29.24, - "z": 25.49 - }, - "G7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 20.24, - "z": 25.49 - }, - "H7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 68.38, - "y": 11.24, - "z": 25.49 - }, - "A8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 74.24, - "z": 25.49 - }, - "B8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 65.24, - "z": 25.49 - }, - "C8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 56.24, - "z": 25.49 - }, - "D8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 47.24, - "z": 25.49 - }, - "E8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 38.24, - "z": 25.49 - }, - "F8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 29.24, - "z": 25.49 - }, - "G8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 20.24, - "z": 25.49 - }, - "H8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 77.38, - "y": 11.24, - "z": 25.49 - }, - "A9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 74.24, - "z": 25.49 - }, - "B9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 65.24, - "z": 25.49 - }, - "C9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 56.24, - "z": 25.49 - }, - "D9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 47.24, - "z": 25.49 - }, - "E9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 38.24, - "z": 25.49 - }, - "F9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 29.24, - "z": 25.49 - }, - "G9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 20.24, - "z": 25.49 - }, - "H9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 86.38, - "y": 11.24, - "z": 25.49 - }, - "A10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 74.24, - "z": 25.49 - }, - "B10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 65.24, - "z": 25.49 - }, - "C10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 56.24, - "z": 25.49 - }, - "D10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 47.24, - "z": 25.49 - }, - "E10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 38.24, - "z": 25.49 - }, - "F10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 29.24, - "z": 25.49 - }, - "G10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 20.24, - "z": 25.49 - }, - "H10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 95.38, - "y": 11.24, - "z": 25.49 - }, - "A11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 74.24, - "z": 25.49 - }, - "B11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 65.24, - "z": 25.49 - }, - "C11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 56.24, - "z": 25.49 - }, - "D11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 47.24, - "z": 25.49 - }, - "E11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 38.24, - "z": 25.49 - }, - "F11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 29.24, - "z": 25.49 - }, - "G11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 20.24, - "z": 25.49 - }, - "H11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 104.38, - "y": 11.24, - "z": 25.49 - }, - "A12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 74.24, - "z": 25.49 - }, - "B12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 65.24, - "z": 25.49 - }, - "C12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 56.24, - "z": 25.49 - }, - "D12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 47.24, - "z": 25.49 - }, - "E12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 38.24, - "z": 25.49 - }, - "F12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 29.24, - "z": 25.49 - }, - "G12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 20.24, - "z": 25.49 - }, - "H12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 10, - "x": 113.38, - "y": 11.24, - "z": 25.49 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 39.2, - "tipOverlap": 3.29, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_tiprack_10ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json deleted file mode 100644 index 69eee2bea56..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_tiprack_20ul/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" - ] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.69 - }, - "wells": { - "A1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 74.24, - "z": 25.49 - }, - "B1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 65.24, - "z": 25.49 - }, - "C1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 56.24, - "z": 25.49 - }, - "D1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 47.24, - "z": 25.49 - }, - "E1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 38.24, - "z": 25.49 - }, - "F1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 29.24, - "z": 25.49 - }, - "G1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 20.24, - "z": 25.49 - }, - "H1": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 11.24, - "z": 25.49 - }, - "A2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 74.24, - "z": 25.49 - }, - "B2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 65.24, - "z": 25.49 - }, - "C2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 56.24, - "z": 25.49 - }, - "D2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 47.24, - "z": 25.49 - }, - "E2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 38.24, - "z": 25.49 - }, - "F2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 29.24, - "z": 25.49 - }, - "G2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 20.24, - "z": 25.49 - }, - "H2": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 11.24, - "z": 25.49 - }, - "A3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 74.24, - "z": 25.49 - }, - "B3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 65.24, - "z": 25.49 - }, - "C3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 56.24, - "z": 25.49 - }, - "D3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 47.24, - "z": 25.49 - }, - "E3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 38.24, - "z": 25.49 - }, - "F3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 29.24, - "z": 25.49 - }, - "G3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 20.24, - "z": 25.49 - }, - "H3": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 11.24, - "z": 25.49 - }, - "A4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 74.24, - "z": 25.49 - }, - "B4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 65.24, - "z": 25.49 - }, - "C4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 56.24, - "z": 25.49 - }, - "D4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 47.24, - "z": 25.49 - }, - "E4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 38.24, - "z": 25.49 - }, - "F4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 29.24, - "z": 25.49 - }, - "G4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 20.24, - "z": 25.49 - }, - "H4": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 11.24, - "z": 25.49 - }, - "A5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 74.24, - "z": 25.49 - }, - "B5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 65.24, - "z": 25.49 - }, - "C5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 56.24, - "z": 25.49 - }, - "D5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 47.24, - "z": 25.49 - }, - "E5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 38.24, - "z": 25.49 - }, - "F5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 29.24, - "z": 25.49 - }, - "G5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 20.24, - "z": 25.49 - }, - "H5": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 11.24, - "z": 25.49 - }, - "A6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 74.24, - "z": 25.49 - }, - "B6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 65.24, - "z": 25.49 - }, - "C6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 56.24, - "z": 25.49 - }, - "D6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 47.24, - "z": 25.49 - }, - "E6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 38.24, - "z": 25.49 - }, - "F6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 29.24, - "z": 25.49 - }, - "G6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 20.24, - "z": 25.49 - }, - "H6": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 11.24, - "z": 25.49 - }, - "A7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 74.24, - "z": 25.49 - }, - "B7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 65.24, - "z": 25.49 - }, - "C7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 56.24, - "z": 25.49 - }, - "D7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 47.24, - "z": 25.49 - }, - "E7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 38.24, - "z": 25.49 - }, - "F7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 29.24, - "z": 25.49 - }, - "G7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 20.24, - "z": 25.49 - }, - "H7": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 11.24, - "z": 25.49 - }, - "A8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 74.24, - "z": 25.49 - }, - "B8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 65.24, - "z": 25.49 - }, - "C8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 56.24, - "z": 25.49 - }, - "D8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 47.24, - "z": 25.49 - }, - "E8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 38.24, - "z": 25.49 - }, - "F8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 29.24, - "z": 25.49 - }, - "G8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 20.24, - "z": 25.49 - }, - "H8": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 11.24, - "z": 25.49 - }, - "A9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 74.24, - "z": 25.49 - }, - "B9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 65.24, - "z": 25.49 - }, - "C9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 56.24, - "z": 25.49 - }, - "D9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 47.24, - "z": 25.49 - }, - "E9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 38.24, - "z": 25.49 - }, - "F9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 29.24, - "z": 25.49 - }, - "G9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 20.24, - "z": 25.49 - }, - "H9": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 11.24, - "z": 25.49 - }, - "A10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 74.24, - "z": 25.49 - }, - "B10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 65.24, - "z": 25.49 - }, - "C10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 56.24, - "z": 25.49 - }, - "D10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 47.24, - "z": 25.49 - }, - "E10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 38.24, - "z": 25.49 - }, - "F10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 29.24, - "z": 25.49 - }, - "G10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 20.24, - "z": 25.49 - }, - "H10": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 11.24, - "z": 25.49 - }, - "A11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 74.24, - "z": 25.49 - }, - "B11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 65.24, - "z": 25.49 - }, - "C11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 56.24, - "z": 25.49 - }, - "D11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 47.24, - "z": 25.49 - }, - "E11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 38.24, - "z": 25.49 - }, - "F11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 29.24, - "z": 25.49 - }, - "G11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 20.24, - "z": 25.49 - }, - "H11": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 11.24, - "z": 25.49 - }, - "A12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 74.24, - "z": 25.49 - }, - "B12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 65.24, - "z": 25.49 - }, - "C12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 56.24, - "z": 25.49 - }, - "D12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 47.24, - "z": 25.49 - }, - "E12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 38.24, - "z": 25.49 - }, - "F12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 29.24, - "z": 25.49 - }, - "G12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 20.24, - "z": 25.49 - }, - "H12": { - "depth": 39.2, - "shape": "circular", - "diameter": 3.27, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 11.24, - "z": 25.49 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 39.2, - "tipOverlap": 8.25, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_tiprack_20ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json b/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json deleted file mode 100644 index 99e3d63cfe5..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_tiprack_300ul/draft.json +++ /dev/null @@ -1,1019 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" - ] - }, - "metadata": { - "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 64.49 - }, - "wells": { - "A1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 74.24, - "z": 5.39 - }, - "B1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 65.24, - "z": 5.39 - }, - "C1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 56.24, - "z": 5.39 - }, - "D1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 47.24, - "z": 5.39 - }, - "E1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 38.24, - "z": 5.39 - }, - "F1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 29.24, - "z": 5.39 - }, - "G1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 20.24, - "z": 5.39 - }, - "H1": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 14.38, - "y": 11.24, - "z": 5.39 - }, - "A2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 74.24, - "z": 5.39 - }, - "B2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 65.24, - "z": 5.39 - }, - "C2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 56.24, - "z": 5.39 - }, - "D2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 47.24, - "z": 5.39 - }, - "E2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 38.24, - "z": 5.39 - }, - "F2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 29.24, - "z": 5.39 - }, - "G2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 20.24, - "z": 5.39 - }, - "H2": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 23.38, - "y": 11.24, - "z": 5.39 - }, - "A3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 74.24, - "z": 5.39 - }, - "B3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 65.24, - "z": 5.39 - }, - "C3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 56.24, - "z": 5.39 - }, - "D3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 47.24, - "z": 5.39 - }, - "E3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 38.24, - "z": 5.39 - }, - "F3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 29.24, - "z": 5.39 - }, - "G3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 20.24, - "z": 5.39 - }, - "H3": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 32.38, - "y": 11.24, - "z": 5.39 - }, - "A4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 74.24, - "z": 5.39 - }, - "B4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 65.24, - "z": 5.39 - }, - "C4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 56.24, - "z": 5.39 - }, - "D4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 47.24, - "z": 5.39 - }, - "E4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 38.24, - "z": 5.39 - }, - "F4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 29.24, - "z": 5.39 - }, - "G4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 20.24, - "z": 5.39 - }, - "H4": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 41.38, - "y": 11.24, - "z": 5.39 - }, - "A5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 74.24, - "z": 5.39 - }, - "B5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 65.24, - "z": 5.39 - }, - "C5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 56.24, - "z": 5.39 - }, - "D5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 47.24, - "z": 5.39 - }, - "E5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 38.24, - "z": 5.39 - }, - "F5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 29.24, - "z": 5.39 - }, - "G5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 20.24, - "z": 5.39 - }, - "H5": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 50.38, - "y": 11.24, - "z": 5.39 - }, - "A6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 74.24, - "z": 5.39 - }, - "B6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 65.24, - "z": 5.39 - }, - "C6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 56.24, - "z": 5.39 - }, - "D6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 47.24, - "z": 5.39 - }, - "E6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 38.24, - "z": 5.39 - }, - "F6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 29.24, - "z": 5.39 - }, - "G6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 20.24, - "z": 5.39 - }, - "H6": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 59.38, - "y": 11.24, - "z": 5.39 - }, - "A7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 74.24, - "z": 5.39 - }, - "B7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 65.24, - "z": 5.39 - }, - "C7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 56.24, - "z": 5.39 - }, - "D7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 47.24, - "z": 5.39 - }, - "E7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 38.24, - "z": 5.39 - }, - "F7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 29.24, - "z": 5.39 - }, - "G7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 20.24, - "z": 5.39 - }, - "H7": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 68.38, - "y": 11.24, - "z": 5.39 - }, - "A8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 74.24, - "z": 5.39 - }, - "B8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 65.24, - "z": 5.39 - }, - "C8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 56.24, - "z": 5.39 - }, - "D8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 47.24, - "z": 5.39 - }, - "E8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 38.24, - "z": 5.39 - }, - "F8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 29.24, - "z": 5.39 - }, - "G8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 20.24, - "z": 5.39 - }, - "H8": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 77.38, - "y": 11.24, - "z": 5.39 - }, - "A9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 74.24, - "z": 5.39 - }, - "B9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 65.24, - "z": 5.39 - }, - "C9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 56.24, - "z": 5.39 - }, - "D9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 47.24, - "z": 5.39 - }, - "E9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 38.24, - "z": 5.39 - }, - "F9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 29.24, - "z": 5.39 - }, - "G9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 20.24, - "z": 5.39 - }, - "H9": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 86.38, - "y": 11.24, - "z": 5.39 - }, - "A10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 74.24, - "z": 5.39 - }, - "B10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 65.24, - "z": 5.39 - }, - "C10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 56.24, - "z": 5.39 - }, - "D10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 47.24, - "z": 5.39 - }, - "E10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 38.24, - "z": 5.39 - }, - "F10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 29.24, - "z": 5.39 - }, - "G10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 20.24, - "z": 5.39 - }, - "H10": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 95.38, - "y": 11.24, - "z": 5.39 - }, - "A11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 74.24, - "z": 5.39 - }, - "B11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 65.24, - "z": 5.39 - }, - "C11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 56.24, - "z": 5.39 - }, - "D11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 47.24, - "z": 5.39 - }, - "E11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 38.24, - "z": 5.39 - }, - "F11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 29.24, - "z": 5.39 - }, - "G11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 20.24, - "z": 5.39 - }, - "H11": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 104.38, - "y": 11.24, - "z": 5.39 - }, - "A12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 74.24, - "z": 5.39 - }, - "B12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 65.24, - "z": 5.39 - }, - "C12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 56.24, - "z": 5.39 - }, - "D12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 47.24, - "z": 5.39 - }, - "E12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 38.24, - "z": 5.39 - }, - "F12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 29.24, - "z": 5.39 - }, - "G12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 20.24, - "z": 5.39 - }, - "H12": { - "depth": 59.3, - "shape": "circular", - "diameter": 5.23, - "totalLiquidVolume": 300, - "x": 113.38, - "y": 11.24, - "z": 5.39 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipLength": 59.3, - "tipOverlap": 7.47, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_tiprack_300ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json b/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json deleted file mode 100644 index 87df813c9dc..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_well_aluminum_block/draft.json +++ /dev/null @@ -1,1032 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons 96 Well Aluminum Block", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 18.16 - }, - "wells": { - "A1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 74.24, - "z": 3.38 - }, - "B1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 65.24, - "z": 3.38 - }, - "C1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 56.24, - "z": 3.38 - }, - "D1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 47.24, - "z": 3.38 - }, - "E1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 38.24, - "z": 3.38 - }, - "F1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 29.24, - "z": 3.38 - }, - "G1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 20.24, - "z": 3.38 - }, - "H1": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 14.38, - "y": 11.24, - "z": 3.38 - }, - "A2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 74.24, - "z": 3.38 - }, - "B2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 65.24, - "z": 3.38 - }, - "C2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 56.24, - "z": 3.38 - }, - "D2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 47.24, - "z": 3.38 - }, - "E2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 38.24, - "z": 3.38 - }, - "F2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 29.24, - "z": 3.38 - }, - "G2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 20.24, - "z": 3.38 - }, - "H2": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 23.38, - "y": 11.24, - "z": 3.38 - }, - "A3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 74.24, - "z": 3.38 - }, - "B3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 65.24, - "z": 3.38 - }, - "C3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 56.24, - "z": 3.38 - }, - "D3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 47.24, - "z": 3.38 - }, - "E3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 38.24, - "z": 3.38 - }, - "F3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 29.24, - "z": 3.38 - }, - "G3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 20.24, - "z": 3.38 - }, - "H3": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 32.38, - "y": 11.24, - "z": 3.38 - }, - "A4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 74.24, - "z": 3.38 - }, - "B4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 65.24, - "z": 3.38 - }, - "C4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 56.24, - "z": 3.38 - }, - "D4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 47.24, - "z": 3.38 - }, - "E4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 38.24, - "z": 3.38 - }, - "F4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 29.24, - "z": 3.38 - }, - "G4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 20.24, - "z": 3.38 - }, - "H4": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 41.38, - "y": 11.24, - "z": 3.38 - }, - "A5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 74.24, - "z": 3.38 - }, - "B5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 65.24, - "z": 3.38 - }, - "C5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 56.24, - "z": 3.38 - }, - "D5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 47.24, - "z": 3.38 - }, - "E5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 38.24, - "z": 3.38 - }, - "F5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 29.24, - "z": 3.38 - }, - "G5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 20.24, - "z": 3.38 - }, - "H5": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 50.38, - "y": 11.24, - "z": 3.38 - }, - "A6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 74.24, - "z": 3.38 - }, - "B6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 65.24, - "z": 3.38 - }, - "C6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 56.24, - "z": 3.38 - }, - "D6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 47.24, - "z": 3.38 - }, - "E6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 38.24, - "z": 3.38 - }, - "F6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 29.24, - "z": 3.38 - }, - "G6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 20.24, - "z": 3.38 - }, - "H6": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 59.38, - "y": 11.24, - "z": 3.38 - }, - "A7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 74.24, - "z": 3.38 - }, - "B7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 65.24, - "z": 3.38 - }, - "C7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 56.24, - "z": 3.38 - }, - "D7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 47.24, - "z": 3.38 - }, - "E7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 38.24, - "z": 3.38 - }, - "F7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 29.24, - "z": 3.38 - }, - "G7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 20.24, - "z": 3.38 - }, - "H7": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 68.38, - "y": 11.24, - "z": 3.38 - }, - "A8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 74.24, - "z": 3.38 - }, - "B8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 65.24, - "z": 3.38 - }, - "C8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 56.24, - "z": 3.38 - }, - "D8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 47.24, - "z": 3.38 - }, - "E8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 38.24, - "z": 3.38 - }, - "F8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 29.24, - "z": 3.38 - }, - "G8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 20.24, - "z": 3.38 - }, - "H8": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 77.38, - "y": 11.24, - "z": 3.38 - }, - "A9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 74.24, - "z": 3.38 - }, - "B9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 65.24, - "z": 3.38 - }, - "C9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 56.24, - "z": 3.38 - }, - "D9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 47.24, - "z": 3.38 - }, - "E9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 38.24, - "z": 3.38 - }, - "F9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 29.24, - "z": 3.38 - }, - "G9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 20.24, - "z": 3.38 - }, - "H9": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 86.38, - "y": 11.24, - "z": 3.38 - }, - "A10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 74.24, - "z": 3.38 - }, - "B10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 65.24, - "z": 3.38 - }, - "C10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 56.24, - "z": 3.38 - }, - "D10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 47.24, - "z": 3.38 - }, - "E10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 38.24, - "z": 3.38 - }, - "F10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 29.24, - "z": 3.38 - }, - "G10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 20.24, - "z": 3.38 - }, - "H10": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 95.38, - "y": 11.24, - "z": 3.38 - }, - "A11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 74.24, - "z": 3.38 - }, - "B11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 65.24, - "z": 3.38 - }, - "C11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 56.24, - "z": 3.38 - }, - "D11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 47.24, - "z": 3.38 - }, - "E11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 38.24, - "z": 3.38 - }, - "F11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 29.24, - "z": 3.38 - }, - "G11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 20.24, - "z": 3.38 - }, - "H11": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 104.38, - "y": 11.24, - "z": 3.38 - }, - "A12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 74.24, - "z": 3.38 - }, - "B12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 65.24, - "z": 3.38 - }, - "C12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 56.24, - "z": 3.38 - }, - "D12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 47.24, - "z": 3.38 - }, - "E12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 38.24, - "z": 3.38 - }, - "F12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 29.24, - "z": 3.38 - }, - "G12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 20.24, - "z": 3.38 - }, - "H12": { - "depth": 14.78, - "shape": "circular", - "diameter": 5.34, - "totalLiquidVolume": 0, - "x": 113.38, - "y": 11.24, - "z": 3.38 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_96_well_aluminum_block" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 1.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json b/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json deleted file mode 100644 index 128a86de2e6..00000000000 --- a/shared-data/labware/definitions/2/opentrons_96_wellplate_200ul_pcr_full_skirt/draft.json +++ /dev/null @@ -1,1174 +0,0 @@ -{ - "namespace": "opentrons", - "version": 4, - "schemaVersion": 2, - "parameters": { - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": true - }, - "metadata": { - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "brand": { - "brand": "Opentrons", - "brandId": ["991-00076"], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackLimit": 4, - "compatibleParentLabware": ["opentrons_96_wellplate_200ul_pcr_full_skirt"], - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - }, - "opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 3.68 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "gripForce": 15, - "gripHeightFromLabwareBottom": 10, - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "wells": { - "A1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 14.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 23.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 32.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 41.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 50.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 59.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 68.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 77.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 86.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 95.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 104.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 74.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 65.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 56.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 47.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 38.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 29.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 20.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 14.95, - "totalLiquidVolume": 200, - "shape": "circular", - "diameter": 5.5, - "x": 113.38, - "y": 11.24, - "z": 1.05, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 5.5, - "topDiameter": 5.5, - "topHeight": 14.95, - "bottomHeight": 11.35 - }, - { - "shape": "conical", - "topDiameter": 5.5, - "bottomDiameter": 2.33, - "topHeight": 11.35, - "bottomHeight": 0.8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 1.25, - "topHeight": 0.8, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json b/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json deleted file mode 100644 index 41027bdb624..00000000000 --- a/shared-data/labware/definitions/2/opentrons_aluminum_flat_bottom_plate/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Aluminum Flat Bottom Plate", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 134, - "yDimension": 92, - "zDimension": 11.2 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_aluminum_flat_bottom_plate" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -3, - "y": -3, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json deleted file mode 100644 index 4a07f3fa565..00000000000 --- a/shared-data/labware/definitions/2/opentrons_calibration_adapter_heatershaker_module/draft.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "ordering": [["A1", "B1"]], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Calibration Adapter - Heater-shaker Module", - "displayCategory": "other", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 13.85 - }, - "wells": { - "A1": { - "depth": 4.75, - "totalLiquidVolume": 0, - "shape": "rectangular", - "xDimension": 20, - "yDimension": 20, - "x": 55.5, - "y": 37.5, - "z": 9.1 - }, - "B1": { - "depth": 0, - "totalLiquidVolume": 0, - "shape": "circular", - "diameter": 1, - "x": 68.5, - "y": 50.5, - "z": 13.85 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "flat" - }, - "wells": ["A1", "B1"] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_calibration_adapter_heatershaker_module" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json deleted file mode 100644 index 0a533fb5da4..00000000000 --- a/shared-data/labware/definitions/2/opentrons_calibration_adapter_temperature_module/draft.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "ordering": [["A1", "B1"]], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Calibration Adapter - Temperature Module", - "displayCategory": "other", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 15 - }, - "wells": { - "A1": { - "depth": 4.75, - "totalLiquidVolume": 0, - "shape": "rectangular", - "xDimension": 20, - "yDimension": 20, - "x": 64, - "y": 43, - "z": 10.25 - }, - "B1": { - "depth": 0, - "totalLiquidVolume": 0, - "shape": "circular", - "diameter": 1, - "x": 77, - "y": 56, - "z": 15 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "flat" - }, - "wells": ["A1", "B1"] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_calibration_adapter_temperature_module" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0.13, - "y": 0.25, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json b/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json deleted file mode 100644 index a4711dd08cf..00000000000 --- a/shared-data/labware/definitions/2/opentrons_calibration_adapter_thermocycler_module/draft.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "ordering": [["A1", "B1"]], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Calibration Adapter - Thermocycler Module", - "displayCategory": "other", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 116.25, - "yDimension": 80.5, - "zDimension": 26.4 - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 11.0 - } - }, - "wells": { - "A1": { - "depth": 4.75, - "totalLiquidVolume": 0, - "shape": "rectangular", - "xDimension": 20, - "yDimension": 20, - "x": 92.88, - "y": 40.25, - "z": 21.65 - }, - "B1": { - "depth": 0, - "totalLiquidVolume": 0, - "shape": "circular", - "diameter": 1, - "x": 105.88, - "y": 53.25, - "z": 26.4 - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "flat" - }, - "wells": ["A1", "B1"] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_calibration_adapter_thermocycler_module" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 5.875, - "y": 2.75, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json deleted file mode 100644 index 3eedbb6c26c..00000000000 --- a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_left/draft.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "wells": { - "A1": { - "totalLiquidVolume": 0, - "xDimension": 63.88, - "yDimension": 85.5, - "shape": "rectangular", - "depth": 0, - "x": 31.94, - "y": 42.75, - "z": 33 - }, - "A2": { - "totalLiquidVolume": 0, - "xDimension": 63.88, - "yDimension": 85.5, - "shape": "rectangular", - "depth": 0, - "x": 95.81, - "y": 42.75, - "z": 62.5 - } - }, - "groups": [ - { - "metadata": { - "displayName": "Opentrons Calibration Block - Short Side", - "wellBottomShape": "flat" - }, - "wells": ["A1"] - }, - { - "metadata": { - "displayName": "Opentrons Calibration Block - Tall Side", - "wellBottomShape": "flat" - }, - "wells": ["A2"] - } - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons Calibration Block - Short Side: Left", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 62.5 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_calibrationblock_short_side_left" - }, - "ordering": [["A1"], ["A2"]], - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json b/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json deleted file mode 100644 index 359744a2e77..00000000000 --- a/shared-data/labware/definitions/2/opentrons_calibrationblock_short_side_right/draft.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "wells": { - "A1": { - "totalLiquidVolume": 0, - "xDimension": 63.88, - "yDimension": 85.5, - "shape": "rectangular", - "depth": 0, - "x": 31.94, - "y": 42.75, - "z": 62.5 - }, - "A2": { - "totalLiquidVolume": 0, - "xDimension": 63.88, - "yDimension": 85.5, - "shape": "rectangular", - "depth": 0, - "x": 95.81, - "y": 42.75, - "z": 33 - } - }, - "groups": [ - { - "metadata": { - "displayName": "Opentrons Calibration Block - Tall Side", - "wellBottomShape": "flat" - }, - "wells": ["A1"] - }, - { - "metadata": { - "displayName": "Opentrons Calibration Block - Short Side", - "wellBottomShape": "flat" - }, - "wells": ["A2"] - } - ], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [] - }, - "metadata": { - "displayName": "Opentrons Calibration Block - Short Side: Right", - "displayCategory": "aluminumBlock", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 62.5 - }, - "parameters": { - "format": "irregular", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_calibrationblock_short_side_right" - }, - "ordering": [["A1"], ["A2"]], - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json deleted file mode 100644 index 18bbdc38bd1..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_1000ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Filter Tip Rack 1000 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 95.6, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_filtertiprack_1000ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json deleted file mode 100644 index 565271b128f..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_200ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Filter Tip Rack 200 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 58.35, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_filtertiprack_200ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json deleted file mode 100644 index 8c15758cd7d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_20ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Filter Tip Rack 20 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 52.0, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_filtertiprack_20ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json deleted file mode 100644 index fae0ac749d5..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_filtertiprack_50ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Filter Tip Rack 50 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 57.9, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_filtertiprack_50ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json deleted file mode 100644 index 52212d63dd7..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_1000ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.47, - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 95.6, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_tiprack_1000ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json deleted file mode 100644 index 95a521a2c81..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_200ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.59, - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 58.35, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_tiprack_200ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json deleted file mode 100644 index 6aa08141753..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_20ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Tip Rack 20 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 20, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 52.0, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_tiprack_20ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json deleted file mode 100644 index f546a222079..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_50ul/draft.json +++ /dev/null @@ -1,1031 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16, - "gripHeightFromLabwareBottom": 23.9, - "wells": { - "A1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "shape": "circular", - "diameter": 5.58, - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - } - }, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": true, - "tipLength": 57.9, - "tipOverlap": 10.5, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_tiprack_50ul" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json deleted file mode 100644 index adc03502c33..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_96_tiprack_adapter/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex 96 Tip Rack Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 156.5, - "yDimension": 93, - "zDimension": 132 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": ["tiprackAdapterFor96Channel"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_96_tiprack_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -14.25, - "y": -3.5, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json b/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json deleted file mode 100644 index 78184b5b85d..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_deck_riser/draft.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex Deck Riser", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 140, - "yDimension": 98, - "zDimension": 55 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_deck_riser" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": -6.125, - "y": -6.125, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json b/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json deleted file mode 100644 index a503e9f4a08..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_lid_absorbance_plate_reader_module/draft.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Absorbance Plate Reader Module Lid", - "displayCategory": "other", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 155.0, - "yDimension": 95.5, - "zDimension": 57.0 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_flex_lid_absorbance_plate_reader_module" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["fixture", "lid"], - "gripForce": 21.0, - "gripHeightFromLabwareBottom": 48.0, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 9, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 9, - "y": 0, - "z": 0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json b/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json deleted file mode 100644 index 9c3df4ddd73..00000000000 --- a/shared-data/labware/definitions/2/opentrons_flex_tiprack_lid/draft.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Flex Tip Rack Lid", - "displayCategory": "lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 78.75, - "zDimension": 17 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "isDeckSlotCompatible": false, - "loadName": "opentrons_flex_tiprack_lid" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_20ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - } - }, - "stackLimit": 1, - "compatibleParentLabware": [ - "opentrons_flex_96_tiprack_20ul", - "opentrons_flex_96_tiprack_50ul", - "opentrons_flex_96_tiprack_200ul", - "opentrons_flex_96_tiprack_1000ul", - "opentrons_flex_96_filtertiprack_50ul", - "opentrons_flex_96_filtertiprack_200ul", - "opentrons_flex_96_filtertiprack_1000ul" - ], - "gripForce": 10, - "gripHeightFromLabwareBottom": 10, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json deleted file mode 100644 index 13c16b53ef1..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_12_reservoir_22ml/draft.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "ordering": [ - ["A1"], - ["A2"], - ["A3"], - ["A4"], - ["A5"], - ["A6"], - ["A7"], - ["A8"], - ["A9"], - ["A10"], - ["A11"], - ["A12"] - ], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00260"], - "links": [ - "https://opentrons.com/products/opentrons-tough-22-ml-12-well-reservoir-25-count/" - ] - }, - "metadata": { - "displayName": "Opentrons Tough 22mL 12 Well Reservoir", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 45.3 - }, - "wells": { - "A1": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 14.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A2": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 23.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A3": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 32.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A4": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 41.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A5": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 50.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A6": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 59.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A7": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 68.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A8": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 77.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A9": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 86.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A10": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 95.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A11": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 104.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A12": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 70.7, - "totalLiquidVolume": 22000, - "x": 113.38, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "A10", - "A11", - "A12" - ] - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "loadName": "opentrons_tough_12_reservoir_22ml" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "MainWellGeometry": { - "sections": [ - { - "shape": "cuboidal", - "bottomHeight": 2, - "topHeight": 42.3, - "bottomXDimension": 7.5, - "bottomYDimension": 70, - "topXDimension": 8.2, - "topYDimension": 70.7 - }, - { - "shape": "cuboidal", - "bottomHeight": 0, - "topHeight": 2, - "bottomXDimension": 2.15, - "bottomYDimension": 67.46, - "topXDimension": 7.5, - "topYDimension": 70 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json deleted file mode 100644 index ddcc50dff96..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/draft.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00258"], - "links": [ - "https://opentrons.com/products/opentrons-tough-300-ml-1-well-reservoir-25-count/" - ] - }, - "metadata": { - "displayName": "Opentrons Tough 300 mL 1 Well Reservoir", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 45.3 - }, - "wells": { - "A1": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 108.7, - "yDimension": 70.7, - "totalLiquidVolume": 300000, - "x": 63.88, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - } - }, - "groups": [ - { - "wells": ["A1"], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_tough_1_reservoir_300ml", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "MainWellGeometry": { - "sections": [ - { - "shape": "cuboidal", - "bottomHeight": 2.29, - "topHeight": 42.3, - "bottomXDimension": 108, - "bottomYDimension": 70.01, - "topXDimension": 108.7, - "topYDimension": 70.7 - }, - { - "shape": "cuboidal", - "xCount": 12, - "yCount": 8, - "bottomHeight": 0, - "topHeight": 2.29, - "bottomXDimension": 1.8, - "bottomYDimension": 1.8, - "topXDimension": 9, - "topYDimension": 9 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json b/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json deleted file mode 100644 index 0e0f69ad204..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_4_reservoir_72ml/draft.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "ordering": [["A1"], ["A2"], ["A3"], ["A4"]], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00259"], - "links": [ - "https://opentrons.com/products/opentrons-tough-72-ml-4-well-reservoir-25-count/" - ] - }, - "metadata": { - "displayName": "Opentrons Tough 72 mL 4 Well Reservoir", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 45.3 - }, - "wells": { - "A1": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 26.43, - "yDimension": 70.7, - "totalLiquidVolume": 72000, - "x": 22.74, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A2": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 26.43, - "yDimension": 70.7, - "totalLiquidVolume": 72000, - "x": 50.17, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A3": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 26.43, - "yDimension": 70.7, - "totalLiquidVolume": 72000, - "x": 77.6, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - }, - "A4": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 26.43, - "yDimension": 70.7, - "totalLiquidVolume": 72000, - "x": 105.03, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": ["A1", "A2", "A3", "A4"] - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], - "loadName": "opentrons_tough_4_reservoir_72ml" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "MainWellGeometry": { - "sections": [ - { - "shape": "cuboidal", - "bottomHeight": 2.42, - "topHeight": 42.3, - "bottomXDimension": 25.74, - "bottomYDimension": 70.01, - "topXDimension": 26.43, - "topYDimension": 70.7 - }, - { - "shape": "cuboidal", - "bottomHeight": 0, - "topHeight": 2.42, - "bottomXDimension": 2.96, - "bottomYDimension": 67.11, - "topXDimension": 25.74, - "topYDimension": 70.01 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json b/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json deleted file mode 100644 index 7015f700df2..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_pcr_auto_sealing_lid/draft.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Tough PCR Auto-Sealing Lid", - "displayCategory": "lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 85.48, - "zDimension": 12.8 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_tough_pcr_auto_sealing_lid" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "opentrons_tough_pcr_auto_sealing_lid": { - "x": 0, - "y": 0, - "z": 6.492 - }, - "armadillo_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "biorad_96_wellplate_200ul_pcr": { - "x": 0, - "y": 0, - "z": 8.08 - }, - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "stackLimit": 5, - "compatibleParentLabware": [ - "armadillo_96_wellplate_200ul_pcr_full_skirt", - "opentrons_96_wellplate_200ul_pcr_full_skirt", - "opentrons_tough_pcr_auto_sealing_lid", - "biorad_96_wellplate_200ul_pcr", - "opentrons_flex_deck_riser", - "protocol_engine_lid_stack_object" - ], - "gripForce": 15, - "gripHeightFromLabwareBottom": 7.91, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 1.5 - }, - "dropOffset": { - "x": 0, - "y": 0.52, - "z": -6 - } - }, - "lidOffsets": { - "pickUpOffset": { - "x": 0.5, - "y": 0, - "z": -5 - }, - "dropOffset": { - "x": 0.5, - "y": 0, - "z": -1 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json b/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json deleted file mode 100644 index 50aea574a38..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_universal_lid/draft.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "allowedRoles": ["labware", "lid"], - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00261"], - "links": [ - "https://opentrons.com/products/opentrons-tough-universal-lid-50-count/" - ] - }, - "metadata": { - "displayName": "Opentrons Tough Universal Lid", - "displayCategory": "lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 8.8 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "isDeckSlotCompatible": false, - "loadName": "opentrons_tough_universal_lid" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 6.6 - }, - "opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 7.1 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - }, - "opentrons_tough_universal_lid": { - "x": 0, - "y": 0, - "z": 0.8 - } - }, - "stackLimit": 5, - "gripForce": 10, - "gripHeightFromLabwareBottom": 5.3, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 3 - } - }, - "lidDisposalOffsets": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json deleted file mode 100644 index 6e852c2fefc..00000000000 --- a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter/draft.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Universal Flat Heater-Shaker Adapter", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 12 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_universal_flat_adapter" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - }, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "A1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "B1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "C1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "D1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "A3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "B3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "C3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "D3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json deleted file mode 100644 index 56cd685b7e8..00000000000 --- a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/draft.json +++ /dev/null @@ -1,4710 +0,0 @@ -{ - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Universal Flat Heater-Shaker Adapter with Corning 384 Well Plate 112 µl Flat", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 17.9 - }, - "wells": { - "A1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 76.48, - "z": 6.37 - }, - "B1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 71.98, - "z": 6.37 - }, - "C1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 67.48, - "z": 6.37 - }, - "D1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 62.98, - "z": 6.37 - }, - "E1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 58.48, - "z": 6.37 - }, - "F1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 53.98, - "z": 6.37 - }, - "G1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 49.48, - "z": 6.37 - }, - "H1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 44.98, - "z": 6.37 - }, - "I1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 40.48, - "z": 6.37 - }, - "J1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 35.98, - "z": 6.37 - }, - "K1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 31.48, - "z": 6.37 - }, - "L1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 26.98, - "z": 6.37 - }, - "M1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 22.48, - "z": 6.37 - }, - "N1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 17.98, - "z": 6.37 - }, - "O1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 13.48, - "z": 6.37 - }, - "P1": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 12.12, - "y": 8.98, - "z": 6.37 - }, - "A2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 76.48, - "z": 6.37 - }, - "B2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 71.98, - "z": 6.37 - }, - "C2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 67.48, - "z": 6.37 - }, - "D2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 62.98, - "z": 6.37 - }, - "E2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 58.48, - "z": 6.37 - }, - "F2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 53.98, - "z": 6.37 - }, - "G2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 49.48, - "z": 6.37 - }, - "H2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 44.98, - "z": 6.37 - }, - "I2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 40.48, - "z": 6.37 - }, - "J2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 35.98, - "z": 6.37 - }, - "K2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 31.48, - "z": 6.37 - }, - "L2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 26.98, - "z": 6.37 - }, - "M2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 22.48, - "z": 6.37 - }, - "N2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 17.98, - "z": 6.37 - }, - "O2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 13.48, - "z": 6.37 - }, - "P2": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 16.62, - "y": 8.98, - "z": 6.37 - }, - "A3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 76.48, - "z": 6.37 - }, - "B3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 71.98, - "z": 6.37 - }, - "C3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 67.48, - "z": 6.37 - }, - "D3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 62.98, - "z": 6.37 - }, - "E3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 58.48, - "z": 6.37 - }, - "F3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 53.98, - "z": 6.37 - }, - "G3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 49.48, - "z": 6.37 - }, - "H3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 44.98, - "z": 6.37 - }, - "I3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 40.48, - "z": 6.37 - }, - "J3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 35.98, - "z": 6.37 - }, - "K3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 31.48, - "z": 6.37 - }, - "L3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 26.98, - "z": 6.37 - }, - "M3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 22.48, - "z": 6.37 - }, - "N3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 17.98, - "z": 6.37 - }, - "O3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 13.48, - "z": 6.37 - }, - "P3": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 21.12, - "y": 8.98, - "z": 6.37 - }, - "A4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 76.48, - "z": 6.37 - }, - "B4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 71.98, - "z": 6.37 - }, - "C4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 67.48, - "z": 6.37 - }, - "D4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 62.98, - "z": 6.37 - }, - "E4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 58.48, - "z": 6.37 - }, - "F4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 53.98, - "z": 6.37 - }, - "G4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 49.48, - "z": 6.37 - }, - "H4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 44.98, - "z": 6.37 - }, - "I4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 40.48, - "z": 6.37 - }, - "J4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 35.98, - "z": 6.37 - }, - "K4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 31.48, - "z": 6.37 - }, - "L4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 26.98, - "z": 6.37 - }, - "M4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 22.48, - "z": 6.37 - }, - "N4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 17.98, - "z": 6.37 - }, - "O4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 13.48, - "z": 6.37 - }, - "P4": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 25.62, - "y": 8.98, - "z": 6.37 - }, - "A5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 76.48, - "z": 6.37 - }, - "B5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 71.98, - "z": 6.37 - }, - "C5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 67.48, - "z": 6.37 - }, - "D5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 62.98, - "z": 6.37 - }, - "E5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 58.48, - "z": 6.37 - }, - "F5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 53.98, - "z": 6.37 - }, - "G5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 49.48, - "z": 6.37 - }, - "H5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 44.98, - "z": 6.37 - }, - "I5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 40.48, - "z": 6.37 - }, - "J5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 35.98, - "z": 6.37 - }, - "K5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 31.48, - "z": 6.37 - }, - "L5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 26.98, - "z": 6.37 - }, - "M5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 22.48, - "z": 6.37 - }, - "N5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 17.98, - "z": 6.37 - }, - "O5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 13.48, - "z": 6.37 - }, - "P5": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 30.12, - "y": 8.98, - "z": 6.37 - }, - "A6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 76.48, - "z": 6.37 - }, - "B6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 71.98, - "z": 6.37 - }, - "C6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 67.48, - "z": 6.37 - }, - "D6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 62.98, - "z": 6.37 - }, - "E6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 58.48, - "z": 6.37 - }, - "F6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 53.98, - "z": 6.37 - }, - "G6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 49.48, - "z": 6.37 - }, - "H6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 44.98, - "z": 6.37 - }, - "I6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 40.48, - "z": 6.37 - }, - "J6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 35.98, - "z": 6.37 - }, - "K6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 31.48, - "z": 6.37 - }, - "L6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 26.98, - "z": 6.37 - }, - "M6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 22.48, - "z": 6.37 - }, - "N6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 17.98, - "z": 6.37 - }, - "O6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 13.48, - "z": 6.37 - }, - "P6": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 34.62, - "y": 8.98, - "z": 6.37 - }, - "A7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 76.48, - "z": 6.37 - }, - "B7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 71.98, - "z": 6.37 - }, - "C7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 67.48, - "z": 6.37 - }, - "D7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 62.98, - "z": 6.37 - }, - "E7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 58.48, - "z": 6.37 - }, - "F7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 53.98, - "z": 6.37 - }, - "G7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 49.48, - "z": 6.37 - }, - "H7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 44.98, - "z": 6.37 - }, - "I7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 40.48, - "z": 6.37 - }, - "J7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 35.98, - "z": 6.37 - }, - "K7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 31.48, - "z": 6.37 - }, - "L7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 26.98, - "z": 6.37 - }, - "M7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 22.48, - "z": 6.37 - }, - "N7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 17.98, - "z": 6.37 - }, - "O7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 13.48, - "z": 6.37 - }, - "P7": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 39.12, - "y": 8.98, - "z": 6.37 - }, - "A8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 76.48, - "z": 6.37 - }, - "B8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 71.98, - "z": 6.37 - }, - "C8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 67.48, - "z": 6.37 - }, - "D8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 62.98, - "z": 6.37 - }, - "E8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 58.48, - "z": 6.37 - }, - "F8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 53.98, - "z": 6.37 - }, - "G8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 49.48, - "z": 6.37 - }, - "H8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 44.98, - "z": 6.37 - }, - "I8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 40.48, - "z": 6.37 - }, - "J8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 35.98, - "z": 6.37 - }, - "K8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 31.48, - "z": 6.37 - }, - "L8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 26.98, - "z": 6.37 - }, - "M8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 22.48, - "z": 6.37 - }, - "N8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 17.98, - "z": 6.37 - }, - "O8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 13.48, - "z": 6.37 - }, - "P8": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 43.62, - "y": 8.98, - "z": 6.37 - }, - "A9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 76.48, - "z": 6.37 - }, - "B9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 71.98, - "z": 6.37 - }, - "C9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 67.48, - "z": 6.37 - }, - "D9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 62.98, - "z": 6.37 - }, - "E9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 58.48, - "z": 6.37 - }, - "F9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 53.98, - "z": 6.37 - }, - "G9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 49.48, - "z": 6.37 - }, - "H9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 44.98, - "z": 6.37 - }, - "I9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 40.48, - "z": 6.37 - }, - "J9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 35.98, - "z": 6.37 - }, - "K9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 31.48, - "z": 6.37 - }, - "L9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 26.98, - "z": 6.37 - }, - "M9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 22.48, - "z": 6.37 - }, - "N9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 17.98, - "z": 6.37 - }, - "O9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 13.48, - "z": 6.37 - }, - "P9": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 48.12, - "y": 8.98, - "z": 6.37 - }, - "A10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 76.48, - "z": 6.37 - }, - "B10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 71.98, - "z": 6.37 - }, - "C10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 67.48, - "z": 6.37 - }, - "D10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 62.98, - "z": 6.37 - }, - "E10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 58.48, - "z": 6.37 - }, - "F10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 53.98, - "z": 6.37 - }, - "G10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 49.48, - "z": 6.37 - }, - "H10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 44.98, - "z": 6.37 - }, - "I10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 40.48, - "z": 6.37 - }, - "J10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 35.98, - "z": 6.37 - }, - "K10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 31.48, - "z": 6.37 - }, - "L10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 26.98, - "z": 6.37 - }, - "M10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 22.48, - "z": 6.37 - }, - "N10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 17.98, - "z": 6.37 - }, - "O10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 13.48, - "z": 6.37 - }, - "P10": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 52.62, - "y": 8.98, - "z": 6.37 - }, - "A11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 76.48, - "z": 6.37 - }, - "B11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 71.98, - "z": 6.37 - }, - "C11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 67.48, - "z": 6.37 - }, - "D11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 62.98, - "z": 6.37 - }, - "E11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 58.48, - "z": 6.37 - }, - "F11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 53.98, - "z": 6.37 - }, - "G11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 49.48, - "z": 6.37 - }, - "H11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 44.98, - "z": 6.37 - }, - "I11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 40.48, - "z": 6.37 - }, - "J11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 35.98, - "z": 6.37 - }, - "K11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 31.48, - "z": 6.37 - }, - "L11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 26.98, - "z": 6.37 - }, - "M11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 22.48, - "z": 6.37 - }, - "N11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 17.98, - "z": 6.37 - }, - "O11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 13.48, - "z": 6.37 - }, - "P11": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 57.12, - "y": 8.98, - "z": 6.37 - }, - "A12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 76.48, - "z": 6.37 - }, - "B12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 71.98, - "z": 6.37 - }, - "C12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 67.48, - "z": 6.37 - }, - "D12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 62.98, - "z": 6.37 - }, - "E12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 58.48, - "z": 6.37 - }, - "F12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 53.98, - "z": 6.37 - }, - "G12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 49.48, - "z": 6.37 - }, - "H12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 44.98, - "z": 6.37 - }, - "I12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 40.48, - "z": 6.37 - }, - "J12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 35.98, - "z": 6.37 - }, - "K12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 31.48, - "z": 6.37 - }, - "L12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 26.98, - "z": 6.37 - }, - "M12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 22.48, - "z": 6.37 - }, - "N12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 17.98, - "z": 6.37 - }, - "O12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 13.48, - "z": 6.37 - }, - "P12": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 61.62, - "y": 8.98, - "z": 6.37 - }, - "A13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 76.48, - "z": 6.37 - }, - "B13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 71.98, - "z": 6.37 - }, - "C13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 67.48, - "z": 6.37 - }, - "D13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 62.98, - "z": 6.37 - }, - "E13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 58.48, - "z": 6.37 - }, - "F13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 53.98, - "z": 6.37 - }, - "G13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 49.48, - "z": 6.37 - }, - "H13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 44.98, - "z": 6.37 - }, - "I13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 40.48, - "z": 6.37 - }, - "J13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 35.98, - "z": 6.37 - }, - "K13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 31.48, - "z": 6.37 - }, - "L13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 26.98, - "z": 6.37 - }, - "M13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 22.48, - "z": 6.37 - }, - "N13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 17.98, - "z": 6.37 - }, - "O13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 13.48, - "z": 6.37 - }, - "P13": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 66.12, - "y": 8.98, - "z": 6.37 - }, - "A14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 76.48, - "z": 6.37 - }, - "B14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 71.98, - "z": 6.37 - }, - "C14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 67.48, - "z": 6.37 - }, - "D14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 62.98, - "z": 6.37 - }, - "E14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 58.48, - "z": 6.37 - }, - "F14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 53.98, - "z": 6.37 - }, - "G14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 49.48, - "z": 6.37 - }, - "H14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 44.98, - "z": 6.37 - }, - "I14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 40.48, - "z": 6.37 - }, - "J14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 35.98, - "z": 6.37 - }, - "K14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 31.48, - "z": 6.37 - }, - "L14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 26.98, - "z": 6.37 - }, - "M14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 22.48, - "z": 6.37 - }, - "N14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 17.98, - "z": 6.37 - }, - "O14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 13.48, - "z": 6.37 - }, - "P14": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 70.62, - "y": 8.98, - "z": 6.37 - }, - "A15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 76.48, - "z": 6.37 - }, - "B15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 71.98, - "z": 6.37 - }, - "C15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 67.48, - "z": 6.37 - }, - "D15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 62.98, - "z": 6.37 - }, - "E15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 58.48, - "z": 6.37 - }, - "F15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 53.98, - "z": 6.37 - }, - "G15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 49.48, - "z": 6.37 - }, - "H15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 44.98, - "z": 6.37 - }, - "I15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 40.48, - "z": 6.37 - }, - "J15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 35.98, - "z": 6.37 - }, - "K15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 31.48, - "z": 6.37 - }, - "L15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 26.98, - "z": 6.37 - }, - "M15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 22.48, - "z": 6.37 - }, - "N15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 17.98, - "z": 6.37 - }, - "O15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 13.48, - "z": 6.37 - }, - "P15": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 75.12, - "y": 8.98, - "z": 6.37 - }, - "A16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 76.48, - "z": 6.37 - }, - "B16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 71.98, - "z": 6.37 - }, - "C16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 67.48, - "z": 6.37 - }, - "D16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 62.98, - "z": 6.37 - }, - "E16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 58.48, - "z": 6.37 - }, - "F16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 53.98, - "z": 6.37 - }, - "G16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 49.48, - "z": 6.37 - }, - "H16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 44.98, - "z": 6.37 - }, - "I16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 40.48, - "z": 6.37 - }, - "J16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 35.98, - "z": 6.37 - }, - "K16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 31.48, - "z": 6.37 - }, - "L16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 26.98, - "z": 6.37 - }, - "M16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 22.48, - "z": 6.37 - }, - "N16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 17.98, - "z": 6.37 - }, - "O16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 13.48, - "z": 6.37 - }, - "P16": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 79.62, - "y": 8.98, - "z": 6.37 - }, - "A17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 76.48, - "z": 6.37 - }, - "B17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 71.98, - "z": 6.37 - }, - "C17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 67.48, - "z": 6.37 - }, - "D17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 62.98, - "z": 6.37 - }, - "E17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 58.48, - "z": 6.37 - }, - "F17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 53.98, - "z": 6.37 - }, - "G17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 49.48, - "z": 6.37 - }, - "H17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 44.98, - "z": 6.37 - }, - "I17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 40.48, - "z": 6.37 - }, - "J17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 35.98, - "z": 6.37 - }, - "K17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 31.48, - "z": 6.37 - }, - "L17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 26.98, - "z": 6.37 - }, - "M17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 22.48, - "z": 6.37 - }, - "N17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 17.98, - "z": 6.37 - }, - "O17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 13.48, - "z": 6.37 - }, - "P17": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 84.12, - "y": 8.98, - "z": 6.37 - }, - "A18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 76.48, - "z": 6.37 - }, - "B18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 71.98, - "z": 6.37 - }, - "C18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 67.48, - "z": 6.37 - }, - "D18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 62.98, - "z": 6.37 - }, - "E18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 58.48, - "z": 6.37 - }, - "F18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 53.98, - "z": 6.37 - }, - "G18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 49.48, - "z": 6.37 - }, - "H18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 44.98, - "z": 6.37 - }, - "I18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 40.48, - "z": 6.37 - }, - "J18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 35.98, - "z": 6.37 - }, - "K18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 31.48, - "z": 6.37 - }, - "L18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 26.98, - "z": 6.37 - }, - "M18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 22.48, - "z": 6.37 - }, - "N18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 17.98, - "z": 6.37 - }, - "O18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 13.48, - "z": 6.37 - }, - "P18": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 88.62, - "y": 8.98, - "z": 6.37 - }, - "A19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 76.48, - "z": 6.37 - }, - "B19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 71.98, - "z": 6.37 - }, - "C19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 67.48, - "z": 6.37 - }, - "D19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 62.98, - "z": 6.37 - }, - "E19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 58.48, - "z": 6.37 - }, - "F19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 53.98, - "z": 6.37 - }, - "G19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 49.48, - "z": 6.37 - }, - "H19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 44.98, - "z": 6.37 - }, - "I19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 40.48, - "z": 6.37 - }, - "J19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 35.98, - "z": 6.37 - }, - "K19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 31.48, - "z": 6.37 - }, - "L19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 26.98, - "z": 6.37 - }, - "M19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 22.48, - "z": 6.37 - }, - "N19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 17.98, - "z": 6.37 - }, - "O19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 13.48, - "z": 6.37 - }, - "P19": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 93.12, - "y": 8.98, - "z": 6.37 - }, - "A20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 76.48, - "z": 6.37 - }, - "B20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 71.98, - "z": 6.37 - }, - "C20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 67.48, - "z": 6.37 - }, - "D20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 62.98, - "z": 6.37 - }, - "E20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 58.48, - "z": 6.37 - }, - "F20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 53.98, - "z": 6.37 - }, - "G20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 49.48, - "z": 6.37 - }, - "H20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 44.98, - "z": 6.37 - }, - "I20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 40.48, - "z": 6.37 - }, - "J20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 35.98, - "z": 6.37 - }, - "K20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 31.48, - "z": 6.37 - }, - "L20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 26.98, - "z": 6.37 - }, - "M20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 22.48, - "z": 6.37 - }, - "N20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 17.98, - "z": 6.37 - }, - "O20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 13.48, - "z": 6.37 - }, - "P20": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 97.62, - "y": 8.98, - "z": 6.37 - }, - "A21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 76.48, - "z": 6.37 - }, - "B21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 71.98, - "z": 6.37 - }, - "C21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 67.48, - "z": 6.37 - }, - "D21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 62.98, - "z": 6.37 - }, - "E21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 58.48, - "z": 6.37 - }, - "F21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 53.98, - "z": 6.37 - }, - "G21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 49.48, - "z": 6.37 - }, - "H21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 44.98, - "z": 6.37 - }, - "I21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 40.48, - "z": 6.37 - }, - "J21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 35.98, - "z": 6.37 - }, - "K21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 31.48, - "z": 6.37 - }, - "L21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 26.98, - "z": 6.37 - }, - "M21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 22.48, - "z": 6.37 - }, - "N21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 17.98, - "z": 6.37 - }, - "O21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 13.48, - "z": 6.37 - }, - "P21": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 102.12, - "y": 8.98, - "z": 6.37 - }, - "A22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 76.48, - "z": 6.37 - }, - "B22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 71.98, - "z": 6.37 - }, - "C22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 67.48, - "z": 6.37 - }, - "D22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 62.98, - "z": 6.37 - }, - "E22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 58.48, - "z": 6.37 - }, - "F22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 53.98, - "z": 6.37 - }, - "G22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 49.48, - "z": 6.37 - }, - "H22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 44.98, - "z": 6.37 - }, - "I22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 40.48, - "z": 6.37 - }, - "J22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 35.98, - "z": 6.37 - }, - "K22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 31.48, - "z": 6.37 - }, - "L22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 26.98, - "z": 6.37 - }, - "M22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 22.48, - "z": 6.37 - }, - "N22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 17.98, - "z": 6.37 - }, - "O22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 13.48, - "z": 6.37 - }, - "P22": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 106.62, - "y": 8.98, - "z": 6.37 - }, - "A23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 76.48, - "z": 6.37 - }, - "B23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 71.98, - "z": 6.37 - }, - "C23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 67.48, - "z": 6.37 - }, - "D23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 62.98, - "z": 6.37 - }, - "E23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 58.48, - "z": 6.37 - }, - "F23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 53.98, - "z": 6.37 - }, - "G23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 49.48, - "z": 6.37 - }, - "H23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 44.98, - "z": 6.37 - }, - "I23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 40.48, - "z": 6.37 - }, - "J23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 35.98, - "z": 6.37 - }, - "K23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 31.48, - "z": 6.37 - }, - "L23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 26.98, - "z": 6.37 - }, - "M23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 22.48, - "z": 6.37 - }, - "N23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 17.98, - "z": 6.37 - }, - "O23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 13.48, - "z": 6.37 - }, - "P23": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 111.12, - "y": 8.98, - "z": 6.37 - }, - "A24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 76.48, - "z": 6.37 - }, - "B24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 71.98, - "z": 6.37 - }, - "C24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 67.48, - "z": 6.37 - }, - "D24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 62.98, - "z": 6.37 - }, - "E24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 58.48, - "z": 6.37 - }, - "F24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 53.98, - "z": 6.37 - }, - "G24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 49.48, - "z": 6.37 - }, - "H24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 44.98, - "z": 6.37 - }, - "I24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 40.48, - "z": 6.37 - }, - "J24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 35.98, - "z": 6.37 - }, - "K24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 31.48, - "z": 6.37 - }, - "L24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 26.98, - "z": 6.37 - }, - "M24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 22.48, - "z": 6.37 - }, - "N24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 17.98, - "z": 6.37 - }, - "O24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 13.48, - "z": 6.37 - }, - "P24": { - "depth": 11.43, - "totalLiquidVolume": 112, - "shape": "rectangular", - "xDimension": 3.63, - "yDimension": 3.63, - "x": 115.62, - "y": 8.98, - "z": 6.37 - } - }, - "groups": [ - { - "metadata": { - "displayName": "Corning 384 Well Plate 112 µL Flat", - "displayCategory": "wellPlate", - "wellBottomShape": "flat" - }, - "brand": { - "brand": "Corning", - "brandId": ["3640", "3662", "3680", "3700", "3701", "3702"], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" - ] - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13", - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14", - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15", - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16", - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17", - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18", - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19", - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20", - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21", - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22", - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23", - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - } - ], - "parameters": { - "format": "384Standard", - "quirks": ["gripperIncompatible"], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json b/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json deleted file mode 100644 index d603c205dc5..00000000000 --- a/shared-data/labware/definitions/2/opentrons_universal_flat_adapter_type_b/draft.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Opentrons Universal Flat Heater-Shaker Adapter Type B", - "displayCategory": "adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 9.8 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_universal_flat_adapter_type_b" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "allowedRoles": ["adapter"], - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - }, - "gripperOffsets": { - "default": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "A1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "B1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "C1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "D1": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": 2.0, - "y": 0, - "z": 0 - } - }, - "A3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "B3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "C3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - }, - "D3": { - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "dropOffset": { - "x": -2.0, - "y": 0, - "z": 0 - } - } - } -} diff --git a/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json b/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json deleted file mode 100644 index a0f5fb03b60..00000000000 --- a/shared-data/labware/definitions/2/protocol_engine_lid_stack_object/draft.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "allowedRoles": ["system"], - "ordering": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "metadata": { - "displayName": "Protocol Engine Lid Stack", - "displayCategory": "system", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 0, - "yDimension": 0, - "zDimension": 0 - }, - "wells": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "parameters": { - "format": "irregular", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "protocol_engine_lid_stack_object" - }, - "namespace": "opentrons", - "version": 1, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - } - } -} diff --git a/shared-data/labware/definitions/2/smc_384_read_plate/draft.json b/shared-data/labware/definitions/2/smc_384_read_plate/draft.json deleted file mode 100644 index 733059e3f63..00000000000 --- a/shared-data/labware/definitions/2/smc_384_read_plate/draft.json +++ /dev/null @@ -1,5100 +0,0 @@ -{ - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - ], - "brand": { - "brand": "smc", - "brandId": [] - }, - "metadata": { - "displayName": "SMC 384well Commercial Read Plate", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 14.71 - }, - "wells": { - "A1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P1": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 12.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P2": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 16.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P3": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 21.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P4": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 25.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P5": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 30.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P6": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 34.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P7": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 39.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P8": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 43.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P9": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 48.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P10": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 52.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P11": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 57.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P12": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 61.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P13": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 66.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P14": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 70.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P15": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 75.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P16": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 79.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P17": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 84.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P18": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 88.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "yDimension": 3.6, - "xDimension": 3.6, - "x": 93.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P19": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 93.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P20": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 97.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P21": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 102.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P22": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 106.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P23": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 111.13, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "A24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 76.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "B24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 71.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "C24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 67.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "D24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 62.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "E24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 58.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "F24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 53.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "G24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 49.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "H24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 44.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "I24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 40.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "J24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 35.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "K24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 31.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "L24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 26.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "M24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 22.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "N24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 17.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "O24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 13.49, - "z": 2, - "geometryDefinitionId": "rectangularWell" - }, - "P24": { - "depth": 12.71, - "totalLiquidVolume": 126, - "shape": "rectangular", - "xDimension": 3.6, - "yDimension": 3.6, - "x": 115.63, - "y": 8.99, - "z": 2, - "geometryDefinitionId": "rectangularWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "flat" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12", - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13", - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14", - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15", - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16", - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17", - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18", - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19", - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20", - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21", - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22", - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23", - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ] - } - ], - "parameters": { - "format": "384Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "smc_384_read_plate" - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "rectangularWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 3.6, - "topYDimension": 3.6, - "bottomXDimension": 3.17, - "bottomYDimension": 3.17, - "topHeight": 12.71, - "bottomHeight": 0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json deleted file mode 100644 index 80b262dcd12..00000000000 --- a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_1300ul/draft.json +++ /dev/null @@ -1,1141 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Thermo Scientific", - "brandId": ["260251", "260252"], - "links": ["https://www.thermofisher.com/order/catalog/product/260251"] - }, - "metadata": { - "displayName": "Thermo Scientific Nunc 96 Well Plate 1300 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 31.6 - }, - "wells": { - "A1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 14.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 23.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 32.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 41.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 50.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 59.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 68.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 77.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 86.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 95.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 104.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 74.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 65.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 56.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 47.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 38.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 29.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 20.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 29.1, - "totalLiquidVolume": 1300, - "shape": "circular", - "diameter": 8.4, - "x": 113.4, - "y": 11.27, - "z": 2.5, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "u" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": true, - "magneticModuleEngageHeight": 5.5, - "loadName": "thermoscientificnunc_96_wellplate_1300ul" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "thermoscientificnunc_96_wellplate_1300ul": { - "x": 0, - "y": 0, - "z": 1.35 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 7.2, - "topDiameter": 8.4, - "topHeight": 29.1, - "bottomHeight": 3.6 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.6, - "topHeight": 3.6, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json b/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json deleted file mode 100644 index 32affc57556..00000000000 --- a/shared-data/labware/definitions/2/thermoscientificnunc_96_wellplate_2000ul/draft.json +++ /dev/null @@ -1,1141 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "Thermo Scientific", - "brandId": ["278743", "278752"], - "links": ["https://www.thermofisher.com/order/catalog/product/278743"] - }, - "metadata": { - "displayName": "Thermo Scientific Nunc 96 Well Plate 2000 µL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.8, - "yDimension": 85.5, - "zDimension": 43.6 - }, - "wells": { - "A1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H1": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 14.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H2": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 23.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H3": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 32.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H4": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 41.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H5": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 50.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H6": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 59.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H7": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 68.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H8": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 77.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H9": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 86.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H10": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 95.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H11": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 104.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "A12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 74.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "B12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 65.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "C12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 56.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "D12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 47.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "E12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 38.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "F12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 29.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "G12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 20.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - }, - "H12": { - "depth": 41.5, - "totalLiquidVolume": 2000, - "shape": "circular", - "diameter": 8.5, - "x": 113.3, - "y": 11.2, - "z": 2.1, - "geometryDefinitionId": "conicalWell" - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "u" - }, - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ] - } - ], - "parameters": { - "format": "96Standard", - "quirks": [], - "isTiprack": false, - "isMagneticModuleCompatible": true, - "magneticModuleEngageHeight": 6, - "loadName": "thermoscientificnunc_96_wellplate_2000ul" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackingOffsetWithLabware": { - "thermoscientificnunc_96_wellplate_2000ul": { - "x": 0, - "y": 0, - "z": 1.55 - } - }, - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "shape": "conical", - "bottomDiameter": 7.2, - "topDiameter": 8.5, - "topHeight": 41.5, - "bottomHeight": 3.6 - }, - { - "shape": "spherical", - "radiusOfCurvature": 3.6, - "topHeight": 3.6, - "bottomHeight": 0.0 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json b/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json deleted file mode 100644 index e0e8fc72094..00000000000 --- a/shared-data/labware/definitions/2/tipone_96_tiprack_200ul/draft.json +++ /dev/null @@ -1,1017 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "TipOne", - "brandId": ["1111-0200"], - "links": ["https://www.usascientific.com/200ul-tipone-stacks.aspx"] - }, - "metadata": { - "displayName": "TipOne 96 Tip Rack 200 µL", - "displayCategory": "tipRack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 63.9 - }, - "namespace": "opentrons", - "schemaVersion": 2, - "version": 1, - "wells": { - "H1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 9.25, - "z": 53.36 - }, - "G1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 18.25, - "z": 53.36 - }, - "F1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 27.25, - "z": 53.36 - }, - "E1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 36.25, - "z": 53.36 - }, - "D1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 45.25, - "z": 53.36 - }, - "C1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 54.25, - "z": 53.36 - }, - "B1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 63.25, - "z": 53.36 - }, - "A1": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 13.69, - "y": 72.25, - "z": 53.36 - }, - "H2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 9.25, - "z": 53.36 - }, - "G2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 18.25, - "z": 53.36 - }, - "F2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 27.25, - "z": 53.36 - }, - "E2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 36.25, - "z": 53.36 - }, - "D2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 45.25, - "z": 53.36 - }, - "C2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 54.25, - "z": 53.36 - }, - "B2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 63.25, - "z": 53.36 - }, - "A2": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 22.69, - "y": 72.25, - "z": 53.36 - }, - "H3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 9.25, - "z": 53.36 - }, - "G3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 18.25, - "z": 53.36 - }, - "F3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 27.25, - "z": 53.36 - }, - "E3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 36.25, - "z": 53.36 - }, - "D3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 45.25, - "z": 53.36 - }, - "C3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 54.25, - "z": 53.36 - }, - "B3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 63.25, - "z": 53.36 - }, - "A3": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 31.69, - "y": 72.25, - "z": 53.36 - }, - "H4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 9.25, - "z": 53.36 - }, - "G4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 18.25, - "z": 53.36 - }, - "F4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 27.25, - "z": 53.36 - }, - "E4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 36.25, - "z": 53.36 - }, - "D4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 45.25, - "z": 53.36 - }, - "C4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 54.25, - "z": 53.36 - }, - "B4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 63.25, - "z": 53.36 - }, - "A4": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 40.69, - "y": 72.25, - "z": 53.36 - }, - "H5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 9.25, - "z": 53.36 - }, - "G5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 18.25, - "z": 53.36 - }, - "F5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 27.25, - "z": 53.36 - }, - "E5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 36.25, - "z": 53.36 - }, - "D5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 45.25, - "z": 53.36 - }, - "C5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 54.25, - "z": 53.36 - }, - "B5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 63.25, - "z": 53.36 - }, - "A5": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 49.69, - "y": 72.25, - "z": 53.36 - }, - "H6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 9.25, - "z": 53.36 - }, - "G6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 18.25, - "z": 53.36 - }, - "F6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 27.25, - "z": 53.36 - }, - "E6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 36.25, - "z": 53.36 - }, - "D6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 45.25, - "z": 53.36 - }, - "C6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 54.25, - "z": 53.36 - }, - "B6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 63.25, - "z": 53.36 - }, - "A6": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 58.69, - "y": 72.25, - "z": 53.36 - }, - "H7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 9.25, - "z": 53.36 - }, - "G7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 18.25, - "z": 53.36 - }, - "F7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 27.25, - "z": 53.36 - }, - "E7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 36.25, - "z": 53.36 - }, - "D7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 45.25, - "z": 53.36 - }, - "C7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 54.25, - "z": 53.36 - }, - "B7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 63.25, - "z": 53.36 - }, - "A7": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 67.69, - "y": 72.25, - "z": 53.36 - }, - "H8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 9.25, - "z": 53.36 - }, - "G8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 18.25, - "z": 53.36 - }, - "F8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 27.25, - "z": 53.36 - }, - "E8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 36.25, - "z": 53.36 - }, - "D8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 45.25, - "z": 53.36 - }, - "C8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 54.25, - "z": 53.36 - }, - "B8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 63.25, - "z": 53.36 - }, - "A8": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 76.69, - "y": 72.25, - "z": 53.36 - }, - "H9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 9.25, - "z": 53.36 - }, - "G9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 18.25, - "z": 53.36 - }, - "F9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 27.25, - "z": 53.36 - }, - "E9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 36.25, - "z": 53.36 - }, - "D9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 45.25, - "z": 53.36 - }, - "C9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 54.25, - "z": 53.36 - }, - "B9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 63.25, - "z": 53.36 - }, - "A9": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 85.69, - "y": 72.25, - "z": 53.36 - }, - "H10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 9.25, - "z": 53.36 - }, - "G10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 18.25, - "z": 53.36 - }, - "F10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 27.25, - "z": 53.36 - }, - "E10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 36.25, - "z": 53.36 - }, - "D10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 45.25, - "z": 53.36 - }, - "C10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 54.25, - "z": 53.36 - }, - "B10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 63.25, - "z": 53.36 - }, - "A10": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 94.69, - "y": 72.25, - "z": 53.36 - }, - "H11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 9.25, - "z": 53.36 - }, - "G11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 18.25, - "z": 53.36 - }, - "F11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 27.25, - "z": 53.36 - }, - "E11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 36.25, - "z": 53.36 - }, - "D11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 45.25, - "z": 53.36 - }, - "C11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 54.25, - "z": 53.36 - }, - "B11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 63.25, - "z": 53.36 - }, - "A11": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 103.69, - "y": 72.25, - "z": 53.36 - }, - "H12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 9.25, - "z": 53.36 - }, - "G12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 18.25, - "z": 53.36 - }, - "F12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 27.25, - "z": 53.36 - }, - "E12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 36.25, - "z": 53.36 - }, - "D12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 45.25, - "z": 53.36 - }, - "C12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 54.25, - "z": 53.36 - }, - "B12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 63.25, - "z": 53.36 - }, - "A12": { - "depth": 10.54, - "shape": "circular", - "diameter": 6.4, - "totalLiquidVolume": 200, - "x": 112.69, - "y": 72.25, - "z": 53.36 - } - }, - "parameters": { - "format": "96Standard", - "isTiprack": true, - "tipOverlap": 6.1, - "tipLength": 50.93, - "isMagneticModuleCompatible": false, - "loadName": "tipone_96_tiprack_200ul" - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": {} - } - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - } -} diff --git a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json deleted file mode 100644 index 95235bf624d..00000000000 --- a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/draft.json +++ /dev/null @@ -1,237 +0,0 @@ -{ - "ordering": [ - ["A1"], - ["A2"], - ["A3"], - ["A4"], - ["A5"], - ["A6"], - ["A7"], - ["A8"], - ["A9"], - ["A10"], - ["A11"], - ["A12"] - ], - "schemaVersion": 2, - "version": 3, - "namespace": "opentrons", - "metadata": { - "displayName": "USA Scientific 12 Well Reservoir 22 mL", - "displayVolumeUnits": "mL", - "displayCategory": "reservoir", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.47, - "zDimension": 44.2 - }, - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "usascientific_12_reservoir_22ml", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] - }, - "wells": { - "A1": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 14.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 23.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 32.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 41.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 50.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 59.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A7": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 68.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A8": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 77.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A9": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 86.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A10": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 95.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A11": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 104.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - }, - "A12": { - "shape": "rectangular", - "depth": 41.75, - "xDimension": 8.317, - "yDimension": 71.88, - "totalLiquidVolume": 22000, - "x": 113.38, - "y": 42.71, - "z": 2.45, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "A10", - "A11", - "A12" - ], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "brand": { - "brand": "USA Scientific", - "brandId": ["1061-8150"], - "links": [ - "https://www.usascientific.com/12-channel-automation-reservoir.aspx" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 8.317, - "topYDimension": 71.88, - "bottomXDimension": 8.139, - "bottomYDimension": 71.75, - "topHeight": 41.75, - "bottomHeight": 4.0 - }, - { - "shape": "squaredcone", - "bottomCrossSection": "circular", - "circleDiameter": 1.06, - "rectangleXDimension": 8.1, - "rectangleYDimension": 8.75, - "topHeight": 4.0, - "bottomHeight": 0.25, - "xCount": 1, - "yCount": 8 - }, - { - "shape": "spherical", - "radiusOfCurvature": 0.687, - "topHeight": 0.25, - "bottomHeight": 0.0, - "yCount": 8 - } - ] - } - } -} diff --git a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json deleted file mode 100644 index f6a71e61838..00000000000 --- a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/draft.json +++ /dev/null @@ -1,1243 +0,0 @@ -{ - "ordering": [ - ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], - ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], - ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], - ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], - ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], - ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], - ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], - ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], - ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], - ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], - ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], - ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] - ], - "brand": { - "brand": "USA Scientific", - "brandId": ["1896-2000"], - "links": [ - "https://www.usascientific.com/2ml-deep96-well-plateone-bulk.aspx" - ] - }, - "metadata": { - "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", - "displayCategory": "wellPlate", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.8, - "yDimension": 85.5, - "zDimension": 44.1 - }, - "wells": { - "H1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A1": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 14.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A2": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 23.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A3": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 32.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A4": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 41.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A5": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 50.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A6": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 59.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A7": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 68.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A8": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 77.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A9": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 86.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A10": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 95.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A11": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 104.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "H12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 11.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "G12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 20.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "F12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 29.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "E12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 38.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "D12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 47.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "C12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 56.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "B12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 65.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - }, - "A12": { - "depth": 41.3, - "shape": "rectangular", - "xDimension": 8.2, - "yDimension": 8.2, - "totalLiquidVolume": 2400, - "x": 113.4, - "y": 74.3, - "z": 2.8, - "geometryDefinitionId": "cuboidalWell" - } - }, - "groups": [ - { - "wells": [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "parameters": { - "format": "96Standard", - "isTiprack": false, - "isMagneticModuleCompatible": true, - "magneticModuleEngageHeight": 14.94, - "loadName": "usascientific_96_wellplate_2.4ml_deep" - }, - "namespace": "opentrons", - "version": 3, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "usascientific_96_wellplate_2.4ml_deep": { - "x": 0, - "y": 0, - "z": 1.5 - } - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "shape": "cuboidal", - "topXDimension": 8.2, - "topYDimension": 8.2, - "bottomXDimension": 7.52, - "bottomYDimension": 7.52, - "topHeight": 41.3, - "bottomHeight": 2.63 - }, - { - "shape": "cuboidal", - "topXDimension": 7.52, - "topYDimension": 7.52, - "bottomXDimension": 0.25, - "bottomYDimension": 0.25, - "topHeight": 2.63, - "bottomHeight": 0.0 - } - ] - } - } -} From 386c3a742c91c1ddcd908c173b76ba961c799b83 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 5 Aug 2025 15:08:40 -0400 Subject: [PATCH 11/20] Copy drafts that we changed to new labware versions. --- .../2/agilent_1_reservoir_290ml/4.json | 80 + .../2/axygen_1_reservoir_90ml/3.json | 72 + .../2/biorad_96_wellplate_200ul_pcr/5.json | 1187 ++++ .../2/corning_12_wellplate_6.9ml_flat/5.json | 210 + .../2/corning_24_wellplate_3.4ml_flat/5.json | 342 ++ .../2/corning_384_wellplate_112ul_flat/5.json | 5116 +++++++++++++++++ .../2/corning_48_wellplate_1.6ml_flat/6.json | 610 ++ .../2/corning_6_wellplate_16.8ml_flat/5.json | 134 + .../2/corning_96_wellplate_360ul_flat/5.json | 1177 ++++ .../2/nest_12_reservoir_15ml/3.json | 226 + .../2/nest_1_reservoir_195ml/4.json | 83 + .../2/nest_1_reservoir_290ml/4.json | 80 + .../5.json | 1166 ++++ .../2/nest_96_wellplate_200ul_flat/5.json | 1145 ++++ .../2/nest_96_wellplate_2ml_deep/5.json | 1261 ++++ .../3.json | 232 + .../3.json | 259 + .../4.json | 370 ++ .../3.json | 356 ++ .../3.json | 358 ++ .../3.json | 350 ++ .../3.json | 386 ++ .../3.json | 418 ++ .../3.json | 473 ++ .../4.json | 371 ++ .../3.json | 150 + .../opentrons_tough_1_reservoir_300ml/2.json | 83 + .../2/usascientific_12_reservoir_22ml/4.json | 237 + .../4.json | 1243 ++++ 29 files changed, 18175 insertions(+) create mode 100644 shared-data/labware/definitions/2/agilent_1_reservoir_290ml/4.json create mode 100644 shared-data/labware/definitions/2/axygen_1_reservoir_90ml/3.json create mode 100644 shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/5.json create mode 100644 shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/5.json create mode 100644 shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/5.json create mode 100644 shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/5.json create mode 100644 shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/6.json create mode 100644 shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/5.json create mode 100644 shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/5.json create mode 100644 shared-data/labware/definitions/2/nest_12_reservoir_15ml/3.json create mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json create mode 100644 shared-data/labware/definitions/2/nest_1_reservoir_290ml/4.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/5.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/5.json create mode 100644 shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/5.json create mode 100644 shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/4.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/4.json create mode 100644 shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/3.json create mode 100644 shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json create mode 100644 shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/4.json create mode 100644 shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/4.json diff --git a/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/4.json b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/4.json new file mode 100644 index 00000000000..2ec8c4091d5 --- /dev/null +++ b/shared-data/labware/definitions/2/agilent_1_reservoir_290ml/4.json @@ -0,0 +1,80 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Agilent", + "brandId": ["201252-100"], + "links": ["https://www.agilent.com/store/en_US/Prod-201252-100/201252-100"] + }, + "metadata": { + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.04 + }, + "wells": { + "A1": { + "depth": 39.23, + "shape": "rectangular", + "xDimension": 107.5, + "yDimension": 71.25, + "totalLiquidVolume": 290000, + "x": 63.88, + "y": 42.74, + "z": 4.81, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.5, + "topYDimension": 71.25, + "bottomXDimension": 106.785, + "bottomYDimension": 71.0, + "topHeight": 39.23, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 106.785, + "topYDimension": 8, + "bottomXDimension": 100.75, + "bottomYDimension": 1.66, + "topHeight": 2, + "bottomHeight": 0, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/3.json b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/3.json new file mode 100644 index 00000000000..4d16703316b --- /dev/null +++ b/shared-data/labware/definitions/2/axygen_1_reservoir_90ml/3.json @@ -0,0 +1,72 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Axygen", + "brandId": ["RES-SW1-LP"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Genomics-%26-Molecular-Biology/Automation-Consumables/Automation-Reservoirs/Axygen%C2%AE-Reagent-Reservoirs/p/RES-SW1-LP?clear=true" + ] + }, + "metadata": { + "displayName": "Axygen 1 Well Reservoir 90 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 19.15 + }, + "wells": { + "A1": { + "depth": 12.42, + "shape": "rectangular", + "xDimension": 106.8, + "yDimension": 70.5, + "totalLiquidVolume": 90000, + "x": 63.88, + "y": 42.74, + "z": 6.73, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "axygen_1_reservoir_90ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 106.8, + "topYDimension": 70.5, + "bottomXDimension": 106.4, + "bottomYDimension": 70, + "topHeight": 12.42, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/5.json b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/5.json new file mode 100644 index 00000000000..f955d7255c9 --- /dev/null +++ b/shared-data/labware/definitions/2/biorad_96_wellplate_200ul_pcr/5.json @@ -0,0 +1,1187 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "metadata": { + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "yDimension": 85.48, + "xDimension": 127.76, + "zDimension": 16.06 + }, + "parameters": { + "format": "96Standard", + "isTiprack": false, + "loadName": "biorad_96_wellplate_200ul_pcr", + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 18 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10.14, + "wells": { + "H1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.57, + "shape": "circular", + "diameter": 5.44, + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.49, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Bio-Rad", + "brandId": ["hsp9601"], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 15.41 + }, + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.16 + }, + "biorad_96_wellplate_200ul_pcr": { + "x": 0, + "y": 0, + "z": 3.32 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.75 + }, + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.87 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.44, + "topDiameter": 5.44, + "topHeight": 14.57, + "bottomHeight": 10.14 + }, + { + "shape": "conical", + "topDiameter": 5.44, + "bottomDiameter": 4.98, + "topHeight": 10.14, + "bottomHeight": 8.58 + }, + { + "shape": "conical", + "topDiameter": 4.98, + "bottomDiameter": 3, + "topHeight": 8.58, + "bottomHeight": 1.87 + }, + { + "shape": "conical", + "topDiameter": 3.0, + "bottomDiameter": 2.81, + "topHeight": 1.87, + "bottomHeight": 1.21 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.42, + "topHeight": 1.21, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/5.json b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/5.json new file mode 100644 index 00000000000..915fa2e29c6 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_12_wellplate_6.9ml_flat/5.json @@ -0,0 +1,210 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3", "C3"], + ["A4", "B4", "C4"] + ], + "brand": { + "brand": "Corning", + "brandId": ["3336", "3512", "3513"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3513?clear=true" + ] + }, + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 12 Well Plate 6.9 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.89, + "yDimension": 85.6, + "zDimension": 20.02 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 18.3, + "wells": { + "C1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 16.79, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 42.8, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 24.94, + "y": 68.81, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 16.79, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 42.8, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 50.95, + "y": 68.81, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 16.79, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 42.8, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 76.96, + "y": 68.81, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 16.79, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 42.8, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.399, + "diameter": 22.733, + "totalLiquidVolume": 6900, + "x": 102.97, + "y": 68.81, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_12_wellplate_6.9ml_flat" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "A2", + "B2", + "C2", + "A3", + "B3", + "C3", + "A4", + "B4", + "C4" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.5 + }, + "corning_12_wellplate_6.9ml_flat": { + "x": 0, + "y": 0, + "z": 0.93 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 22.733, + "bottomDiameter": 22.098, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/5.json b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/5.json new file mode 100644 index 00000000000..fda8ec16169 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_24_wellplate_3.4ml_flat/5.json @@ -0,0 +1,342 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Corning", + "brandId": ["3337", "3524", "3526", "3527", "3473", "3738", "3987"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3738" + ] + }, + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 24 Well Plate 3.4 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "wells": { + "D1": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 17.46, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 17.46, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 17.46, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 17.46, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 36.76, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 36.76, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 36.76, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 36.76, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 56.06, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 56.06, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 56.06, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 56.06, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 75.36, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 75.36, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 75.36, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 75.36, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 94.66, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 94.66, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 94.66, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 94.66, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 113.96, + "y": 13.79, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 113.96, + "y": 33.09, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 113.96, + "y": 52.39, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "shape": "circular", + "depth": 17.399, + "diameter": 16.256, + "totalLiquidVolume": 3400, + "x": 113.96, + "y": 71.69, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_24_wellplate_3.4ml_flat" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.15 + }, + "corning_24_wellplate_3.4ml_flat": { + "x": 0, + "y": 0, + "z": 1.32 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 16.256, + "bottomDiameter": 15.621, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/5.json b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/5.json new file mode 100644 index 00000000000..92b77d15ec5 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_384_wellplate_112ul_flat/5.json @@ -0,0 +1,5116 @@ +{ + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ] + ], + "metadata": { + "displayName": "Corning 384 Well Plate 112 µL Flat", + "displayVolumeUnits": "µL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "parameters": { + "format": "384Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_384_wellplate_112ul_flat" + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 12.4, + "wells": { + "P1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A1": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 12.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A2": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 16.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A3": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 21.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A4": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 25.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A5": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 30.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A6": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 34.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A7": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 39.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A8": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 43.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A9": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 48.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A10": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 52.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A11": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 57.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A12": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 61.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A13": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 66.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A14": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 70.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A15": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 75.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A16": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 79.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A17": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 84.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A18": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 88.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A19": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 93.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A20": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 97.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A21": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 102.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A22": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 106.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A23": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 111.12, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "P24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 8.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "O24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 13.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "N24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 17.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "M24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 22.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "L24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 26.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "K24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 31.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "J24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 35.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "I24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 40.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "H24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 44.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "G24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 49.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "F24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 53.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "E24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 58.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "D24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 62.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "C24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 67.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "B24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 71.98, + "z": 2.79, + "geometryDefinitionId": "flatWell" + }, + "A24": { + "shape": "rectangular", + "depth": 11.43, + "xDimension": 3.632, + "yDimension": 3.632, + "totalLiquidVolume": 112, + "x": 115.62, + "y": 76.48, + "z": 2.79, + "geometryDefinitionId": "flatWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3640", "3662", "3680", "3700", "3701", "3702"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12", + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13", + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14", + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15", + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16", + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17", + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18", + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19", + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20", + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21", + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22", + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23", + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 8.32 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + } + }, + "innerLabwareGeometry": { + "flatWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 3.632, + "topYDimension": 3.632, + "bottomXDimension": 2.667, + "bottomYDimension": 2.667, + "topHeight": 11.43, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/6.json b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/6.json new file mode 100644 index 00000000000..1cdacbb0ce0 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_48_wellplate_1.6ml_flat/6.json @@ -0,0 +1,610 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1"], + ["A2", "B2", "C2", "D2", "E2", "F2"], + ["A3", "B3", "C3", "D3", "E3", "F3"], + ["A4", "B4", "C4", "D4", "E4", "F4"], + ["A5", "B5", "C5", "D5", "E5", "F5"], + ["A6", "B6", "C6", "D6", "E6", "F6"], + ["A7", "B7", "C7", "D7", "E7", "F7"], + ["A8", "B8", "C8", "D8", "E8", "F8"] + ], + "schemaVersion": 2, + "version": 6, + "namespace": "opentrons", + "metadata": { + "displayName": "Corning 48 Well Plate 1.6 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "dimensions": { + "xDimension": 127.89, + "yDimension": 85.6, + "zDimension": 20.02 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_48_wellplate_1.6ml_flat" + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 18.3, + "wells": { + "F1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 18.16, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 31.24, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 44.32, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 57.4, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 70.48, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 83.56, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 96.64, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 10.12, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 23.2, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 36.28, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 49.36, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 62.44, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "shape": "circular", + "depth": 17.399, + "diameter": 11.1, + "totalLiquidVolume": 1600, + "x": 109.72, + "y": 75.52, + "z": 2.621, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3548"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3548" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + }, + "corning_48_wellplate_1.6ml_flat": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 10.643, + "topDiameter": 11.1, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/5.json b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/5.json new file mode 100644 index 00000000000..b048d951efd --- /dev/null +++ b/shared-data/labware/definitions/2/corning_6_wellplate_16.8ml_flat/5.json @@ -0,0 +1,134 @@ +{ + "ordering": [ + ["A1", "B1"], + ["A2", "B2"], + ["A3", "B3"] + ], + "metadata": { + "displayName": "Corning 6 Well Plate 16.8 mL Flat", + "displayVolumeUnits": "mL", + "displayCategory": "wellPlate", + "tags": [] + }, + "schemaVersion": 2, + "version": 5, + "namespace": "opentrons", + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_6_wellplate_16.8ml_flat" + }, + "wells": { + "B1": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 23.19, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 62.31, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 23.19, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 62.31, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 103, + "y": 23.19, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "shape": "circular", + "depth": 17.399, + "diameter": 35.433, + "totalLiquidVolume": 16800, + "x": 103, + "y": 62.31, + "z": 2.871, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Corning", + "brandId": ["3335", "3506", "3516", "3471"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3335" + ] + }, + "groups": [ + { + "wells": ["A1", "B1", "A2", "B2", "A3", "B3"], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.5 + }, + "corning_6_wellplate_16.8ml_flat": { + "x": 0, + "y": 0, + "z": 1.74 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 34.798, + "topDiameter": 35.433, + "topHeight": 17.399, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/5.json b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/5.json new file mode 100644 index 00000000000..d322da9c338 --- /dev/null +++ b/shared-data/labware/definitions/2/corning_96_wellplate_360ul_flat/5.json @@ -0,0 +1,1177 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "Corning", + "brandId": [ + "3650", + "3916", + "3915", + "3361", + "3590", + "9018", + "3591", + "9017", + "3641", + "3628", + "3370", + "2507", + "2509", + "2503", + "3665", + "3600", + "3362", + "3917", + "3912", + "3925", + "3922", + "3596", + "3977", + "3598", + "3599", + "3585", + "3595", + "3300", + "3474" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Corning%C2%AE-96-well-Solid-Black-and-White-Polystyrene-Microplates/p/corning96WellSolidBlackAndWhitePolystyreneMicroplates" + ] + }, + "metadata": { + "displayName": "Corning 96 Well Plate 360 µL Flat", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 12.2, + "wells": { + "H1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 14.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 23.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 32.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 41.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 50.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 59.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 68.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 77.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 86.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 95.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 104.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 11.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 20.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 29.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 38.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 47.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 56.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 65.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 10.668, + "shape": "circular", + "diameter": 6.858, + "totalLiquidVolume": 360, + "x": 113.37, + "y": 74.24, + "z": 3.552, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "flat" + } + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "corning_96_wellplate_360ul_flat" + }, + "namespace": "opentrons", + "version": 5, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 10.22 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 5.45 + }, + "corning_96_wellplate_360ul_flat": { + "x": 0, + "y": 0, + "z": 1.11 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 6.858, + "bottomDiameter": 6.35, + "topHeight": 10.668, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_12_reservoir_15ml/3.json b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/3.json new file mode 100644 index 00000000000..450adc5c909 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_12_reservoir_15ml/3.json @@ -0,0 +1,226 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["360102"], + "links": ["https://www.nest-biotech.com/reagent-reserviors/59178414.html"] + }, + "metadata": { + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 14.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 23.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 32.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 41.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 50.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 59.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 68.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 77.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 86.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 95.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 104.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 8.35, + "yDimension": 71.25, + "totalLiquidVolume": 15000, + "x": 113.38, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_12_reservoir_15ml" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.35, + "topYDimension": 71.25, + "bottomXDimension": 7.95, + "bottomYDimension": 70.53, + "topHeight": 26.85, + "bottomHeight": 2.05 + }, + { + "shape": "cuboidal", + "topXDimension": 7.95, + "topYDimension": 70.53, + "bottomXDimension": 1.87, + "bottomYDimension": 64.45, + "topHeight": 2.05, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json new file mode 100644 index 00000000000..6549e348b50 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json @@ -0,0 +1,83 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "NEST", + "brandId": ["360103"], + "links": ["https://www.nest-biotech.com/reagent-reserviors/59178416.html"] + }, + "metadata": { + "displayName": "NEST 1 Well Reservoir 195 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 16.8, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "xDimension": 107.3, + "yDimension": 71.3, + "totalLiquidVolume": 195000, + "x": 63.88, + "y": 42.74, + "z": 4.55, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1"] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_1_reservoir_195ml" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.3, + "topYDimension": 71.3, + "bottomXDimension": 70.6, + "bottomYDimension": 106.8, + "topHeight": 26.85, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 9, + "topYDimension": 9, + "bottomXDimension": 1.93, + "bottomYDimension": 1.93, + "topHeight": 2, + "bottomHeight": 0, + "xCount": 12, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_290ml/4.json b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/4.json new file mode 100644 index 00000000000..05c2baa31e7 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_1_reservoir_290ml/4.json @@ -0,0 +1,80 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "NEST", + "brandId": ["360206", "360266"], + "links": ["https://www.nest-biotech.com/reagent-reserviors"] + }, + "metadata": { + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "xDimension": 107.76, + "yDimension": 71.1, + "totalLiquidVolume": 290000, + "x": 63.88, + "y": 42.73, + "z": 4.85, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": ["A1"] + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"], + "loadName": "nest_1_reservoir_290ml" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 107.76, + "topYDimension": 71.1, + "bottomXDimension": 106.75, + "bottomYDimension": 70.75, + "topHeight": 39.55, + "bottomHeight": 2.0 + }, + { + "shape": "cuboidal", + "topXDimension": 7.75, + "topYDimension": 70.75, + "bottomXDimension": 3.127, + "bottomYDimension": 66.85, + "topHeight": 2.0, + "bottomHeight": 0.0, + "xCount": 12 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/5.json b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/5.json new file mode 100644 index 00000000000..c26b422af66 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_100ul_pcr_full_skirt/5.json @@ -0,0 +1,1166 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["402501"], + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] + }, + "metadata": { + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.6 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10.65, + "wells": { + "A1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 14.7, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.9, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 20, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt" + }, + "namespace": "opentrons", + "version": 5, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + }, + "nest_96_wellplate_100ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 3.7 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 5.26, + "topDiameter": 5.34, + "topHeight": 14.7, + "bottomHeight": 9.89 + }, + { + "shape": "conical", + "bottomDiameter": 2.16, + "topDiameter": 5.26, + "topHeight": 9.89, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.015, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/5.json b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/5.json new file mode 100644 index 00000000000..16289560820 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_200ul_flat/5.json @@ -0,0 +1,1145 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["701011"], + "links": ["https://www.nest-biotech.com/cell-culture-plates/59415537.html"] + }, + "metadata": { + "displayName": "NEST 96 Well Plate 200 µL Flat", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.4, + "zDimension": 14.3 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 11.8, + "wells": { + "A1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H1": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 14.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H2": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 23.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H3": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 32.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H4": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 41.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H5": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 50.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H6": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 59.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H7": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 68.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H8": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 77.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H9": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 86.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H10": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 95.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H11": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 104.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "A12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 74.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "B12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 65.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "C12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 56.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "D12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 47.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "E12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 38.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "F12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 29.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "G12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 20.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + }, + "H12": { + "depth": 10.8, + "shape": "circular", + "diameter": 6.85, + "totalLiquidVolume": 200, + "x": 113.3, + "y": 11.2, + "z": 3.5, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "nest_96_wellplate_200ul_flat" + }, + "namespace": "opentrons", + "version": 5, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_flat_bottom_adapter": { + "x": 0, + "y": 0, + "z": 6.7 + }, + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 5.55 + }, + "nest_96_wellplate_200ul_flat": { + "x": 0, + "y": 0, + "z": 1.66 + } + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 6.32, + "topDiameter": 6.85, + "topHeight": 10.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/5.json b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/5.json new file mode 100644 index 00000000000..9bd335b22f0 --- /dev/null +++ b/shared-data/labware/definitions/2/nest_96_wellplate_2ml_deep/5.json @@ -0,0 +1,1261 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["503001", "503501"], + "links": ["https://www.nest-biotech.com/deep-well-plates/59253726.html"] + }, + "metadata": { + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 21.9, + "wells": { + "A1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H1": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 14.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H2": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 23.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H3": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 32.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H4": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 41.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H5": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 50.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H6": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 59.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H7": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 68.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H8": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 77.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H9": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 86.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H10": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 95.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H11": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 104.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 74.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "B12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 65.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "C12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 56.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "D12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 47.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "E12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 38.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "F12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 29.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "G12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 20.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + }, + "H12": { + "depth": 38.05, + "totalLiquidVolume": 2000, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "x": 113.3, + "y": 11.15, + "z": 2.95, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": true, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8 + }, + "namespace": "opentrons", + "version": 5, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + }, + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.2, + "topYDimension": 8.2, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "topHeight": 38.05, + "bottomHeight": 1.67 + }, + { + "shape": "cuboidal", + "topXDimension": 7.4, + "topYDimension": 7.4, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "topHeight": 1.67, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/3.json b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/3.json new file mode 100644 index 00000000000..32def2f88d5 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/3.json @@ -0,0 +1,232 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3"], + ["A4", "B4"] + ], + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "metadata": { + "displayName": "Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 124.35 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical" + }, + "wells": { + "A1": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "B1": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "C1": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 13.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "A2": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 67.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "B2": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 42.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "C2": { + "totalLiquidVolume": 15000, + "diameter": 14.7, + "shape": "circular", + "depth": 117.5, + "x": 38.88, + "y": 17.75, + "z": 6.85, + "geometryDefinitionId": "15mlconicalWell" + }, + "A3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 71.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "B3": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 71.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "A4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 106.38, + "y": 60.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + }, + "B4": { + "totalLiquidVolume": 50000, + "diameter": 27.81, + "shape": "circular", + "depth": 112.85, + "x": 106.38, + "y": 25.25, + "z": 7.3, + "geometryDefinitionId": "50mlconicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": ["A1", "B1", "C1", "A2", "B2", "C2"], + "metadata": { + "displayName": "Falcon 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352095", "352096", "352097", "352099", "352196"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + }, + { + "wells": ["A3", "B3", "A4", "B4"], + "metadata": { + "displayName": "Falcon 4x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352070", "352098"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "15mlconicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 14.5, + "topDiameter": 14.7, + "topHeight": 118.2, + "bottomHeight": 108.6 + }, + { + "shape": "conical", + "bottomDiameter": 13.5, + "topDiameter": 14.5, + "topHeight": 108.6, + "bottomHeight": 20.7 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 13.5, + "topHeight": 20.7, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.9, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + }, + "50mlconicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 27.52, + "topDiameter": 27.81, + "topHeight": 112.85, + "bottomHeight": 100.65 + }, + { + "shape": "conical", + "bottomDiameter": 26.18, + "topDiameter": 27.52, + "topHeight": 100.65, + "bottomHeight": 14.3 + }, + { + "shape": "conical", + "bottomDiameter": 6.15, + "topDiameter": 26.18, + "topHeight": 14.3, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/3.json b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/3.json new file mode 100644 index 00000000000..620eae6d643 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_15_tuberack_falcon_15ml_conical/3.json @@ -0,0 +1,259 @@ +{ + "ordering": [ + ["A1", "B1", "C1"], + ["A2", "B2", "C2"], + ["A3", "B3", "C3"], + ["A4", "B4", "C4"], + ["A5", "B5", "C5"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "tags": [], + "displayName": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL" + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.35 + }, + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "wells": { + "C1": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 17.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 42.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 117.5, + "diameter": 14.7, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 67.74, + "z": 6.85, + "geometryDefinitionId": "conicalWell" + } + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_15_tuberack_falcon_15ml_conical" + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "A2", + "B2", + "C2", + "A3", + "B3", + "C3", + "A4", + "B4", + "C4", + "A5", + "B5", + "C5" + ], + "metadata": { + "displayName": "Falcon 6x15 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Falcon", + "brandId": ["352095", "352096", "352097", "352099", "352196"], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 14.5, + "topDiameter": 14.7, + "topHeight": 118.2, + "bottomHeight": 108.6 + }, + { + "shape": "conical", + "bottomDiameter": 13.5, + "topDiameter": 14.5, + "topHeight": 108.6, + "bottomHeight": 20.7 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 13.5, + "topHeight": 20.7, + "bottomHeight": 0.8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.9, + "topHeight": 0.8, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/4.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/4.json new file mode 100644 index 00000000000..2a2f2d7e7a5 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_0.5ml_screwcap/4.json @@ -0,0 +1,370 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 0.5 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.35 + }, + "wells": { + "A1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 20.75, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 55.25, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 72.5, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 89.75, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 107, + "y": 68.62, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 107, + "y": 51.37, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 107, + "y": 34.12, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 107, + "y": 16.87, + "z": 24.15, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x0.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["633001"], + "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_0.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 8.56, + "topHeight": 25.2, + "bottomHeight": 13.95 + }, + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 7.9, + "topHeight": 13.95, + "bottomHeight": 11.9 + }, + { + "shape": "conical", + "topDiameter": 7.9, + "bottomDiameter": 5.8, + "topHeight": 11.9, + "bottomHeight": 10.2 + }, + { + "shape": "conical", + "topDiameter": 5.8, + "bottomDiameter": 2.8, + "topHeight": 10.2, + "bottomHeight": 0.95 + }, + { + "shape": "conical", + "topDiameter": 2.8, + "bottomDiameter": 2, + "topHeight": 0.95, + "bottomHeight": 0.14 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.64, + "topHeight": 0.14, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/3.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/3.json new file mode 100644 index 00000000000..81ec4d75408 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_screwcap/3.json @@ -0,0 +1,356 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.35 + }, + "wells": { + "A1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["634001"], + "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.55, + "bottomDiameter": 8.2, + "topHeight": 42.6, + "bottomHeight": 13.7 + }, + { + "shape": "conical", + "topDiameter": 8.2, + "bottomDiameter": 3.2, + "topHeight": 13.7, + "bottomHeight": 1.88 + }, + { + "shape": "conical", + "topDiameter": 3.2, + "bottomDiameter": 1.9, + "topHeight": 1.88, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.36, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/3.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/3.json new file mode 100644 index 00000000000..e5fd4626faa --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_1.5ml_snapcap/3.json @@ -0,0 +1,358 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.7 + }, + "wells": { + "A1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 37.9, + "shape": "circular", + "diameter": 9.9, + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.8, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["615601", "615001"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.9, + "bottomDiameter": 9.28, + "topHeight": 37.9, + "bottomHeight": 35.4 + }, + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.98, + "topHeight": 35.4, + "bottomHeight": 17.4 + }, + { + "shape": "conical", + "topDiameter": 8.98, + "bottomDiameter": 3.69, + "topHeight": 17.4, + "bottomHeight": 1.56 + }, + { + "shape": "spherical", + "radiusOfCurvature": 1.87, + "topHeight": 1.56, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/3.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/3.json new file mode 100644 index 00000000000..0e03ec3377e --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_screwcap/3.json @@ -0,0 +1,350 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.5 + }, + "wells": { + "A1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.62, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.37, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.12, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 44.05, + "shape": "circular", + "diameter": 8.55, + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.87, + "z": 5.45, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["635001"], + "links": ["https://www.nest-biotech.com/sample-vials/59249854.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_2ml_screwcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 8.14, + "topDiameter": 8.55, + "topHeight": 43.4, + "bottomHeight": 3.04 + }, + { + "shape": "conical", + "bottomDiameter": 6.5, + "topDiameter": 8.14, + "topHeight": 3.04, + "bottomHeight": 2.08 + }, + { + "shape": "conical", + "bottomDiameter": 1.21, + "topDiameter": 6.5, + "topHeight": 2.08, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/3.json b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/3.json new file mode 100644 index 00000000000..fcc6cffae94 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_aluminumblock_nest_2ml_snapcap/3.json @@ -0,0 +1,386 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 2 mL Snapcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.6 + }, + "wells": { + "A1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.62, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.37, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.12, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 39.28, + "shape": "circular", + "diameter": 9.28, + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.87, + "z": 4.32, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x2 mL Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "NEST", + "brandId": ["620611", "620011"], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201045.html" + ] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_2ml_snapcap" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 9.28, + "bottomDiameter": 8.9, + "topHeight": 39.28, + "bottomHeight": 15.04 + }, + { + "shape": "conical", + "topDiameter": 8.9, + "bottomDiameter": 8.74, + "topHeight": 15.04, + "bottomHeight": 6.26 + }, + { + "shape": "conical", + "topDiameter": 8.74, + "bottomDiameter": 8.0, + "topHeight": 6.26, + "bottomHeight": 3.98 + }, + { + "shape": "conical", + "topDiameter": 8.0, + "bottomDiameter": 7.2, + "topHeight": 3.98, + "bottomHeight": 2.74 + }, + { + "shape": "conical", + "topDiameter": 7.2, + "bottomDiameter": 7.0, + "topHeight": 2.74, + "bottomHeight": 2.59 + }, + { + "shape": "conical", + "topDiameter": 7.0, + "bottomDiameter": 6.0, + "topHeight": 2.59, + "bottomHeight": 1.83 + }, + { + "shape": "conical", + "topDiameter": 6.0, + "bottomDiameter": 5.0, + "topHeight": 1.83, + "bottomHeight": 1.21 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.19, + "topHeight": 1.21, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/3.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/3.json new file mode 100644 index 00000000000..454980ae7ff --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/3.json @@ -0,0 +1,418 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "metadata": { + "tags": [], + "displayName": "Opentrons 24 Tube Rack with Eppendorf 1.5 mL Safe-Lock Snapcap", + "displayVolumeUnits": "mL", + "displayCategory": "tubeRack" + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.85 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap" + }, + "wells": { + "D1": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 18.21, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38.1, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 57.99, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 77.88, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 97.77, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 17.59, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 36.87, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 56.15, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 37.8, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 117.66, + "y": 75.43, + "z": 42.05, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Eppendorf 24x1.5 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363204", + "022363212", + "022363221", + "022363247", + "022363263", + "022363280", + "022363280", + "022363301", + "022363328" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "bottomDiameter": 9.6, + "topDiameter": 10, + "topHeight": 37.8, + "bottomHeight": 32.49 + }, + { + "shape": "conical", + "bottomDiameter": 9.2, + "topDiameter": 9.6, + "topHeight": 32.49, + "bottomHeight": 31.97 + }, + { + "shape": "conical", + "bottomDiameter": 9.02, + "topDiameter": 9.2, + "topHeight": 31.97, + "bottomHeight": 31.16 + }, + { + "shape": "conical", + "bottomDiameter": 8.9, + "topDiameter": 9.02, + "topHeight": 31.16, + "bottomHeight": 28.16 + }, + { + "shape": "conical", + "bottomDiameter": 8.5, + "topDiameter": 8.9, + "topHeight": 28.16, + "bottomHeight": 17.56 + }, + { + "shape": "conical", + "bottomDiameter": 8, + "topDiameter": 8.5, + "topHeight": 17.56, + "bottomHeight": 15.89 + }, + { + "shape": "conical", + "bottomDiameter": 6, + "topDiameter": 8, + "topHeight": 15.89, + "bottomHeight": 9.24 + }, + { + "shape": "conical", + "bottomDiameter": 4, + "topDiameter": 6, + "topHeight": 9.24, + "bottomHeight": 2.9 + }, + { + "shape": "conical", + "bottomDiameter": 3.26, + "topDiameter": 4, + "topHeight": 2.9, + "bottomHeight": 1 + }, + { + "shape": "conical", + "bottomDiameter": 2, + "topDiameter": 3.26, + "topHeight": 1, + "bottomHeight": 0.2 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.6, + "topHeight": 0.2, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/3.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/3.json new file mode 100644 index 00000000000..bceefdf08ad --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/3.json @@ -0,0 +1,473 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "schemaVersion": 2, + "version": 3, + "namespace": "opentrons", + "metadata": { + "displayVolumeUnits": "mL", + "displayCategory": "tubeRack", + "displayName": "Opentrons 24 Tube Rack with Eppendorf 2 mL Safe-Lock Snapcap", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 79.85 + }, + "parameters": { + "format": "irregular", + "isTiprack": false, + "loadName": "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap", + "isMagneticModuleCompatible": false + }, + "wells": { + "D1": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A1": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 18.21, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38.1, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 57.99, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 77.88, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 97.77, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 17.59, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 36.87, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 56.15, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 39.1, + "diameter": 10, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 117.66, + "y": 75.43, + "z": 41.27, + "geometryDefinitionId": "conicalWell" + } + }, + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ], + "metadata": { + "displayName": "Eppendorf 24x2 mL Safelock Snapcap", + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022363344", + "022363352", + "022363379", + "022363395", + "022363417", + "022363433", + "022363450", + "022363476" + ], + "links": [ + "https://online-shop.eppendorf.us/US-en/Laboratory-Consumables-44512/Tubes-44515/Eppendorf-Safe-Lock-Tubes-PF-8863.html" + ] + } + } + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 10.0, + "bottomDiameter": 9.6, + "topHeight": 39.02, + "bottomHeight": 33.96 + }, + { + "shape": "conical", + "topDiameter": 9.6, + "bottomDiameter": 9.2, + "topHeight": 33.96, + "bottomHeight": 32.5 + }, + { + "shape": "conical", + "topDiameter": 9.2, + "bottomDiameter": 9.1, + "topHeight": 32.5, + "bottomHeight": 25.26 + }, + { + "shape": "conical", + "topDiameter": 9.1, + "bottomDiameter": 9.0, + "topHeight": 25.26, + "bottomHeight": 13.32 + }, + { + "shape": "conical", + "topDiameter": 9.0, + "bottomDiameter": 8.9, + "topHeight": 13.32, + "bottomHeight": 10.17 + }, + { + "shape": "conical", + "topDiameter": 8.9, + "bottomDiameter": 8.78, + "topHeight": 10.17, + "bottomHeight": 6.97 + }, + { + "shape": "conical", + "topDiameter": 8.78, + "bottomDiameter": 8.6, + "topHeight": 6.97, + "bottomHeight": 5.43 + }, + { + "shape": "conical", + "topDiameter": 8.6, + "bottomDiameter": 8.5, + "topHeight": 5.43, + "bottomHeight": 5.15 + }, + { + "shape": "conical", + "topDiameter": 8.5, + "bottomDiameter": 8.4, + "topHeight": 5.15, + "bottomHeight": 5.03 + }, + { + "shape": "conical", + "topDiameter": 8.4, + "bottomDiameter": 8.2, + "topHeight": 5.03, + "bottomHeight": 4.53 + }, + { + "shape": "conical", + "topDiameter": 8.2, + "bottomDiameter": 8.0, + "topHeight": 4.53, + "bottomHeight": 4.29 + }, + { + "shape": "conical", + "topDiameter": 8.0, + "bottomDiameter": 7.7, + "topHeight": 4.29, + "bottomHeight": 3.93 + }, + { + "shape": "conical", + "topDiameter": 7.7, + "bottomDiameter": 7.6, + "topHeight": 3.93, + "bottomHeight": 3.67 + }, + { + "shape": "conical", + "topDiameter": 7.6, + "bottomDiameter": 7.2, + "topHeight": 3.67, + "bottomHeight": 3.14 + }, + { + "shape": "conical", + "topDiameter": 7.2, + "bottomDiameter": 6.8, + "topHeight": 3.14, + "bottomHeight": 2.75 + }, + { + "shape": "conical", + "topDiameter": 6.8, + "bottomDiameter": 6.4, + "topHeight": 2.75, + "bottomHeight": 2.45 + }, + { + "shape": "conical", + "topDiameter": 6.4, + "bottomDiameter": 6.0, + "topHeight": 2.45, + "bottomHeight": 2.2 + }, + { + "shape": "conical", + "topDiameter": 6.0, + "bottomDiameter": 5.0, + "topHeight": 2.2, + "bottomHeight": 1.45 + }, + { + "shape": "spherical", + "radiusOfCurvature": 2.88, + "topHeight": 1.45, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/4.json b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/4.json new file mode 100644 index 00000000000..e6154cc2918 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_24_tuberack_nest_0.5ml_screwcap/4.json @@ -0,0 +1,371 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 24 Tube Rack with NEST 0.5 mL Screwcap", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 85.2 + }, + "wells": { + "A1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D1": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 18.21, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D2": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 38.1, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D3": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 57.99, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D4": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 77.88, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D5": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 97.77, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "A6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 75.43, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "B6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 56.15, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "C6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 36.87, + "z": 60, + "geometryDefinitionId": "conicalWell" + }, + "D6": { + "depth": 25.2, + "shape": "circular", + "diameter": 8.56, + "totalLiquidVolume": 500, + "x": 117.66, + "y": 17.59, + "z": 60, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x0.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["633001"], + "links": ["https://www.nest-biotech.com/sample-vials/59810336.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_tuberack_nest_0.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 8.56, + "topHeight": 25.2, + "bottomHeight": 13.95 + }, + { + "shape": "conical", + "topDiameter": 8.56, + "bottomDiameter": 7.9, + "topHeight": 13.95, + "bottomHeight": 11.9 + }, + { + "shape": "conical", + "topDiameter": 7.9, + "bottomDiameter": 5.8, + "topHeight": 11.9, + "bottomHeight": 10.2 + }, + { + "shape": "conical", + "topDiameter": 5.8, + "bottomDiameter": 2.8, + "topHeight": 10.2, + "bottomHeight": 0.95 + }, + { + "shape": "conical", + "topDiameter": 2.8, + "bottomDiameter": 2, + "topHeight": 0.95, + "bottomHeight": 0.14 + }, + { + "shape": "spherical", + "radiusOfCurvature": 3.64, + "topHeight": 0.14, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/3.json b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/3.json new file mode 100644 index 00000000000..541e1aef1f0 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_6_tuberack_nest_50ml_conical/3.json @@ -0,0 +1,150 @@ +{ + "ordering": [ + ["A1", "B1"], + ["A2", "B2"], + ["A3", "B3"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "metadata": { + "displayName": "Opentrons 6 Tube Rack with NEST 50 mL Conical", + "displayCategory": "tubeRack", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 120.35 + }, + "wells": { + "A1": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B1": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 35.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A2": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B2": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 70.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "A3": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 60.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + }, + "B3": { + "depth": 113.05, + "shape": "circular", + "diameter": 28.18, + "totalLiquidVolume": 50000, + "x": 105.5, + "y": 25.24, + "z": 7.3, + "geometryDefinitionId": "conicalWell" + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 6x50 mL Conical", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["602052"], + "links": ["https://www.nest-biotech.com/centrifuge-tube/59282837.html"] + }, + "wells": ["A1", "B1", "A2", "B2", "A3", "B3"] + } + ], + "parameters": { + "format": "irregular", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_6_tuberack_nest_50ml_conical" + }, + "namespace": "opentrons", + "version": 3, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "shape": "conical", + "topDiameter": 28.18, + "bottomDiameter": 27.95, + "topHeight": 113.1, + "bottomHeight": 109.1 + }, + { + "shape": "conical", + "topDiameter": 27.95, + "bottomDiameter": 27.69, + "topHeight": 109.1, + "bottomHeight": 108.8 + }, + { + "shape": "conical", + "topDiameter": 27.69, + "bottomDiameter": 26.0, + "topHeight": 108.8, + "bottomHeight": 14.35 + }, + { + "shape": "conical", + "topDiameter": 26.0, + "bottomDiameter": 4.5, + "topHeight": 14.35, + "bottomHeight": 0.0 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json new file mode 100644 index 00000000000..a91ebe88259 --- /dev/null +++ b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json @@ -0,0 +1,83 @@ +{ + "ordering": [["A1"]], + "brand": { + "brand": "Opentrons", + "brandId": ["999-00258"], + "links": [ + "https://opentrons.com/products/opentrons-tough-300-ml-1-well-reservoir-25-count/" + ] + }, + "metadata": { + "displayName": "Opentrons Tough 300 mL 1 Well Reservoir", + "displayCategory": "reservoir", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 45.3 + }, + "wells": { + "A1": { + "depth": 42.3, + "shape": "rectangular", + "xDimension": 108.7, + "yDimension": 70.7, + "totalLiquidVolume": 300000, + "x": 63.88, + "y": 42.74, + "z": 3, + "geometryDefinitionId": "MainWellGeometry" + } + }, + "groups": [ + { + "wells": ["A1"], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_tough_1_reservoir_300ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "MainWellGeometry": { + "sections": [ + { + "shape": "cuboidal", + "bottomHeight": 2.29, + "topHeight": 42.3, + "bottomXDimension": 108, + "bottomYDimension": 70.01, + "topXDimension": 108.7, + "topYDimension": 70.7 + }, + { + "shape": "cuboidal", + "xCount": 12, + "yCount": 8, + "bottomHeight": 0, + "topHeight": 2.29, + "bottomXDimension": 1.8, + "bottomYDimension": 1.8, + "topXDimension": 9, + "topYDimension": 9 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/4.json b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/4.json new file mode 100644 index 00000000000..4ac4714cc81 --- /dev/null +++ b/shared-data/labware/definitions/2/usascientific_12_reservoir_22ml/4.json @@ -0,0 +1,237 @@ +{ + "ordering": [ + ["A1"], + ["A2"], + ["A3"], + ["A4"], + ["A5"], + ["A6"], + ["A7"], + ["A8"], + ["A9"], + ["A10"], + ["A11"], + ["A12"] + ], + "schemaVersion": 2, + "version": 4, + "namespace": "opentrons", + "metadata": { + "displayName": "USA Scientific 12 Well Reservoir 22 mL", + "displayVolumeUnits": "mL", + "displayCategory": "reservoir", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.2 + }, + "parameters": { + "format": "trough", + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "usascientific_12_reservoir_22ml", + "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] + }, + "wells": { + "A1": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 14.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 23.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 32.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 41.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 50.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 59.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 68.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 77.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 86.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 95.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 104.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "shape": "rectangular", + "depth": 41.75, + "xDimension": 8.317, + "yDimension": 71.88, + "totalLiquidVolume": 22000, + "x": 113.38, + "y": 42.71, + "z": 2.45, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "brand": { + "brand": "USA Scientific", + "brandId": ["1061-8150"], + "links": [ + "https://www.usascientific.com/12-channel-automation-reservoir.aspx" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.317, + "topYDimension": 71.88, + "bottomXDimension": 8.139, + "bottomYDimension": 71.75, + "topHeight": 41.75, + "bottomHeight": 4.0 + }, + { + "shape": "squaredcone", + "bottomCrossSection": "circular", + "circleDiameter": 1.06, + "rectangleXDimension": 8.1, + "rectangleYDimension": 8.75, + "topHeight": 4.0, + "bottomHeight": 0.25, + "xCount": 1, + "yCount": 8 + }, + { + "shape": "spherical", + "radiusOfCurvature": 0.687, + "topHeight": 0.25, + "bottomHeight": 0.0, + "yCount": 8 + } + ] + } + } +} diff --git a/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/4.json b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/4.json new file mode 100644 index 00000000000..6e6eb664da4 --- /dev/null +++ b/shared-data/labware/definitions/2/usascientific_96_wellplate_2.4ml_deep/4.json @@ -0,0 +1,1243 @@ +{ + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "USA Scientific", + "brandId": ["1896-2000"], + "links": [ + "https://www.usascientific.com/2ml-deep96-well-plateone-bulk.aspx" + ] + }, + "metadata": { + "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", + "displayCategory": "wellPlate", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 44.1 + }, + "wells": { + "H1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A1": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 14.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A2": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 23.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A3": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 32.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A4": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 41.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A5": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 50.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A6": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 59.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A7": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 68.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A8": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 77.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A9": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 86.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A10": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 95.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A11": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 104.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "H12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 11.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "G12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 20.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "F12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 29.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "E12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 38.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "D12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 47.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "C12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 56.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "B12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 65.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + }, + "A12": { + "depth": 41.3, + "shape": "rectangular", + "xDimension": 8.2, + "yDimension": 8.2, + "totalLiquidVolume": 2400, + "x": 113.4, + "y": 74.3, + "z": 2.8, + "geometryDefinitionId": "cuboidalWell" + } + }, + "groups": [ + { + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + "metadata": { + "wellBottomShape": "v" + } + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 14.94, + "loadName": "usascientific_96_wellplate_2.4ml_deep" + }, + "namespace": "opentrons", + "version": 4, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "usascientific_96_wellplate_2.4ml_deep": { + "x": 0, + "y": 0, + "z": 1.5 + } + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "shape": "cuboidal", + "topXDimension": 8.2, + "topYDimension": 8.2, + "bottomXDimension": 7.52, + "bottomYDimension": 7.52, + "topHeight": 41.3, + "bottomHeight": 2.63 + }, + { + "shape": "cuboidal", + "topXDimension": 7.52, + "topYDimension": 7.52, + "bottomXDimension": 0.25, + "bottomYDimension": 0.25, + "topHeight": 2.63, + "bottomHeight": 0.0 + } + ] + } + } +} From fb645e73aca1b7f8f85407c76c6c6fae371eaeae Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 4 Aug 2025 17:39:18 -0400 Subject: [PATCH 12/20] Remove test xfails for labware that we've just fixed. --- shared-data/js/__tests__/labwareDefSchemaV2.test.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index f684fb660ac..b2743b4c57f 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -130,11 +130,8 @@ const expectedWellsNotMatchingZDimension: Record> = { // This batch may have incompletely-updated geometry from recent work related to // liquid level detection and meniscus-relative pipetting. Probably, the wells were // updated but not the overall labware dimensions. This needs to be investigated and fixed. - nest_96_wellplate_100ul_pcr_full_skirt: standard96WellNames, 'opentrons_24_tuberack_nest_1.5ml_screwcap': standard24WellNames, opentrons_24_tuberack_nest_2ml_screwcap: standard24WellNames, - 'corning_12_wellplate_6.9ml_flat': generateStandardWellNames(3, 4), - biorad_96_wellplate_200ul_pcr: standard96WellNames, } const filterWells = ( @@ -317,10 +314,6 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { const labwareWithWellDepthMismatches = [ // todo(mm, 2025-03-17): Investigate and resolve these mismatches. - 'corning_24_wellplate_3.4ml_flat', - 'corning_6_wellplate_16.8ml_flat', - 'corning_96_wellplate_360ul_flat', - 'nest_96_wellplate_2ml_deep', 'opentrons_15_tuberack_falcon_15ml_conical', 'opentrons_24_aluminumblock_nest_1.5ml_screwcap', 'opentrons_24_aluminumblock_nest_2ml_screwcap', From 6f322c32e34c886683b5fc55b43bbcf42ba85035 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 5 Aug 2025 15:13:02 -0400 Subject: [PATCH 13/20] Add xfails for new labware. I've asked @rclarke0 and @HovanNgoOpentrons about these. They'll probably get fixed in a separate PR. --- .../js/__tests__/labwareDefSchemaV2.test.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index b2743b4c57f..b98076e1a81 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -337,7 +337,21 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { expect(depthFromWell).toStrictEqual(depthFromGeometry) } - expect(xyDimensionsFromWell).toStrictEqual(xyDimensionsFromGeometry) + const labwareWithXYDimensionMismatches = [ + // todo(mm, 2025-08-05): Investigate and resolve these mismatches. + 'eppendorf_96_wellplate_1000ul', + 'nest_8_reservoir_22ml', + ] + + if ( + labwareWithXYDimensionMismatches.includes( + labwareDef.parameters.loadName + ) + ) { + expect(xyDimensionsFromWell).not.toStrictEqual(xyDimensionsFromGeometry) + } else { + expect(xyDimensionsFromWell).toStrictEqual(xyDimensionsFromGeometry) + } } }) } From 40500da7122a9a8e0d1598fc24bc25c23cd6feb9 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 5 Aug 2025 16:26:39 -0400 Subject: [PATCH 14/20] nest_1_reservoir_195ml: Complete my incomplete fix for swapped xDimension/yDimension. --- .../labware/definitions/2/nest_1_reservoir_195ml/4.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json index 6549e348b50..8598d6fad13 100644 --- a/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json +++ b/shared-data/labware/definitions/2/nest_1_reservoir_195ml/4.json @@ -61,8 +61,8 @@ "shape": "cuboidal", "topXDimension": 107.3, "topYDimension": 71.3, - "bottomXDimension": 70.6, - "bottomYDimension": 106.8, + "bottomXDimension": 106.8, + "bottomYDimension": 70.6, "topHeight": 26.85, "bottomHeight": 2.0 }, From 5682cdadb9a2e5fb99a72af49cf8629e4957c8df Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Wed, 6 Aug 2025 14:56:58 -0400 Subject: [PATCH 15/20] Update Quick Transfer constants. --- .../ODD/QuickTransferFlow/constants.ts | 108 +++++++++--------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/app/src/organisms/ODD/QuickTransferFlow/constants.ts b/app/src/organisms/ODD/QuickTransferFlow/constants.ts index 389f5d816d0..75adffc72e5 100644 --- a/app/src/organisms/ODD/QuickTransferFlow/constants.ts +++ b/app/src/organisms/ODD/QuickTransferFlow/constants.ts @@ -49,52 +49,52 @@ export const QUICK_TRANSFER_INCOMPATIBLE_LABWARE = [ // these lists are generated by the util generateCompatibleLabwareForPipette in ./utils export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [ - 'opentrons/agilent_1_reservoir_290ml/3', + 'opentrons/agilent_1_reservoir_290ml/4', 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/3', - 'opentrons/axygen_1_reservoir_90ml/2', + 'opentrons/axygen_1_reservoir_90ml/3', 'opentrons/axygen_96_wellplate_500ul/2', 'opentrons/biorad_384_wellplate_50ul/4', - 'opentrons/biorad_96_wellplate_200ul_pcr/4', - 'opentrons/corning_12_wellplate_6.9ml_flat/4', - 'opentrons/corning_24_wellplate_3.4ml_flat/4', - 'opentrons/corning_384_wellplate_112ul_flat/4', - 'opentrons/corning_48_wellplate_1.6ml_flat/5', - 'opentrons/corning_6_wellplate_16.8ml_flat/4', - 'opentrons/corning_96_wellplate_360ul_flat/4', + 'opentrons/biorad_96_wellplate_200ul_pcr/5', + 'opentrons/corning_12_wellplate_6.9ml_flat/5', + 'opentrons/corning_24_wellplate_3.4ml_flat/5', + 'opentrons/corning_384_wellplate_112ul_flat/5', + 'opentrons/corning_48_wellplate_1.6ml_flat/6', + 'opentrons/corning_6_wellplate_16.8ml_flat/5', + 'opentrons/corning_96_wellplate_360ul_flat/5', 'opentrons/eppendorf_96_wellplate_1000ul/1', 'opentrons/geb_96_tiprack_1000ul/1', 'opentrons/geb_96_tiprack_10ul/1', 'opentrons/ibidi_96_square_well_plate_300ul/2', 'opentrons/milliplex_microtiter_plate/1', - 'opentrons/nest_12_reservoir_15ml/2', + 'opentrons/nest_12_reservoir_15ml/3', 'opentrons/nest_12_reservoir_22ml/1', - 'opentrons/nest_1_reservoir_195ml/3', - 'opentrons/nest_1_reservoir_290ml/3', + 'opentrons/nest_1_reservoir_195ml/4', + 'opentrons/nest_1_reservoir_290ml/4', 'opentrons/nest_24_wellplate_10.4ml/1', 'opentrons/nest_8_reservoir_22ml/1', - 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/4', - 'opentrons/nest_96_wellplate_200ul_flat/4', - 'opentrons/nest_96_wellplate_2ml_deep/4', - 'opentrons/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/2', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/5', + 'opentrons/nest_96_wellplate_200ul_flat/5', + 'opentrons/nest_96_wellplate_2ml_deep/5', + 'opentrons/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/3', 'opentrons/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/2', - 'opentrons/opentrons_15_tuberack_falcon_15ml_conical/2', + 'opentrons/opentrons_15_tuberack_falcon_15ml_conical/3', 'opentrons/opentrons_15_tuberack_nest_15ml_conical/2', 'opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/3', - 'opentrons/opentrons_24_aluminumblock_nest_0.5ml_screwcap/3', - 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/2', - 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/2', - 'opentrons/opentrons_24_aluminumblock_nest_2ml_screwcap/2', - 'opentrons/opentrons_24_aluminumblock_nest_2ml_snapcap/2', - 'opentrons/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/2', - 'opentrons/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/2', + 'opentrons/opentrons_24_aluminumblock_nest_0.5ml_screwcap/4', + 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/3', + 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/3', + 'opentrons/opentrons_24_aluminumblock_nest_2ml_screwcap/3', + 'opentrons/opentrons_24_aluminumblock_nest_2ml_snapcap/3', + 'opentrons/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/3', + 'opentrons/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/3', 'opentrons/opentrons_24_tuberack_generic_2ml_screwcap/2', - 'opentrons/opentrons_24_tuberack_nest_0.5ml_screwcap/3', + 'opentrons/opentrons_24_tuberack_nest_0.5ml_screwcap/4', 'opentrons/opentrons_24_tuberack_nest_1.5ml_screwcap/2', 'opentrons/opentrons_24_tuberack_nest_1.5ml_snapcap/2', 'opentrons/opentrons_24_tuberack_nest_2ml_screwcap/2', 'opentrons/opentrons_24_tuberack_nest_2ml_snapcap/2', 'opentrons/opentrons_6_tuberack_falcon_50ml_conical/2', - 'opentrons/opentrons_6_tuberack_nest_50ml_conical/2', + 'opentrons/opentrons_6_tuberack_nest_50ml_conical/3', 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/4', 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', @@ -120,32 +120,32 @@ export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [ 'opentrons/smc_384_read_plate/2', 'opentrons/thermoscientificnunc_96_wellplate_1300ul/3', 'opentrons/thermoscientificnunc_96_wellplate_2000ul/3', - 'opentrons/usascientific_12_reservoir_22ml/3', - 'opentrons/usascientific_96_wellplate_2.4ml_deep/3', + 'opentrons/usascientific_12_reservoir_22ml/4', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/4', ] export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [ - 'opentrons/agilent_1_reservoir_290ml/3', + 'opentrons/agilent_1_reservoir_290ml/4', 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/3', - 'opentrons/axygen_1_reservoir_90ml/2', + 'opentrons/axygen_1_reservoir_90ml/3', 'opentrons/axygen_96_wellplate_500ul/2', 'opentrons/biorad_384_wellplate_50ul/4', - 'opentrons/biorad_96_wellplate_200ul_pcr/4', - 'opentrons/corning_384_wellplate_112ul_flat/4', - 'opentrons/corning_96_wellplate_360ul_flat/4', + 'opentrons/biorad_96_wellplate_200ul_pcr/5', + 'opentrons/corning_384_wellplate_112ul_flat/5', + 'opentrons/corning_96_wellplate_360ul_flat/5', 'opentrons/eppendorf_96_wellplate_1000ul/1', 'opentrons/geb_96_tiprack_1000ul/1', 'opentrons/geb_96_tiprack_10ul/1', 'opentrons/ibidi_96_square_well_plate_300ul/2', 'opentrons/milliplex_microtiter_plate/1', - 'opentrons/nest_12_reservoir_15ml/2', + 'opentrons/nest_12_reservoir_15ml/3', 'opentrons/nest_12_reservoir_22ml/1', - 'opentrons/nest_1_reservoir_195ml/3', - 'opentrons/nest_1_reservoir_290ml/3', + 'opentrons/nest_1_reservoir_195ml/4', + 'opentrons/nest_1_reservoir_290ml/4', 'opentrons/nest_8_reservoir_22ml/1', - 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/4', - 'opentrons/nest_96_wellplate_200ul_flat/4', - 'opentrons/nest_96_wellplate_2ml_deep/4', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/5', + 'opentrons/nest_96_wellplate_200ul_flat/5', + 'opentrons/nest_96_wellplate_2ml_deep/5', 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/4', 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', @@ -171,32 +171,32 @@ export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [ 'opentrons/smc_384_read_plate/2', 'opentrons/thermoscientificnunc_96_wellplate_1300ul/3', 'opentrons/thermoscientificnunc_96_wellplate_2000ul/3', - 'opentrons/usascientific_12_reservoir_22ml/3', - 'opentrons/usascientific_96_wellplate_2.4ml_deep/3', + 'opentrons/usascientific_12_reservoir_22ml/4', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/4', ] export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [ - 'opentrons/agilent_1_reservoir_290ml/3', + 'opentrons/agilent_1_reservoir_290ml/4', 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/3', - 'opentrons/axygen_1_reservoir_90ml/2', + 'opentrons/axygen_1_reservoir_90ml/3', 'opentrons/axygen_96_wellplate_500ul/2', 'opentrons/biorad_384_wellplate_50ul/4', - 'opentrons/biorad_96_wellplate_200ul_pcr/4', - 'opentrons/corning_384_wellplate_112ul_flat/4', - 'opentrons/corning_96_wellplate_360ul_flat/4', + 'opentrons/biorad_96_wellplate_200ul_pcr/5', + 'opentrons/corning_384_wellplate_112ul_flat/5', + 'opentrons/corning_96_wellplate_360ul_flat/5', 'opentrons/eppendorf_96_wellplate_1000ul/1', 'opentrons/geb_96_tiprack_1000ul/1', 'opentrons/geb_96_tiprack_10ul/1', 'opentrons/ibidi_96_square_well_plate_300ul/2', 'opentrons/milliplex_microtiter_plate/1', - 'opentrons/nest_12_reservoir_15ml/2', + 'opentrons/nest_12_reservoir_15ml/3', 'opentrons/nest_12_reservoir_22ml/1', - 'opentrons/nest_1_reservoir_195ml/3', - 'opentrons/nest_1_reservoir_290ml/3', + 'opentrons/nest_1_reservoir_195ml/4', + 'opentrons/nest_1_reservoir_290ml/4', 'opentrons/nest_8_reservoir_22ml/1', - 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/4', - 'opentrons/nest_96_wellplate_200ul_flat/4', - 'opentrons/nest_96_wellplate_2ml_deep/4', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/5', + 'opentrons/nest_96_wellplate_200ul_flat/5', + 'opentrons/nest_96_wellplate_2ml_deep/5', 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/4', 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', @@ -222,8 +222,8 @@ export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [ 'opentrons/smc_384_read_plate/2', 'opentrons/thermoscientificnunc_96_wellplate_1300ul/3', 'opentrons/thermoscientificnunc_96_wellplate_2000ul/3', - 'opentrons/usascientific_12_reservoir_22ml/3', - 'opentrons/usascientific_96_wellplate_2.4ml_deep/3', + 'opentrons/usascientific_12_reservoir_22ml/4', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/4', ] export const ASPIRATE_SETTING_OPTIONS = { From 2b9899fa73a71e2b4c77ade700d0c788979b9ffb Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 11 Aug 2025 10:53:41 -0400 Subject: [PATCH 16/20] Merge fixup: Delete now-unnecessary v2 of opentrons_tough_1_reservoir_300ml. --- .../opentrons_tough_1_reservoir_300ml/2.json | 83 ------------------- 1 file changed, 83 deletions(-) delete mode 100644 shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json diff --git a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json b/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json deleted file mode 100644 index a91ebe88259..00000000000 --- a/shared-data/labware/definitions/2/opentrons_tough_1_reservoir_300ml/2.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "ordering": [["A1"]], - "brand": { - "brand": "Opentrons", - "brandId": ["999-00258"], - "links": [ - "https://opentrons.com/products/opentrons-tough-300-ml-1-well-reservoir-25-count/" - ] - }, - "metadata": { - "displayName": "Opentrons Tough 300 mL 1 Well Reservoir", - "displayCategory": "reservoir", - "displayVolumeUnits": "mL", - "tags": [] - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 45.3 - }, - "wells": { - "A1": { - "depth": 42.3, - "shape": "rectangular", - "xDimension": 108.7, - "yDimension": 70.7, - "totalLiquidVolume": 300000, - "x": 63.88, - "y": 42.74, - "z": 3, - "geometryDefinitionId": "MainWellGeometry" - } - }, - "groups": [ - { - "wells": ["A1"], - "metadata": { - "wellBottomShape": "v" - } - } - ], - "parameters": { - "format": "trough", - "isTiprack": false, - "isMagneticModuleCompatible": false, - "loadName": "opentrons_tough_1_reservoir_300ml", - "quirks": ["centerMultichannelOnWells", "touchTipDisabled"] - }, - "namespace": "opentrons", - "version": 2, - "schemaVersion": 2, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "innerLabwareGeometry": { - "MainWellGeometry": { - "sections": [ - { - "shape": "cuboidal", - "bottomHeight": 2.29, - "topHeight": 42.3, - "bottomXDimension": 108, - "bottomYDimension": 70.01, - "topXDimension": 108.7, - "topYDimension": 70.7 - }, - { - "shape": "cuboidal", - "xCount": 12, - "yCount": 8, - "bottomHeight": 0, - "topHeight": 2.29, - "bottomXDimension": 1.8, - "bottomYDimension": 1.8, - "topXDimension": 9, - "topYDimension": 9 - } - ] - } - } -} From 25660ae1a3dd83735b6129408c0378ae3ee4e86d Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 11 Aug 2025 11:03:44 -0400 Subject: [PATCH 17/20] Merge fixup: Delete test xfails for eppendorf_96_wellplate_1000ul and nest_8_reservoir_22ml. These were resolved in edge. --- .../js/__tests__/labwareDefSchemaV2.test.ts | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index 01cb8ed203e..8ff1a01e335 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -381,21 +381,7 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { expect(depthFromWell).toStrictEqual(depthFromGeometry) } - const labwareWithXYDimensionMismatches = [ - // todo(mm, 2025-08-05): Investigate and resolve these mismatches. - 'eppendorf_96_wellplate_1000ul', - 'nest_8_reservoir_22ml', - ] - - if ( - labwareWithXYDimensionMismatches.includes( - labwareDef.parameters.loadName - ) - ) { - expect(xyDimensionsFromWell).not.toStrictEqual(xyDimensionsFromGeometry) - } else { - expect(xyDimensionsFromWell).toStrictEqual(xyDimensionsFromGeometry) - } + expect(xyDimensionsFromWell).toStrictEqual(xyDimensionsFromGeometry) } }) } From c53c4b40928a72a26842a3baba42c1fed42530d7 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 11 Aug 2025 11:04:58 -0400 Subject: [PATCH 18/20] Merge fixup: Merge Rhyanne's new test with mine. --- .../js/__tests__/labwareDefSchemaV2.test.ts | 44 ------------------- 1 file changed, 44 deletions(-) diff --git a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts index 8ff1a01e335..b2743b4c57f 100644 --- a/shared-data/js/__tests__/labwareDefSchemaV2.test.ts +++ b/shared-data/js/__tests__/labwareDefSchemaV2.test.ts @@ -259,50 +259,6 @@ const checkGeometryDefinitions = (labwareDef: LabwareDefinition2): void => { } }) - test('first frustum section should match well diameter or x/y dimensions within ±1 mm', () => { - // TODO(rc, 2025-08-05): Review labware with 0–2 mm geometry discrepancies. - const wells = labwareDef.wells ?? {} - const geometries = labwareDef.innerLabwareGeometry ?? {} - // Allow minor mismatch due to simplified geometric approximation - const allowedDiscrepancy = 2 - // Ignoring bc of a known x y mismatch - if ( - labwareDef.parameters.loadName === 'nest_1_reservoir_195ml' && - labwareDef.version === 3 - ) { - return - } - - for (const well of Object.values(wells)) { - const geometryId = well.geometryDefinitionId ?? '' - const geometry = geometries[geometryId] - - if ( - !geometry || - !('sections' in geometry) || - !Array.isArray(geometry.sections) - ) { - continue - } - - const section = geometry.sections[0] - if (!section) continue - - if (well.shape === 'circular' && section.shape === 'conical') { - expect( - Math.abs(section.topDiameter - well.diameter) - ).toBeLessThanOrEqual(allowedDiscrepancy) - } else if (well.shape === 'rectangular' && section.shape === 'cuboidal') { - expect( - Math.abs(section.topXDimension - well.xDimension) - ).toBeLessThanOrEqual(allowedDiscrepancy) - expect( - Math.abs(section.topYDimension - well.yDimension) - ).toBeLessThanOrEqual(allowedDiscrepancy) - } - } - }) - test('the bottom of a well geometry should be at height 0', () => { for (const geometry of Object.values( labwareDef.innerLabwareGeometry ?? {} From e4de6cfe86d88cbd0f1c3ac96ea5186b6d1923d5 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 11 Aug 2025 11:55:49 -0400 Subject: [PATCH 19/20] Add labware versions introduced in this PR to apiLevel 2.26. --- .../core/engine/_default_labware_versions.py | 36 +++++++++++++++---- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py b/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py index 58e0f9d1680..dd5bb91b6f1 100644 --- a/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py +++ b/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py @@ -112,6 +112,36 @@ "thermoscientificnunc_96_wellplate_2000ul": 3, "usascientific_96_wellplate_2.4ml_deep": 3, }, + APIVersion(2, 26): { + "agilent_1_reservoir_290ml": 4, + "axygen_1_reservoir_90ml": 3, + "biorad_96_wellplate_200ul_pcr": 5, + "corning_12_wellplate_6.9ml_flat": 5, + "corning_24_wellplate_3.4ml_flat": 5, + "corning_384_wellplate_112ul_flat": 5, + "corning_48_wellplate_1.6ml_flat": 6, + "corning_6_wellplate_16.8ml_flat": 5, + "corning_96_wellplate_360ul_flat": 5, + "nest_12_reservoir_15ml": 3, + "nest_1_reservoir_195ml": 4, + "nest_1_reservoir_290ml": 4, + "nest_96_wellplate_100ul_pcr_full_skirt": 5, + "nest_96_wellplate_200ul_flat": 5, + "nest_96_wellplate_2ml_deep": 5, + "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical": 3, + "opentrons_15_tuberack_falcon_15ml_conical": 3, + "opentrons_24_aluminumblock_nest_0.5ml_screwcap": 4, + "opentrons_24_aluminumblock_nest_1.5ml_screwcap": 3, + "opentrons_24_aluminumblock_nest_1.5ml_snapcap": 3, + "opentrons_24_aluminumblock_nest_2ml_screwcap": 3, + "opentrons_24_aluminumblock_nest_2ml_snapcap": 3, + "opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap": 3, + "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap": 3, + "opentrons_24_tuberack_nest_0.5ml_screwcap": 4, + "opentrons_6_tuberack_nest_50ml_conical": 3, + "usascientific_12_reservoir_22ml": 4, + "usascientific_96_wellplate_2.4ml_deep": 4, + }, } @@ -143,13 +173,7 @@ # https://github.com/Opentrons/opentrons/pull/18266 + https://github.com/Opentrons/opentrons/pull/18284, # but the second punch took a while. We should merge the second punch after v8.6.0 # and remove these exceptions as part of that. - "agilent_1_reservoir_290ml", - "corning_384_wellplate_112ul_flat", - "nest_1_reservoir_290ml", - "opentrons_24_aluminumblock_nest_0.5ml_screwcap", - "opentrons_24_tuberack_nest_0.5ml_screwcap", "opentrons_96_aluminumblock_generic_pcr_strip_200ul", - "usascientific_12_reservoir_22ml", } From 9506d7ef6998d3ba90016f71c039d7d8ecb8b33d Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Mon, 11 Aug 2025 12:00:05 -0400 Subject: [PATCH 20/20] Also add opentrons_96_aluminumblock_generic_pcr_strip_200ul v4 to apiLevel 2.26. This was added in a prior PR but never added to an apiLevel, under the assumption that it would be continued to be worked on in this PR, probably to fix up well depths. It didn't actually get changed in this PR because the hardware spreadsheet doesn't give us enough info to know whether the well depths ought to be grown/shrunk from the top or bottom. --- .../protocol_api/core/engine/_default_labware_versions.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py b/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py index dd5bb91b6f1..3973f351d2e 100644 --- a/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py +++ b/api/src/opentrons/protocol_api/core/engine/_default_labware_versions.py @@ -139,6 +139,7 @@ "opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap": 3, "opentrons_24_tuberack_nest_0.5ml_screwcap": 4, "opentrons_6_tuberack_nest_50ml_conical": 3, + "opentrons_96_aluminumblock_generic_pcr_strip_200ul": 4, "usascientific_12_reservoir_22ml": 4, "usascientific_96_wellplate_2.4ml_deep": 4, }, @@ -169,11 +170,6 @@ "schema3test_flex_tiprack_lid", "schema3test_tough_pcr_auto_sealing_lid", "schema3test_universal_flat_adapter", - # These were supposed to be short-lived drafts as part of of a one-two punch of - # https://github.com/Opentrons/opentrons/pull/18266 + https://github.com/Opentrons/opentrons/pull/18284, - # but the second punch took a while. We should merge the second punch after v8.6.0 - # and remove these exceptions as part of that. - "opentrons_96_aluminumblock_generic_pcr_strip_200ul", }