Agentic-SLS-ASTM / scripts /specimens /07_2026_06_10_batch_e.py
ppak10's picture
Updates data.
a196ec9
Raw
History Blame Contribute Delete
782 Bytes
#!/usr/bin/env python3
"""Batch E flex — D790, tested 2026-06-10 (10 specimens, printed 2026-06-07).
Batch E D790 came from the same 2026-06-07 print as Batches D (D638 + D790) and
E D638 — testing was split across cohorts on different days.
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", "2026-06-07") for i in range(1, 11)],
}
if __name__ == "__main__":
process_session(SESSION)