This commit is contained in:
ST-TEN-1 2024-05-17 09:09:46 +02:00
parent a2c572191a
commit 90de35b498
6 changed files with 9 additions and 6 deletions

View File

@ -45,19 +45,22 @@ tempo_svuotamento: 1
pressione_svuotamento: 100
canale_di_prova: 0
tester_discharge_enable: yes
pid_pressure_correction: 90
[autotest_leak]
enabled: true
pre_filling_time: 0
pre_filling_pressure: 1000
filling_time: 5
filling_time: 10
settling_time: 10
settling_pressure_min_percent: 5
settling_pressure_max_percent: 5
test_time: 10
test_pressure_qneg: 5
test_pressure: 9000
test_pressure_qpos: 5
test_pressure_qneg: 50
test_pressure: 5000
test_pressure_qpos: 30
test_pressure_tt_qpos: 1 # Q+ Upper test leak limit (tube-tube) (positive mbar)
test_pressure_tt_qneg: 5 # Q- Lower test leak limit (tube-tube) (negative mbar)
flush_time: 1
flush_pressure: 100
relay_config: 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -1,4 +1,4 @@
echo on
SET mypath=%~dp0
cd %mypath%
.\venv\Scripts\activate.bat && python -O "./src/main.py"
.\venv\Scripts\activate.bat && python -O "./src/main.py" --no-autotest

View File

@ -708,7 +708,7 @@ class Test(Widget):
"BADGE_NUM": str(archived.user.badge_number),
# RESULT
"RESULT": str("CONFORME" if leak_test_1_results.get("ok", False) else "SCARTO") + str(" FORZATO" if self.data.get("overridden", False) else ""),
"RESULT": str("CONFORME" if leak_test_1.get("ok", False) else "SCARTO") + str(" FORZATO" if self.data.get("overridden", False) else ""),
"RESULT_L1": "ESITO" + str(" FORZATO" if self.data.get("overridden", False) else ""),
"RESULT_L2": str("CONFORME" if leak_test_1_results.get("ok", False) else "SCARTO"),
}