每天早上一封邮件,把昨天的 AI 梳理好订阅邮件

METAL LAB

ADAPT: Physics-Aware Diffusion-based World Models for Adaptive Predictive Transferable HVAC Control

arXiv:2608.198042026-08-21

给空调控制AI装上物理常识,让它换季换地方也不掉链子

建筑供暖通风空调(HVAC)系统消耗了全球约三分之一的能源并排放相应比例的二氧化碳,但由于墙壁、地板会先储热再慢慢放热造成的热惯性,控制起来很难,现有AI控制器一旦换到新的季节或气候地区,表现就会大幅下降。研究团队提出ADAPT,用扩散模型(diffusion model)结合建筑热平衡方程来预测室内温度未来的变化,并把这个预测结果提供给强化学习控制器做决策参考。结果显示,在相同条件下,ADAPT比现有最强方法节能7.3%,让人体感不适降低30.2%,而且换到没见过的季节或气候地区时性能几乎没有明显下降。

他们做了什么

  1. 用扩散模型搭建了一个仅依靠有限传感器数据、就能推测建筑内部隐藏储热状态的室内环境世界模型(IEWM)。
  2. 预测出一条假设继续沿用上一步空调动作的温度基准线,帮助强化学习控制器判断当前控制决策未来会带来什么延迟效果。
  3. 设计了一个可学习的多区域热平衡方程,涵盖房间之间的热交换、室内外热交换、太阳辐射、人体散热和空调设备散热,用它来约束扩散模型的预测结果符合物理规律。
  4. 在基于真实办公楼数据的SemiBuildingSim和开源仿真平台Sinergym上测试,在相同季节相同地区条件下,ADAPT比最强基线节能7.3%,不适感降低30.2%。
  5. 在夏冬季节切换、斯德哥尔摩与亚利桑那气候地区切换等训练时未见过的场景下,ADAPT性能只有轻微下降,远比现有方法更稳健。
ADAPT: Physics-Aware Diffusion-based World Models for Adaptive Predictive Transferable HVAC Control figure 0
Table 4: Performance comparisons on SemiBuildingSim Sum- mer (mean ± std over three seeds, ID). Lower is better.
AlgorithmEnergy (kWh) ↓ Abs PMV ↓PPD (%) ↓Action Fluctuation ↓
MPC251.00 ± 9.790.56 ± 0.06 16.20 ± 1.089.94 ± 1.13
A2C247.28 ± 3.210.48 ± 0.03 13.05 ± 1.466.02 ± 1.03
PPO236.52 ± 2.900.46 ± 0.04 12.62 ± 0.754.94 ± 1.46
DQN248.41 ± 3.890.50 ± 0.05 13.02 ± 0.776.59 ± 0.55
BDQ241.87 ± 2.730.45 ± 0.05 11.40 ± 1.285.40 ± 0.46
TransformerRL233.97 ± 4.360.42 ± 0.03 11.72 ± 1.624.66 ± 0.65
ADAPT: Physics-Aware Diffusion-based World Models for Adaptive Predictive Transferable HVAC Control figure 6
Table 6: MPC hyperparameters.
HyperparameterValue
Planning horizon 𝐻6
Number of candidate sequences 𝑁16
Number of elite samples 𝐾4
Planning iterations 𝑀3
Discount factor 𝛾0.98
Table 7: Hyper-parameters for the proposed ADAPT ( 𝐻 𝑓 𝑜𝑟𝑒 , 𝐻,𝑇 on SemiBuildingSim).
Hyper-parameterValueHyper-parameterValue
OptimizerAdamLearning rate2×10−3
Discount factor 𝛾0.99Replay buffer size5×105
Batch size64Exploration 𝜀1.0 → 0.04
Target update interval1000 stepsTD(𝜆) parameter0.8
Bootstrap horizon 𝐻3Forecaster horizon 𝐻fore3
Network architecture(512, 512)Forecaster History step 𝑇6
Table 8: Hyper-parameters for Model-Free Baselines.
ParameterDQNBDQA2CPPOTransformerRL
Learning rate2×10−32×10−38×10−410−310−3
Discount factor 𝛾0.990.990.980.980.98
Batch size64644012001200
Network hidden dim256512256256256
GAE 𝜆0.90.80.8
PPO Clip 𝜀0.20.2
Entropy coef.00.010.01
Table 9: Hyper-parameters for Model-Based Baselines (MBVE and MBPO built on the PPO backbone).
ParameterMBVEMBPODreamerV3
Rollout / Imagination horizon888
Transitions / Starts per iter.2561024256
Blend / Return 𝜆1.00.95
Warmup (iters)333

为什么重要

密集布设室内传感器成本高、还涉及隐私问题,现实中运营者往往只能收集单一场景下的有限数据,却希望控制系统能在没见过的季节或地区照样好用,这项研究提供了一条实现思路。它同时兼顾节能和舒适度,预测结果又符合物理规律,对建筑减碳和实际部署都有参考价值。

本文术语

  • 扩散模型(diffusion model) · 一种从随机噪声出发、逐步去噪生成数据的生成式AI方法,这里用来预测室内环境未来走势
  • 热惯性(thermal inertia) · 墙壁、地板、家具等先储存热量再缓慢释放的现象,使得空调动作的效果不会立刻显现
  • 部分可观测马尔可夫决策过程(POMDP) · 一种决策框架,系统真实的内部状态无法完全获知,只能依靠部分传感器信息做判断
  • 分布外(OOD) · 指模型训练时未见过的季节或气候等新条件
  • 强化学习(reinforcement learning) · 一种让控制器通过不断试错来学习如何最大化奖励的AI训练方法

无法转载的图表

  • Figure 1
  • Figure 2
  • Figure 3
  • Figure 1: Overall framework of ADAPT. The training process of ADAPT is divided into two phases. Phase I: Physics-aware Diffusion IEWM Training. Phase II: Online RL Policy Learning. IEWM is frozen during phase II. 3.3 Physics-aware Thermal Regularization The conditional diffusion IEWM can effectively model offline trajec- tories. However, vanilla data-driven learning may exploit domain- specific st
  • Figure 1: Overall framework of ADAPT. The training process of ADAPT is divided into two phases. Phase I: Physics-aware Diffusion IEWM Training. Phase II: Online RL Policy Learning. IEWM is frozen during phase II. 3.3 Physics-aware Thermal Regularization The conditional diffusion IEWM can effectively model offline trajec- tories. However, vanilla data-driven learning may exploit domain- specific st
  • Figure 7
  • Figure 8
  • Figure 9
  • Figure 10
  • Figure 11
在原文中查看图表 →

论文原文摘要(英文)

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.

作者 · Xu Yang, Kailai Sun, Dianyu Zhong, Qianchuan Zhao

在 arXiv 阅读

最新论文

全部论文 →

METAL LAB 最新报道

图片来源: Xu Yang et al., arXiv:2608.19804, CC BY 4.0