Skip to content

Aethermor

CIPython 3.10+LicenseGitHub Release

Open-source Python toolkit for chip thermal analysis, cooling tradeoffs, and compute-density limits in advanced hardware systems.

Production-ready for architecture-stage thermal exploration, screening, and inverse design workflows; not intended for sign-off thermal closure or transient package verification.


As transistor scaling slows, thermal constraints are becoming the primary bottleneck in computing. Aethermor provides the tools to model, analyze, and design around those constraints — interactively or programmatically.

What you can do with Aethermor

  • Find compute-density limits — how many gates can a substrate actually sustain before thermal runaway?
  • Explore cooling tradeoffs — at what point does better cooling stop helping?
  • Compare chip architectures — CMOS vs. adiabatic vs. reversible logic under real thermal constraints
  • Locate thermal bottlenecks — per-block headroom analysis on heterogeneous SoCs
  • Project technology scaling — energy and thermal wall from 130 nm down to 1.4 nm
  • Test your own materials — plug in custom substrates, paradigms, and cooling layers

All models use real physics in SI units, validated against CODATA 2018, the CRC Handbook, ITRS/IRDS roadmaps, published specifications for real chips (NVIDIA A100, Apple M1, AMD EPYC, Intel i9-13900K), and published hardware measurements (JEDEC θ_jc thermal resistance, IR thermal imaging, HotSpot benchmarks). Scope: Architecture-stage thermal exploration and inverse design. Not intended for sign-off, transient package verification, or transistor-level thermal closure. Calibration status: analytically validated with published material data, plausibility-checked against 15 production chips, and hardware-correlated against 3 published chip designs (A100, i9-13900K, M1) with full gap analysis. See LIMITATIONS.md for scope, docs/HARDWARE_CORRELATION.md for correlation evidence, and docs/calibration_case_study.md for calibration methodology.


Case Study: The Cooling Upgrade That Wouldn't Help

Full writeup: docs/CASE_STUDY.md · Run it: python benchmarks/case_study_cooling_decision.py

A team designing a 5 nm AI accelerator is considering a $2M data center retrofit to upgrade from air cooling to direct liquid cooling. Their assumption: 20× more aggressive cooling should unlock significantly more compute density.

Aethermor's model suggests this assumption is wrong — in about 10 seconds:

StrategyDensity GainCost
Upgrade to liquid cooling (20× more aggressive)0.3%$2M retrofit
Switch to SiC substrate (same air cooling)232%Per-die premium
Redistribute compute across SoC blocks47% throughputFree

The reason: silicon's conduction floor — an irreducible thermal resistance set by the substrate's thermal conductivity — means heat can't leave the die interior fast enough regardless of how well you cool the surface. Switching substrate is 780× more effective than upgrading cooling. And redistributing compute from the thermally-limited GPU block to the underutilized L3 cache (26× thermal headroom) gives 47% more throughput with zero hardware changes.

This is the type of non-obvious tradeoff that architecture-stage thermal exploration can surface before committing to expensive hardware decisions.


Evaluate Aethermor (5 Minutes)

New to Aethermor? Run one script to see it in action:

git clone https://github.com/Yoder23/aethermor.git &&cd aethermor
pip install -e ".[all]"
python evaluate_aethermor.py

This runs four live demos in ~10 seconds:

  1. Physics validation — 16 textbook checks (Incropera, CRC, Yovanovich) — all 0.00% error
  2. Material ranking — which substrate lets you pack the most compute?
  3. Cooling tradeoff — where do diminishing returns hit?
  4. Real chip prediction — NVIDIA A100 θ_jc within 2% of measured

Then try the interactive dashboard: aethermor dashboard

Feedback?File a GitHub issue — takes 60 seconds.

Engineer Review Checklist (5 minutes)

pip install -e ".[dashboard]"
python evaluate_aethermor.py # 4 live demos, ~10 seconds
aethermor dashboard # interactive explorer
python -m pytest tests/ -v # 308 tests
python run_all_validations.py # 800+ checks across 12+ suites

Then read: docs/HARDWARE_CORRELATION.md · docs/SAFE_USE.md · LIMITATIONS.md

Deeper evaluation guide
Your InterestStart With
"Does the physics check out?"docs/calibration_case_study.md — θ_jc correlation + plausibility checks
"What can it actually do?"docs/CASE_STUDY.md — cooling vs substrate decision
"What are the limitations?"LIMITATIONS.md — scope, simplifications, known gaps
"How accurate is it?"docs/ACCURACY.md — error bands and operating envelope
"Full API reference"docs/API_REFERENCE.md
"Full validation suite (800+ checks)"python run_all_validations.py (~3 min)
"Hardware correlation (3 real chips)"python benchmarks/hardware_correlation.py

Quick Start

git clone https://github.com/Yoder23/aethermor.git
cd aethermor
pip install -e ".[dashboard]"# core + interactive UI
aethermor dashboard # open http://127.0.0.1:8050

Or install directly from the release wheel:

pip install https://github.com/Yoder23/aethermor/releases/download/v1.0.1/aethermor-1.0.1-py3-none-any.whl

Core only (no UI): pip install -e .Everything (dev + UI): pip install -e ".[all]"


Interactive Explorer Dashboard

aethermor dashboard

The built-in dashboard lets you interactively explore thermal design spaces with live-updating charts. Every parameter is a slider or dropdown:

TabWhat You Can Do
Material RankingPick a tech node, frequency, and cooling — see which substrate lets you pack the most compute
Cooling AnalysisSet a material and gate density — see temperature vs. cooling with the conduction floor
Paradigm ComparisonDrag the frequency slider to watch the CMOS ↔ adiabatic crossover shift in real time
Technology RoadmapEnergy per gate and Landauer gap from 130 nm down to 1.4 nm
SoC Thermal MapThermal headroom per block on a heterogeneous CPU+GPU+cache+IO chip — find the bottleneck
Custom MaterialDefine your own substrate by entering its thermal properties — it instantly appears in every other tab

Explorer Dashboard — Material Ranking

The Material Ranking tab comparing maximum compute density across five substrates at the 7 nm node and 1 GHz. Diamond sustains 28× higher gate density than GaAs under the same thermal and cooling constraints.


Python API

Every capability in the dashboard is also available as a Python function.

fromaethermor.analysis.thermal_optimizerimportThermalOptimizeropt=ThermalOptimizer(tech_node_nm=7, frequency_Hz=1e9)
# Material ranking: which substrate sustains the highest compute density?ranking=opt.material_ranking(h_conv=1000.0)
forrinranking:
print(f"{r['material_name']:<25s}{r['max_density']:.2e} gates/elem")
# Minimum cooling for a target densityreq=opt.find_min_cooling("silicon", gate_density=1e5)
print(f"Min h_conv: {req['min_h_conv']:.0f} W/(m²·K) → {req['cooling_category']}")
# Thermal bottleneck analysis on a heterogeneous SoCfromaethermor.physics.chip_floorplanimportChipFloorplansoc=ChipFloorplan.modern_soc()
headroom=opt.thermal_headroom_map(soc, h_conv=1000.0)
forblockinheadroom:
print(f"{block['name']:<20s} T={block['T_max_K']:.0f} K headroom={block['density_headroom_factor']:.1f}×")
# Custom materials plug into the optimizer and dashboardfromaethermor.physics.materialsimportregistry, Materialregistry.register("hex_bn", Material(
name="Hexagonal Boron Nitride (h-BN)",
thermal_conductivity=600.0, specific_heat=800.0, density=2100.0,
electrical_resistivity=1e15, max_operating_temp=1273.15, bandgap_eV=6.0,
))

For more: docs/API_REFERENCE.md · 7 ready-to-run scripts in examples/


Verification

python -m pytest tests/ -v # 308 unit/integration/robustness tests, ~2 min
python run_all_validations.py # 12+ suites, 800+ checks, ~3 min

Individual benchmark suites are in benchmarks/. Key ones:

SuiteChecksWhat It Validates
experimental_validation.py18JEDEC θ_jc, IR imaging, HotSpot — published measurements
chip_thermal_database.py8212 real chips across 4 segments
material_cross_validation.py19221 materials vs CRC, ASM, NIST, Ioffe
real_world_validation.py334 published chip designs (A100, M1, EPYC, i9)
literature_validation.py20CODATA, CRC, ITRS, Incropera & DeWitt

Case studies: benchmarks/case_study_datacenter.py, benchmarks/case_study_mobile_soc.py, benchmarks/case_study_cooling_decision.py


Who This Is For

Aethermor is for architecture-stage thermal engineering — deciding what to build before committing to detailed design.

  • Chip architects exploring substrates, cooling, and density targets
  • Thermal engineers evaluating cooling stacks and identifying diminishing returns
  • Computer architecture researchers studying thermal tradeoffs across paradigms

Aethermor helps identify which designs are worth simulating in detail — and which assumptions to challenge before committing silicon.

Project Layout

aethermor/ # Installable Python package
physics/ # SI-unit thermodynamic models (extensible registries)
analysis/ # Inverse design & research tools
simulation/ # Monte Carlo / evolutionary simulation engine
validation/ # 133 physics cross-checks
app/ # Interactive dashboard (modular tab architecture)
cli.py # CLI entry point: aethermor dashboard|validate|version
benchmarks/ # Validation, correlation, and case-study scripts
examples/ # 10 ready-to-run research scripts + 3 team workflows
tests/ # 308 unit, integration, regression, robustness tests

Module details: docs/API_REFERENCE.md


Validation & Calibration

Aethermor is built on established heat transfer and semiconductor physics. Models are cross-validated against published reference data:

CheckResult
Unit + integration tests308 pass, 1 skipped
Physics validation133 cross-checks vs CODATA 2018, CRC Handbook, ITRS/IRDS
Material cross-validation192 checks, 21 materials vs CRC, ASM, NIST, Ioffe
Chip thermal database82 checks across 12 real chips in 4 segments
Experimental measurements18 checks vs JEDEC θ_jc, IR imaging, HotSpot
Hardware correlation (3 chips)PackageStack with Yovanovich spreading vs measured θ_jc / T_j — A100 0.98×, i9 +9 K, M1 within range
External benchmark pack6 analytical cases (1D slab, convection, multi-layer, Landauer, PackageStack, max-power)
Energy conservation0.00% error in 3D Fourier solver
Total checks800+ (see docs/VERIFICATION_LAYERS.md for exact breakdown)

308 refers to unit/integration/regression/robustness tests (pytest). 133 refers to built-in physics cross-checks (aethermor validate). 800+ is the full verification corpus including materials (192), chip database (82), experimental (18), hardware correlation (3), literature (20), case studies (46+), and benchmark cases.

Current package-level hardware correlation spans three published chip designs: A100 θ_jc 0.028 vs 0.029 K/W measured, i9-13900K T_j 382 vs 373 K, and Apple M1 72.7°C within a published 60–75°C range.

See VALIDATION.md for methodology. Run python run_all_validations.py to verify.

Expected Accuracy

Calculation TypeExpected AccuracyNotes
Relative comparisons (material A vs B, cooling X vs Y)High confidenceOrdering and ratios are physics-correct
Absolute junction temperatures±5–15% (±10 K demonstrated)Depends on h_conv accuracy and package model fidelity; see HARDWARE_CORRELATION
Cooling requirement estimates±10–20%Simplified convection (single h_conv coefficient)
Material thermal properties< 5% vs publishedCross-validated against CRC, ASM, NIST

Calibration details: docs/calibration_case_study.md — θ_jc residual analysis for A100 (0.98×), i9-13900K (+9 K), M1 (+5 K); experimental temperature correlation against 4 published studies; 15-chip plausibility check.

Safe-use limits: This is a 1D/reduced-order model. Detailed package geometry, mixed convection, transient dynamics, and board-level paths are out of scope. See LIMITATIONS.md.

When This Model Breaks

ScenarioWhy It BreaksWhat To Use Instead
Complex 3D package geometry1D conduction ignores spreading, TIM, IHSCOMSOL, ANSYS Icepak
Turbulent / mixed convectionSingle h_conv; no flow modelingCFD (Fluent, OpenFOAM)
Transient thermal dynamicsSteady-state onlyHotSpot transient, COMSOL
Detailed TIM / solder modelingPackageStack includes die/TIM/IHS contact resistances; for detailed package FEA use COMSOLPackage-level FEA
PCB / board-level thermal pathsDie-only model6SigmaET, FloTHERM

Rule of thumb: "Which direction should we go?" → Aethermor. "Exactly how hot is this die corner at t = 3.7 ms?" → FEA/CFD.

Escalation rule: Use Aethermor to rank options, eliminate infeasible directions, and estimate order-of-magnitude thermal feasibility. Escalate to higher-fidelity simulation or experiment when decisions depend on exact absolute T_j, transient response, detailed package geometry, proprietary floorplans, or vendor-specific cooling performance.

See LIMITATIONS.md · docs/SAFE_USE.md.

Aethermor vs. CFD/FEA Tools

AethermorCOMSOL / Icepak / FloTHERM
SpeedSecondsHours–days per geometry
Setuppip install, 3 lines of PythonLicense, mesh, BCs, convergence
Accuracy (absolute)±5–15% (±10 K on 3 chips)±1–3%
Accuracy (ranking)HighHigh
Inverse designBuilt-inManual parameter sweeps
Sign-offNot suitableRequired
CostFree (Apache 2.0)$10K–$100K/year

Use Aethermor to decide which designs are worth simulating in CFD/FEA.

Documentation

CategoryDocuments
Getting startedINSTALL_VERIFY · API_REFERENCE · SAFE_USE
Case studiesCalibration · Datacenter GPU · Cooling/Substrate · SoC · Paradigm
ValidationVALIDATION · LIMITATIONS · HONEST_REVIEW · ACCURACY · Uncertainty · External · Reproducibility · Benchmark protocol
GovernanceCHANGELOG · Release notes v1.0.1 · SEMVER · Support

Reproducibility

python run_all_validations.py # 12+ suites, 800+ checks, ~3 min

All benchmarks are seeded and deterministic. See docs/REPRODUCIBILITY.md for seed policy and tolerances.

References

Aethermor's physics models and material data are grounded in:

  1. Incropera, F.P. et al.Fundamentals of Heat and Mass Transfer, 8th ed. Wiley, 2019. — Conduction, convection, and thermal resistance theory.

  2. Lide, D.R. (ed.)CRC Handbook of Chemistry and Physics, 101st ed. CRC Press, 2020. — Thermal conductivity, specific heat, density for Si, SiO₂, GaAs, diamond, Cu, InP, SiC, GaN.

  3. ITRS/IRDSInternational Roadmap for Devices and Systems, IEEE, 2022. — Technology node scaling parameters connected to CMOS gate energy models.

  4. CODATA 2018Recommended Values of the Fundamental Physical Constants. NIST, 2019. — Boltzmann constant, Planck constant used in Landauer limit.

  5. Carslaw, H.S. & Jaeger, J.C.Conduction of Heat in Solids, 2nd ed. Oxford, 1959. — Fourier heat diffusion formulation.

  6. Skadron, K. et al. "Temperature-Aware Microarchitecture: Modeling and Implementation", ACM TACO, 2004. — HotSpot methodology for comparison benchmarks.

Material property sources are individually attributed in docs/ACCURACY.md.

Contributing

Contributions welcome — especially new materials, computing paradigms, thermal models, or analysis tools. The registry architecture makes it easy to add new components without touching core code:

  • New material?registry.register("my_mat", Material(...))
  • New paradigm?paradigm_registry.register("my_idea", MyModelClass)
  • New cooling layer?cooling_registry.register("my_tim", ThermalLayer(...))

See CONTRIBUTING.md, CODE_OF_CONDUCT.md, and SECURITY.md.

License

Apache License 2.0. See LICENSE.

About

Python toolkit for chip thermal analysis, cooling tradeoffs, and compute-density limits in advanced hardware systems.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages