Agentic-SLS-ASTM / scripts /specimens /01_2026_05_26.py
ppak10's picture
Adds samples.
0f6d5bb
Raw
History Blame Contribute Delete
517 Bytes
#!/usr/bin/env python3
"""Batch A — D638 tensile from 2026-05-25 print job (5 specimens, tested 2026-05-26)."""
from _lib import process_session
SESSION = {
"session_folder": "2026_05_26",
"test_folder": "TST1.Test",
"xlsx_name": "tensile_testing_5.26.xlsx",
"astm": {"standard": "D638", "type": "Type I", "year": "2022"},
"batch_label": "A",
"test_runs": [(i, "SLS", "2026-05-25") for i in range(1, 6)],
}
if __name__ == "__main__":
process_session(SESSION)