Skip to content

Commit

Permalink
most recent 96ch testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
meh-di committed Apr 23, 2024
1 parent e73f52b commit fa4b8f1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api/src/opentrons/config/defaults_ot3.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
OT3AxisKind.X: 10,
OT3AxisKind.Y: 10,
OT3AxisKind.Z: 5,
OT3AxisKind.P: 10,
OT3AxisKind.P: 0.41, # 10
OT3AxisKind.Z_G: 10,
},
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ def _aspirate_on_approach() -> None:
hw_api.configure_for_volume(hw_mount, aspirate if aspirate else dispense)
if clear_accuracy_function:
clear_pipette_ul_per_mm(hw_api, hw_mount) # type: ignore[arg-type]
for _ in range(10):
for _ in range(1):
hw_api.prepare_for_aspirate(hw_mount)
ctx.delay(seconds=0) # TODO: delete this
ctx.delay(seconds=10) # TODO: delete this
if liquid_class.aspirate.leading_air_gap > 0:
pipette.aspirate(liquid_class.aspirate.leading_air_gap)

Expand Down
12 changes: 6 additions & 6 deletions hardware-testing/hardware_testing/gravimetric/trial.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@ def build_gravimetric_trials(
for trial in range(cfg.trials):
d: Optional[float] = None
cv: Optional[float] = None
if not cfg.increment:
d, cv = config.QC_TEST_MIN_REQUIREMENTS[cfg.pipette_channels][
cfg.pipette_volume
][cfg.tip_volume][volume]
d = d * (1 - config.QC_TEST_SAFETY_FACTOR)
cv = cv * (1 - config.QC_TEST_SAFETY_FACTOR)
# if not cfg.increment:
# d, cv = config.QC_TEST_MIN_REQUIREMENTS[cfg.pipette_channels][
# cfg.pipette_volume
# ][cfg.tip_volume][volume]
# d = d * (1 - config.QC_TEST_SAFETY_FACTOR)
# cv = cv * (1 - config.QC_TEST_SAFETY_FACTOR)
trial_list[volume][channel].append(
GravimetricTrial(
ctx=ctx,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"channels": 1,
"shaftDiameter": 4.5,
"shaftULperMM": 15.904,
"backlashDistance": 0.1,
"backlashDistance": 3.0,
"quirks": [],
"plungerHomingConfigurations": {
"current": 1.0,
Expand Down

0 comments on commit fa4b8f1

Please sign in to comment.