@@ -21,7 +21,6 @@ def __init__(
2121 size_x : float ,
2222 size_y : float ,
2323 size_z : float ,
24- z_travel : float ,
2524 z_start : float ,
2625 z_dispense : float ,
2726 z_max : float ,
@@ -42,7 +41,6 @@ def __init__(
4241 model = model ,
4342 )
4443
45- self .z_travel = z_travel
4644 self .z_start = z_start
4745 self .z_dispense = z_dispense
4846 self .z_max = z_max
@@ -77,7 +75,6 @@ def Microplate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
7775 with_lid=with_lid,
7876 lid_height=8,
7977 model="Microplate_96_Well",
80- z_travel=1750.0,
8178 z_start=1800.0,
8279 z_dispense=1970.0,
8380 z_max=2026.0,
@@ -104,7 +101,6 @@ def Microplate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
104101 size_z = 7.6 ,
105102 lid = Microplate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
106103 model = "Microplate_96_Well" ,
107- z_travel = 1900.0 ,
108104 z_start = 1957.0 ,
109105 z_dispense = 1975.0 ,
110106 z_max = 2005.0 ,
@@ -146,7 +142,6 @@ def Microplate_portrait_96_Well(name: str, with_lid: bool = False) -> TecanPlate
146142 size_z = 11.0 ,
147143 lid = Microplate_portrait_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
148144 model = "Microplate_portrait_96_Well" ,
149- z_travel = 1900.0 ,
150145 z_start = 1940.0 ,
151146 z_dispense = 1960.0 ,
152147 z_max = 2050.0 ,
@@ -188,7 +183,6 @@ def DeepWell_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
188183 size_z = 39.0 ,
189184 lid = DeepWell_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
190185 model = "DeepWell_96_Well" ,
191- z_travel = 1590.0 ,
192186 z_start = 1670.0 ,
193187 z_dispense = 1690.0 ,
194188 z_max = 2060.0 ,
@@ -230,7 +224,6 @@ def HalfDeepWell_384_Well(name: str, with_lid: bool = False) -> TecanPlate:
230224 size_z = 18.8 ,
231225 lid = HalfDeepWell_384_Well_Lid (name = name + "_lid" ) if with_lid else None ,
232226 model = "HalfDeepWell_384_Well" ,
233- z_travel = 1789.0 ,
234227 z_start = 1869.0 ,
235228 z_dispense = 1889.0 ,
236229 z_max = 2057.0 ,
@@ -272,7 +265,6 @@ def DeepWell_portait_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
272265 size_z = 38.0 ,
273266 lid = DeepWell_portait_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
274267 model = "DeepWell_portait_96_Well" ,
275- z_travel = 1625.0 ,
276268 z_start = 1670.0 ,
277269 z_dispense = 1690.0 ,
278270 z_max = 2050.0 ,
@@ -314,7 +306,6 @@ def Plate_portrait_384_Well(name: str, with_lid: bool = False) -> TecanPlate:
314306 size_z = 11.0 ,
315307 lid = Plate_portrait_384_Well_Lid (name = name + "_lid" ) if with_lid else None ,
316308 model = "Plate_portrait_384_Well" ,
317- z_travel = 1900.0 ,
318309 z_start = 1940.0 ,
319310 z_dispense = 1960.0 ,
320311 z_max = 2050.0 ,
@@ -356,7 +347,6 @@ def Macherey_Nagel_Plate_96_Well(name: str, with_lid: bool = False) -> TecanPlat
356347 size_z = 29.9 ,
357348 lid = Macherey_Nagel_Plate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
358349 model = "Macherey_Nagel_Plate_96_Well" ,
359- z_travel = 1514.0 ,
360350 z_start = 1532.0 ,
361351 z_dispense = 1578.0 ,
362352 z_max = 1831.0 ,
@@ -398,7 +388,6 @@ def Qiagen_Plate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
398388 size_z = 26.6 ,
399389 lid = Qiagen_Plate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
400390 model = "Qiagen_Plate_96_Well" ,
401- z_travel = 1493.0 ,
402391 z_start = 1541.0 ,
403392 z_dispense = 1549.0 ,
404393 z_max = 1807.0 ,
@@ -440,7 +429,6 @@ def AB_Plate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
440429 size_z = 19.5 ,
441430 lid = AB_Plate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
442431 model = "AB_Plate_96_Well" ,
443- z_travel = 1772.0 ,
444432 z_start = 1822.0 ,
445433 z_dispense = 1837.0 ,
446434 z_max = 2017.0 ,
@@ -482,7 +470,6 @@ def PCR_Plate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
482470 size_z = 19.5 ,
483471 lid = PCR_Plate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
484472 model = "PCR_Plate_96_Well" ,
485- z_travel = 1857.0 ,
486473 z_start = 1900.0 ,
487474 z_dispense = 1915.0 ,
488475 z_max = 2095.0 ,
@@ -524,7 +511,6 @@ def DeepWell_Greiner_1536_Well(name: str, with_lid: bool = False) -> TecanPlate:
524511 size_z = 8.6 ,
525512 lid = DeepWell_Greiner_1536_Well_Lid (name = name + "_lid" ) if with_lid else None ,
526513 model = "DeepWell_Greiner_1536_Well" ,
527- z_travel = 1946.0 ,
528514 z_start = 1984.0 ,
529515 z_dispense = 2004.0 ,
530516 z_max = 2070.0 ,
@@ -566,7 +552,6 @@ def Hibase_Greiner_1536_Well(name: str, with_lid: bool = False) -> TecanPlate:
566552 size_z = 5.4 ,
567553 lid = Hibase_Greiner_1536_Well_Lid (name = name + "_lid" ) if with_lid else None ,
568554 model = "Hibase_Greiner_1536_Well" ,
569- z_travel = 1946.0 ,
570555 z_start = 1984.0 ,
571556 z_dispense = 2004.0 ,
572557 z_max = 2038.0 ,
@@ -608,7 +593,6 @@ def Lowbase_Greiner_1536_Well(name: str, with_lid: bool = False) -> TecanPlate:
608593 size_z = 6.2 ,
609594 lid = Lowbase_Greiner_1536_Well_Lid (name = name + "_lid" ) if with_lid else None ,
610595 model = "Lowbase_Greiner_1536_Well" ,
611- z_travel = 1946.0 ,
612596 z_start = 2024.0 ,
613597 z_dispense = 2034.0 ,
614598 z_max = 2086.0 ,
@@ -650,7 +634,6 @@ def Separation_Plate_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
650634 size_z = 26.6 ,
651635 lid = Separation_Plate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
652636 model = "Separation_Plate_96_Well" ,
653- z_travel = 1493.0 ,
654637 z_start = 1541.0 ,
655638 z_dispense = 1549.0 ,
656639 z_max = 1807.0 ,
@@ -692,7 +675,6 @@ def DeepWell_square_96_Well(name: str, with_lid: bool = False) -> TecanPlate:
692675 size_z = 39.0 ,
693676 lid = DeepWell_square_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
694677 model = "DeepWell_square_96_Well" ,
695- z_travel = 1590.0 ,
696678 z_start = 1670.0 ,
697679 z_dispense = 1690.0 ,
698680 z_max = 2060.0 ,
@@ -734,7 +716,6 @@ def CaCo2_Plate_24_Well(name: str, with_lid: bool = False) -> TecanPlate:
734716 size_z = 6.5 ,
735717 lid = CaCo2_Plate_24_Well_Lid (name = name + "_lid" ) if with_lid else None ,
736718 model = "CaCo2_Plate_24_Well" ,
737- z_travel = 1774.0 ,
738719 z_start = 1960.0 ,
739720 z_dispense = 2007.0 ,
740721 z_max = 2025.0 ,
@@ -777,7 +758,6 @@ def Plate_384_Well(name: str, with_lid: bool = False) -> TecanPlate:
777758 size_z = 12.1 ,
778759 lid = Plate_384_Well_Lid (name = name + "_lid" ) if with_lid else None ,
779760 model = "Plate_384_Well" ,
780- z_travel = 1900.0 ,
781761 z_start = 1940.0 ,
782762 z_dispense = 1960.0 ,
783763 z_max = 2061.0 ,
@@ -820,7 +800,6 @@ def Microplate_24_Well(name: str, with_lid: bool = False) -> TecanPlate:
820800 size_z = 17.6 ,
821801 lid = Microplate_24_Well_Lid (name = name + "_lid" ) if with_lid else None ,
822802 model = "Microplate_24_Well" ,
823- z_travel = 1841.0 ,
824803 z_start = 1885.0 ,
825804 z_dispense = 1917.0 ,
826805 z_max = 2061.0 ,
@@ -862,7 +841,6 @@ def TecanExtractionPlate_96_Well(name: str, with_lid: bool = False) -> TecanPlat
862841 size_z = 23.0 ,
863842 lid = TecanExtractionPlate_96_Well_Lid (name = name + "_lid" ) if with_lid else None ,
864843 model = "TecanExtractionPlate_96_Well" ,
865- z_travel = 1793.0 ,
866844 z_start = 1831.0 ,
867845 z_dispense = 1910.0 ,
868846 z_max = 2061.0 ,
@@ -905,7 +883,6 @@ def Microplate_48_Well(name: str, with_lid: bool = False) -> TecanPlate:
905883 size_z = 17.3 ,
906884 lid = Microplate_48_Well_Lid (name = name + "_lid" ) if with_lid else None ,
907885 model = "Microplate_48_Well" ,
908- z_travel = 1839.0 ,
909886 z_start = 1887.0 ,
910887 z_dispense = 1921.0 ,
911888 z_max = 2060.0 ,
0 commit comments