File size: 654 Bytes
0f6d5bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/usr/bin/env python3
"""Batch C tensile — D638 from 2026-06-02 print job (7 specimens, tested 2026-06-03).
The 2026-06-02 print also produced 10 D790 flex specimens; those are tested later
on 2026-06-10 and live in `05_2026_06_10_batch_c.py`.
"""
from _lib import process_session
SESSION = {
"session_folder": "2026_06_03",
"test_folder": "TST1.Test",
"xlsx_name": "tensile_testing_6.3.xlsx",
"astm": {"standard": "D638", "type": "Type I", "year": "2022"},
"batch_label": "C",
"test_runs": [(i, "SLS", "2026-06-02") for i in range(1, 8)],
}
if __name__ == "__main__":
process_session(SESSION)
|