File size: 516 Bytes
0f6d5bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env python3
"""Batch B — D638 tensile from 2026-05-30 print job (5 specimens, tested 2026-06-01)."""
from _lib import process_session
SESSION = {
"session_folder": "2026_06_01",
"test_folder": "TST1.Test",
"xlsx_name": "tensile_testing_6.1.xlsx",
"astm": {"standard": "D638", "type": "Type I", "year": "2022"},
"batch_label": "B",
"test_runs": [(i, "SLS", "2026-05-30") for i in range(1, 6)],
}
if __name__ == "__main__":
process_session(SESSION)
|