0 cumulative citations
View corpus contextA physics-aware diffusion world model trims simulated HVAC energy use by about 7% and cuts occupant discomfort by roughly 30%, and — crucially — preserves most of this gain when transferred across seasons and between climates in benchmark simulations.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
Buildings account for roughly one-third of global energy consumption and CO$_2$ emissions. Optimizing indoor climate systems plays a critical role for urban climate mitigation aligned with UN Sustainable Development Goals 11 and 13. However, indoor delayed thermodynamic responses and partial observability severely hinder existing methods, which are primarily limited by implicit thermal inertia, occupancy dynamic prediction, and cumulative prediction errors, especially for out-of-distribution environments. In practice, these challenges are further exacerbated by the high cost and privacy burden of dense indoor sensing, forcing operators to collect only limited data in a single operating regime while expecting controllers to generalize reliably across unseen seasons and climate regions. To address this problem, we propose ADAPT, a physics-aware conditional diffusion indoor environmental world model for HVAC control. The model predicts a short-horizon held-action thermal baseline to capture the latent thermal inertia of the buildings. The diffusion backbone utilizes the robustness of generative models, while a learnable multi-zone heat-balance regularizer constrains generated trajectories to satisfy transferable building thermodynamics without requiring known building geometry or manually calibrated thermal parameters. A credit assignment is then design for the downstream reinforcement learning. Extensive experiments on SemibuildingSim and Sinergym demonstrate that ADAPT reduces HVAC energy consumption by 7.3\% and occupant discomfort by 30.2\% compared with state-of-the-art baselines under IID control. Under OOD control scenarios spanning unseen seasons and climate regions, ADAPT maintains robust performance with only marginal degradation relative to its IID performance, substantially outperforming existing methods in transfer robustness.
Summary
Main Finding
ADAPT introduces a physics-aware conditional diffusion indoor environmental world model (IEWM) that predicts transferable multi-step thermal baselines for HVAC control. Coupling a generative diffusion model with a differentiable multi-zone heat-balance regularizer yields more physically consistent forecasts under distribution shift (cross-season and cross-climate). Integrating this IEWM into an RL controller reduces HVAC energy by 7.3% and occupant discomfort by 30.2% vs. the strongest baseline in simulation, and preserves control performance much better than purely data-driven or sequential world models under out-of-distribution (OOD) transfers (e.g., summer↔winter, Stockholm↔Arizona).
Key Points
- Problem: Building thermal dynamics are delayed and partially observable; seasonal/weather/climate shifts create large distributional changes making prediction and transfer hard.
- Modeling idea:
- Use a conditional denoising diffusion probabilistic model (DDPM) to generate probabilistic multi-step future trajectories (thermal baselines).
- Condition on historical observations and a held-action protocol (future actions set equal to last action) so baseline captures latent thermal inertia.
- During deployment also generate committed-action rollouts (repeat chosen action) for delayed credit assignment.
- Physics-aware regularizer:
- A differentiable multi-zone heat-balance equation (inter-zone exchange, outdoor-envelope exchange, solar radiation, internal gains, HVAC effect, residual bias) is learned jointly and used as a soft constraint.
- Physical coefficients (e.g., coupling g_ij, envelope k_i, radiation s_i, occupancy gain γ_i, HVAC effectiveness η_i, thermal capacity C_i, bias d_i) are identified from data—no manual calibration or known geometry required.
- Training objective: combine diffusion denoising loss L_diff with (i) a parameter-identification loss L_true on real trajectories, (ii) a prediction regularization loss L_pred on diffusion-generated trajectories, plus bias penalty. This steers diffusion outputs toward physically plausible manifolds.
- Controller integration:
- IEWM is trained offline and frozen.
- At each decision, IEWM predicts held-action baseline and (after action selection) committed-action future; baseline is injected into the advantage stream of a branch-wise action-value RL network to improve action evaluation and delayed credit assignment.
- Empirical results:
- Evaluated on SemiBuildingSim and Sinergym (EnergyPlus) benchmarks.
- Gains: 7.3% energy reduction and 30.2% discomfort reduction vs best baseline in IID.
- Much stronger robustness under cross-season and cross-climate transfer than sequential/data-driven world models; only marginal degradation relative to IID.
- Accessibility: code repository provided by authors.
Data & Methods
- Problem formalization: HVAC control as a POMDP with partial observations o_t = [zone temperatures T_t, humidity H_t, occupancy O_occ_t, outdoor temp T_out_t, solar S_t, auxiliary Z_t]; delayed action effects due to thermal inertia.
- IEWM:
- Conditional input c_t = (o_{t-N:t}, a_{t-N:t-1}, future actions set as a_{t-1} for H steps).
- Output: predicted future observation sequence ŷ_t = ŷ_{t+1:t+H} sampled from p_θ(y | c_t) via diffusion.
- Uses DDPM forward noising and learned reverse denoiser ϵ_θ(·).
- Physics-aware regularization:
- Zone heat-balance (soft constraint): C_i (T̂{i,k+1} − T̂{i,k})/Δt = Q̂_zone + Q̂_out + Q̂_rad + Q̂_int + Q̂_hvac + d_i.
- Component parameterizations:
- Q̂zone_i,k = Σ_j g_ij (T̂{j,k} − T̂_{i,k}), with g_ij = g_ji ≥ 0.
- Q̂out_i,k = k_i (T_out_k − T̂{i,k}), k_i ≥ 0.
- Q̂_rad_i,k = s_i^T r_k, s_i ≥ 0 (radiation coupling).
- Q̂_int_i,k = γ_i ô_int_i,k, γ_i ≥ 0 (occupancy/internal gains).
- Q̂hvac_i,k = η_i û_hvac_i,k (T_sup_i,k − T̂{i,k}), with û_hvac = φ(a_i,k) learned.
- Residual bias d_i penalized (λ_d ‖d‖^2) to avoid explaining everything by bias.
- Two residual losses:
- L_true: Huber loss on thermal residuals computed from real trajectories → identifies physical coefficients.
- L_pred: Huber loss on residuals computed on diffusion-generated trajectories → regularizes generator.
- Combined objective: L = L_diff + λ_true L_true + λ_pred L_pred + λ_d ‖d‖^2.
- RL integration:
- IEWM predicts baseline before action selection and committed rollout after action.
- Baseline enters advantage stream of branch-wise Q-function: Q_d(o_t, a_{t,d}, ŷ_t) = V_ψ(o_t) + A_ηd(o_t, a_{t,d}, ŷ_t) − max_{a'} A_ηd(o_t, a', ŷ_t).
- Experiments:
- Benchmarks: SemiBuildingSim and Sinergym (EnergyPlus-driven).
- Transfer tests: cross-season (summer↔winter) and cross-climate (Stockholm↔Arizona).
- Baselines: model-free RL, sequential world models, purely data-driven diffusion/sequential predictors; strongest baseline was a tuned alternative RL/world-model approach.
- Metrics: HVAC energy consumption and occupant discomfort (presumably PMV/temperature violations metrics).
- Implementation notes:
- IEWM trained offline; used during online RL with frozen weights.
- No hand-calibrated building parameters required.
- Diffusion sampling at inference implies computational cost per decision (authors discuss feasibility in RL loop).
Implications for AI Economics
- Energy and cost impact:
- 7.3% energy reduction in simulation is economically meaningful when aggregated across building stock; for commercial/residential portfolios this could translate to large cost savings and emissions reductions.
- 30.2% reduction in occupant discomfort implies improved productivity/health metrics—potential indirect economic benefits.
- Value of transferability:
- Learning transferable world models reduces per-building calibration and commissioning costs compared to physics-only or manually calibrated MPCs. That lowers marginal deployment cost and increases scalability of intelligent HVAC control products.
- Robustness under seasonal and climate shifts reduces the need for frequent re-training or extensive on-site data collection, lowering maintenance and operational expenditures for AI-enabled HVAC vendors.
- Market & business model opportunities:
- SaaS/edge offerings: vendors can offer IEWM-enabled controllers as cloud-assisted or on-edge services, charging per-building or per-energy-savings-sharing models.
- Grid services & demand response: more accurate, transferable forecasts of thermal inertia enable buildings to be more reliable flexible loads; IEWM can improve participation in demand-response markets and value streams from time-of-use or ancillary service programs.
- Investment & deployment considerations:
- Up-front costs: training diffusion models and deploying them (including computation for online sampling) require investment in compute and integration with building control systems; however, savings-driven ROI may be favorable for larger portfolios.
- Data & sensor needs: benefits depend on availability of zone-level sensors (temperatures, occupancy estimates, solar/weather feeds). Buildings lacking sensors may require retrofits, which are capital expenses.
- Computational latency: diffusion sampling is iterative—real-time control loops must be engineered to meet latency constraints (sampling speed, model compression, or fewer diffusion steps).
- Policy and regulation:
- Regulators incentivizing building efficiency (e.g., codes, carbon pricing, rebates) could accelerate adoption; transferable models reduce friction for compliance across building types and climates.
- Data governance: scaling such models across portfolios raises privacy and data-sharing issues (occupancy schedules, building operation patterns). Clear data policies and anonymization are important.
- Labor & market structure:
- Reduced need for manual calibration may shift labor from on-site tuning toward data/ML model lifecycle management and integration services. HVAC engineering roles may evolve rather than disappear.
- Risks and limitations affecting economic value:
- Results are demonstrated in simulation (SemiBuildingSim, Sinergym). Real-world heterogeneity, sensor noise, retrofits, and occupant behavior could reduce realized savings; field trials are needed to validate economic estimates.
- Model maintenance: while transferability reduces re-training, occasional adaptation or monitoring will be required—ongoing costs must be accounted for.
- Broader AI-economics lessons:
- Combining generative ML (diffusion) with light, learnable physics priors improves OOD robustness—this pattern can reduce deployment costs and risk in other infrastructure domains (e.g., grid assets, industrial processes) where transferability is key.
- There is commercial value in world models that produce intermediate, decision-relevant forecasts (the "thermal baseline") rather than opaque policy black boxes—this enhances interpretability and ease of integration into legacy control stacks.
Short takeaways for decision-makers - For building owners/operators: ADAPT-like models promise nontrivial energy and comfort gains with lower per-site calibration costs; pilot projects on large portfolios are a sensible next step to validate real-world ROI. - For vendors: physics-aware generative world models are a promising product differentiator—invest in scalable inference (latency reduction) and robust sensing packages. - For policymakers/incentive designers: supporting pilots and standardized data interfaces can accelerate adoption and magnify aggregated energy and emissions benefits.
Code: authors provide a repository for reproduction and further exploration.
Assessment
Claims (7)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| Introducing ADAPT's indoor environmental world model into HVAC control reduces HVAC energy consumption by 7.3% compared with the strongest baseline. Organizational Efficiency | positive | HVAC energy consumption |
Reading fidelity
high
Study strength
medium
|
7.3% reduction
|
| Introducing ADAPT's indoor environmental world model into HVAC control reduces occupant discomfort by 30.2% compared with the strongest baseline. Consumer Welfare | positive | Occupant discomfort |
Reading fidelity
high
Study strength
medium
|
30.2% reduction
|
| Under cross-season and cross-climate out-of-distribution transfer, ADAPT maintains robust control performance with only marginal degradation relative to in-distribution performance. Organizational Efficiency | positive | HVAC control performance under distribution shift |
Reading fidelity
high
Study strength
medium
|
not reported
|
| ADAPT substantially outperforms sequential and data-driven world models in cross-season and cross-climate out-of-distribution HVAC-control transfer. Organizational Efficiency | positive | Relative HVAC control performance under out-of-distribution transfer |
Reading fidelity
high
Study strength
medium
|
not reported
|
| ADAPT's conditional diffusion indoor environmental world model predicts a future thermal baseline intended to capture delayed indoor thermal dynamics and support delayed credit assignment in downstream reinforcement learning. Task Allocation | positive | Representation and use of delayed thermal dynamics for HVAC action evaluation |
Reading fidelity
high
Study strength
low
|
not reported
|
| ADAPT uses a differentiable multi-zone heat-balance regularization to encourage diffusion-generated trajectories to satisfy fundamental thermal dynamics without requiring building-specific thermal parameters. Other | positive | Physical consistency and transferability of generated thermal trajectories |
Reading fidelity
high
Study strength
low
|
not reported
|
| ADAPT consistently improves in-distribution HVAC control performance on both SemiBuildingSim and Sinergym. Organizational Efficiency | positive | In-distribution HVAC control performance |
Reading fidelity
high
Study strength
medium
|
not reported
|