feat(schema): thermal sub-table additions (#152)#190
Merged
Conversation
Pure additive — 7 new optional fields on ThermalProperties for cryogenic + coolant work: - emissivity (0–1, dimensionless) — critical for cryo radiation shielding budgets (polished Al ≈ 0.04, anodized ≈ 0.8) - thermal_diffusivity (mm²/s) — heat-pulse propagation - min_use_temp_K (K) + cryogenic_compatible (bool) — Delrin/PEEK brittleness boundary, separate from the general min_service_temp (which is in °C and represents operational lower bound) - integrated_thermal_conductivity (W/m) — NIST ∫k dT for cryogenic heat-leak budgets - latent_heat_fusion / latent_heat_vaporization (kJ/kg) — for liquids and phase-change coolants Plus matching `*_qty` Pint accessors for the 4 new dimensional fields. Tests: tests/test_thermal_fields.py (7 tests) + full corpus regression. Closes #152
This was referenced May 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pure additive — 7 new optional fields on
ThermalPropertiesfor cryogenic + coolant work.emissivitythermal_diffusivitymin_use_temp_Kmin_service_tempwhich is °C and operational)cryogenic_compatibleintegrated_thermal_conductivitylatent_heat_fusionlatent_heat_vaporizationPlus matching
*_qtyPint-Quantity accessors for the 4 new dimensional fields.min_use_temp_Kis intentionally separate from the existingmin_service_temp(°C). They represent different concepts: operational lower bound vs. brittleness threshold. Both fields kept; users pick the one that matches their constraint.Test plan
pytest tests/test_thermal_fields.py— 7 tests passruff checkcleanCloses #152