File size: 902 Bytes
0f6d5bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
"""Batch E flex — D790 from a print job not yet in Inova-Mk1-Database.

10 specimens (E1-E10), tested 2026-06-10. FKs (job_id, print_profile_id,
object_hash, print_profile_snapshot) remain null until the source print job
is backfilled into Inova-Mk1-Database; when that happens, change the
db_print_date below from None to the print date and re-run.

TSR11 exists on disk but has empty Data/ (aborted run, no DAQ scans) and no
xlsx sheet, so it is excluded.
"""
from _lib import process_session

SESSION = {
    "session_folder": "2026_06_10/Batch E 3pt test",
    "test_folder":    "TST1.Test",
    "xlsx_name":      "flex_testing_6.10.xlsx",
    "astm":           {"standard": "D790", "type": "Procedure A", "year": "2017"},
    "batch_label":    "E",
    "test_runs":      [(i, "SLS", None) for i in range(1, 11)],
}

if __name__ == "__main__":
    process_session(SESSION)