File size: 3,379 Bytes
ea20484 | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | # Correct the XRD Peak Table and Quantify Ferrite/Austenite Phase Fractions in Duplex Stainless Steel
Read the duplex stainless steel XRD peak table, phase reference table, scan metadata, and raw diffraction patterns in /app/input, and perform internal-standard correction, alpha/gamma phase-fraction quantification, and lattice-parameter statistics. Use the phase and hkl information in the peak table for the calculations, and do not include internal-standard peaks in the phase-fraction calculations.
Output analysis.py, zero_shift.csv, peak_calculations.csv, phase_fraction_by_scan.csv, sample_summary.csv, phase_fraction_summary.png, annotated_xrd_patterns.png, and xrd_phase_report.md under /app/output.
## Delivery File Format Specifications
This section defines only the submission interface and does not prescribe the analysis method or expected results. All CSV files must use UTF-8 encoding with a header row; column order is unrestricted and additional columns are permitted, but each required field below must appear exactly once under the name given. Numeric fields must contain plain numbers without unit text.
### `/app/output/zero_shift.csv`
Each row represents one scan; the stable key is `scan_id`.
| Required field | Type | Unit | Meaning |
|---|---|---|---|
| `scan_id` | string | — | Scan identifier, retained from `metadata.csv` |
| `zero_shift_deg` | number | deg | Internal-standard zero shift determined for the scan |
### `/app/output/peak_calculations.csv`
Each row corresponds to one alpha or gamma peak record of one scan; internal-standard (Si) peaks must not appear in this file.
| Required field | Type | Unit | Meaning |
|---|---|---|---|
| `scan_id` | string | — | Scan identifier |
| `phase` | string | — | Phase label of the peak, retained from `xrd_peak_table.csv` |
### `/app/output/phase_fraction_by_scan.csv`
Each row represents one scan; the stable key is `scan_id`.
| Required field | Type | Unit | Meaning |
|---|---|---|---|
| `scan_id` | string | — | Scan identifier |
| `gamma_wt_pct` | number | wt% | Austenite (gamma) weight fraction of the scan |
| `alpha_wt_pct` | number | wt% | Ferrite (alpha) weight fraction of the scan |
| `a_gamma_A` | number | Å | Austenite lattice parameter of the scan |
| `a_alpha_A` | number | Å | Ferrite lattice parameter of the scan |
### `/app/output/sample_summary.csv`
Each row represents one sample; the stable key is `sample_id`.
| Required field | Type | Unit | Meaning |
|---|---|---|---|
| `sample_id` | string | — | Sample identifier, retained from `metadata.csv` |
| `n` | integer | count | Number of scans summarized for the sample |
| `mean_gamma_wt_pct` | number | wt% | Mean of `gamma_wt_pct` over the sample's scans |
| `sd_gamma_wt_pct` | number | wt% | Standard deviation of `gamma_wt_pct` over the sample's scans |
| `mean_alpha_wt_pct` | number | wt% | Mean of `alpha_wt_pct` over the sample's scans |
| `sd_alpha_wt_pct` | number | wt% | Standard deviation of `alpha_wt_pct` over the sample's scans |
| `mean_a_gamma_A` | number | Å | Mean of `a_gamma_A` over the sample's scans |
| `sd_a_gamma_A` | number | Å | Standard deviation of `a_gamma_A` over the sample's scans |
| `mean_a_alpha_A` | number | Å | Mean of `a_alpha_A` over the sample's scans |
| `sd_a_alpha_A` | number | Å | Standard deviation of `a_alpha_A` over the sample's scans |
|