THERMO-NET introduces the first physics-informed AI framework for quantitative characterization and suppression of irreversible entropy production in high-entropy physical systems — the Thermal Efficiency Index (η_T). Built on three mathematically rigorous constructs spanning Neural Heat Transport Operator, Local Entropy Production Minimizer, and Thermo-Informational Coupling Tensor.
GitHub Repository Live Dashboard DOI: 10.5281/zenodo.19760903η_T = η_Carnot - σ_integrated / η_Carnot ∈ [0, 1]
η_Carnot = 1 - T_cold / T_hotσ_integrated: ∫ σ(r,t) dr dt (total entropy production)Hard constraint: σ ≥ 0 (Second Law of Thermodynamics)
from thermo_net import ThermalStateTracker
from thermo_net.environments import CMOSNodeEnvironment
tracker = ThermalStateTracker(
spatial_dim=128,
lstm_hidden=256,
material='Si'
)
env = CMOSNodeEnvironment(
process_node_nm=1.8,
temperature_k=300.0
)
result = tracker.predict(environment=env)
print(f"η_T = {result.eta:.4f} [{result.status}]")
# Clone repository
git clone https://gitlab.com/gitdeeper11/THERMO-NET.git
cd THERMO-NET
# Install package
pip install -e .
# Run analysis
python bin/compute_eta.py --system test --verbose
# Verify installation
python -c "from thermo_net import __version__; print(__version__)"
# PINN penalty layer constraints (from paper)
# • Second Law compliance: σ(r,t) ≥ 0 everywhere
# • Energy conservation: integrated power input equals heat output
# • Landauer limit: k_B·T·ln(2) minimum per bit erasure
# Python implementation
from thermo_net import THERMOPredictor
predictor = THERMOPredictor()
result = predictor.predict(temperature_field, power_map)
@software{baladi2026thermonet,
author = {Samir Baladi},
title = {THERMO-NET: Neural Thermodynamic Dissipation Management
for High-Entropy Physical Systems},
year = {2026},
version = {1.0.0},
publisher = {Zenodo},
doi = {10.5281/zenodo.19760903},
url = {https://doi.org/10.5281/zenodo.19760903},
note = {Physics-Informed AI Framework for Entropy Production Control}
}