安全客July 21, 2026🇨🇳Translated from Chinese

Siemens Industrial AI Drives Green Efficiency Revolution in Infrastructure Cooling, Parks, and Data Centers

The State Council recently issued the 15th Five-Year Plan Carbon Peaking Action Plan, which calls for advancing green and low-carbon industrial transformation, accelerating construction of green computing facilities, and promoting energy-saving and carbon-reduction measures in buildings.

This policy sets the stage for a major efficiency overhaul in China's cooling plants, industrial parks, and data centers over the next five years.

Siemens is positioning itself as a key participant through its intelligent infrastructure portfolio that connects energy systems, buildings, and industrial processes.

The company presented its solutions at the 2026 World Artificial Intelligence Conference, demonstrating applications across infrastructure, life sciences, consumer goods, and automotive manufacturing.

A Lightweight AI Box for Cooling Optimization

Traditional cooling systems in hotels and commercial buildings rely heavily on manual experience, leading to inefficient matching of chillers, pumps, and cooling towers with real-time loads.

Siemens addresses these challenges with the AI BOX (智冷魔方), a non-invasive edge computing device that integrates with existing building automation systems without requiring equipment replacement or major piping changes.

The solution combines physics-based models of HVAC components with machine-learning algorithms that predict cooling demand 15 minutes ahead and dynamically optimize equipment operation every 15 minutes.

At the five-star Shanghai Yingyi Crowne Plaza Holiday Hotel operated by InterContinental Hotels Group, installation and commissioning were completed in just three days with no interruption to hotel operations.

The deployment delivered approximately 7% additional energy savings on top of the existing control system and shifted maintenance from manual experience to fully autonomous AI-driven operation.

From Single-Point Savings to System-Level Energy-Carbon Management

At the park level, Siemens Smart ECX platform provides unified oversight of distributed energy resources including photovoltaics and storage.

The platform supports metering of 17 energy categories, automatically generates consumption baselines, and predicts usage trends with over 92% deviation-warning accuracy.

Following deployment at Sichuan Chuanrun Chengdu factory, the site achieved a 30% reduction in energy costs, over 90% overall energy efficiency, and cumulative carbon-emission cuts of 64,000 tons.

In November 2025, Chuanrun signed a strategic cooperation agreement with Siemens to scale zero-carbon park solutions and explore AI-liquid cooling and energy digitalization.

Power Infrastructure as the Foundation for AI Compute

Rising rack densities in AI training clusters have elevated power reliability to a critical requirement for data centers.

Siemens supplies end-to-end distribution systems featuring NXAirS medium-voltage switchgear and SIVACON S8 low-voltage panels.

These products were deployed at the Zhongjin Data Ulanqab zero-carbon computing base, China's first source-grid-load-storage integrated project serving the Beijing-Tianjin-Hebei region.

In July 2026, Siemens announced a 300-million-euro investment in Germany to expand capacity for energy-transition and AI data-center technologies, planning to create up to 700 new jobs by 2030.

Industrial AI Grounded in Domain Knowledge

Siemens stresses that successful industrial AI must fuse long-standing domain physics models with modern data-driven techniques rather than applying generic algorithms.

The approach spans hardware, software, and services, enabling customers to obtain complete solutions from a single vendor and reducing integration risk.

Documented results across multiple sites demonstrate that standardized, rapidly deployable products can be replicated from one hotel or park to another, creating scalable industrial value.

Related articles

HabrOther

OAuth Authorization Server Built Without Storing User Profiles

The article details the evolution of an OAuth Authorization Server that deliberately avoids storing user profiles, relying instead on external identity providers for authentication. It addresses three core constraints: hundreds of dynamically created isolated APIs, a public SPA client without a BFF, and the inability of resources to query the AS on every request. The design separates concerns so the AS handles only clients, tenants, grants, audiences, scopes, keys, sessions, and token issuance while the Main API owns profiles and roles. Tokens are managed securely inside a Service Worker using a custom FedCM grant, eliminating races across tabs and reducing XSS exposure. The approach minimizes blast radius, simplifies compliance, and keeps the AS replaceable without affecting product domain logic.

HabrOther

Why a 202-Character License Key Uses ECDSA P-256 Instead of Ed25519 or RSA

A developer building offline license verification for a .NET desktop application evaluated Ed25519, RSA, and ECDSA P-256 before selecting the last option. The decision was driven by the requirement for zero external dependencies, keys short enough for manual entry from email, and support for key rotation without breaking existing licenses. Although Ed25519 offers faster verification and a smaller public key, it is absent from System.Security.Cryptography in both .NET 8 and .NET 10, with API approval only targeted for version 11. RSA-2048 produces signatures too long for practical use, resulting in a 571-character Base32 string that users would find cumbersome. ECDSA P-256 with SHA-256 delivers a fixed 64-byte signature that becomes a manageable 202-character key when encoded in Base32, while remaining fully available in the runtime. The article also covers performance measurements, the risks of ECDSA nonce generation, and the deliberate choice of the IEEE P1363 signature format to guarantee fixed-length output.

HabrOther

Pilcrow Publishes Free Comprehensive Guide on Web Authentication

Author Pilcrow has released a detailed, ad-free handbook covering authentication and authorization practices for web applications. The resource draws on personal experience and includes practical examples in JavaScript and Go. It examines password-based methods, email verification, multi-factor authentication, passwordless flows, and passkeys while highlighting associated risks and usability trade-offs. The book also provides in-depth guidance on session management, token security, expiration policies, and email address handling as account identifiers. Recommendations emphasize choosing methods that match application security requirements and user expectations. Additional context is given on OWASP resources and community support channels.

HabrOther

redb 3.4.0 Adds Replay Checkpoints, Shared Runtime Layer and Declarative Secrets Handling for .NET Ecosystem

redb 3.4.0 delivers operational improvements for the .NET integration platform that includes typed storage over Postgres, MSSQL and SQLite, the redb.Route engine modeled after Apache Camel, the Tsak runtime with dashboard and clustering, and redb.Identity for OIDC and OAuth 2.1. The release focuses on post-deployment resilience with replay checkpoints that capture message state at named points inside routes, allowing safe re-execution of downstream steps without duplicating side effects. A shared runtime layer moves framework assemblies into a separate Libs/shared directory so that individual DLLs can be replaced without rebuilding or redeploying the entire Tsak or Identity packages. Secrets are now declared with a [Sensitive] attribute on endpoint options, ensuring URIs containing passwords or keys are sanitized before they reach logs, metrics or health checks. Additional controls include role-based access to management APIs, persistent audit trails and cryptographic signing of dynamically loaded modules. All Pro features remain free on the entire 3.x line with no licensing server required.