CHAPTER 7
Phase 4 of WIA-BEMS transforms individual intelligent buildings into active participants in the broader energy ecosystem. While Phases 1-3 focused on managing energy within building boundaries, Phase 4 enables buildings to interact with smart grids, coordinate with renewable energy sources, integrate with building automation systems, and participate in certification and compliance programs.
This chapter explores the integration frameworks that enable buildings to contribute to grid stability, maximize renewable energy utilization, achieve net-zero goals, and demonstrate compliance with energy efficiency standards and regulations.
Smart grids require bidirectional communication with buildings to balance supply and demand dynamically. Phase 4 defines how buildings participate in this ecosystem.
OpenADR (Open Automated Demand Response) enables standardized communication between utilities and buildings for demand response programs.
// Example OpenADR event from utility
{
"event_id": "utility-dr-2025-01-15-001",
"event_type": "MODERATE",
"start": "2025-01-15T15:00:00-08:00",
"duration": "PT3H",
"notification_time": "2025-01-15T13:00:00-08:00",
"signals": [
{
"signal_type": "LOAD_CONTROL",
"signal_name": "SIMPLE",
"current_value": 0,
"intervals": [
{
"dtstart": "2025-01-15T15:00:00-08:00",
"duration": "PT1H",
"signal_payload": 2
},
{
"dtstart": "2025-01-15T16:00:00-08:00",
"duration": "PT2H",
"signal_payload": 1
}
]
}
]
}
// Building response through WIA-BEMS
{
"response_id": "bldg-resp-001",
"event_id": "utility-dr-2025-01-15-001",
"opt_type": "optIn",
"modification_number": 0,
"building_commitment": {
"reduction_kw": 50,
"confidence": 0.90,
"baseline_method": "meter_before",
"estimated_savings_usd": 45.00
},
"implementation_plan": [
{
"action": "hvac_setpoint_adjustment",
"reduction_kw": 20
},
{
"action": "lighting_reduction",
"reduction_kw": 15
},
{
"action": "battery_discharge",
"reduction_kw": 15
}
]
}
| Service Type | Description | Requirements | Typical Compensation |
|---|---|---|---|
| Peak Demand Reduction | Reduce load during system peaks | 50+ kW reduction capability | $100-300/kW-year |
| Frequency Regulation | Fast response to grid frequency changes | <1s response, battery storage | $200-500/kW-year |
| Spinning Reserve | Available capacity on standby | Reliable 15-minute response | $50-150/kW-year |
| Voltage Support | Reactive power injection | Advanced inverters | $30-100/kW-year |
| Energy Arbitrage | Buy low, sell high | Storage, accurate forecasting | Variable (market-based) |
Integrating on-site renewable energy with building loads requires sophisticated coordination to maximize self-consumption and grid benefits.
{
"integration_id": "solar-integration-001",
"building_id": "BLDG-001",
"solar_system": {
"capacity_kw": 100,
"location": "rooftop",
"inverter_count": 4,
"monitoring_interval_s": 5
},
"current_status": {
"timestamp": "2025-01-15T14:30:00Z",
"generation_kw": 75.5,
"building_load_kw": 100.0,
"grid_import_kw": 24.5,
"grid_export_kw": 0,
"self_consumption_percent": 100,
"battery_charging_kw": 0
},
"optimization_strategy": {
"priority_order": [
"building_consumption",
"battery_charging",
"grid_export"
],
"battery_schedule": {
"charge_when": "excess_solar",
"discharge_when": "peak_prices",
"reserve_percent": 20
}
},
"forecast": {
"next_24h_generation_kwh": 450,
"next_24h_load_kwh": 2400,
"self_sufficiency_percent": 18.75,
"grid_independence_hours": 4.5
}
}
Battery storage systems enable time-shifting of renewable energy and provide grid services.
| Operation Mode | When Used | Primary Benefit | Typical Duration |
|---|---|---|---|
| Self-Consumption | Solar generation > load | Maximize renewable use | Continuous |
| Peak Shaving | Approaching demand charge threshold | Reduce demand charges | 15-60 minutes |
| Time-of-Use Arbitrage | Price differential exists | Energy cost reduction | 2-6 hours |
| Backup Power | Grid outage | Resilience | 4-24 hours |
| Frequency Regulation | Grid frequency deviation | Grid services revenue | <1 minute cycles |
Phase 4 enables seamless integration with existing building automation systems, bridging legacy infrastructure with modern energy management.
BACnet is the most widely deployed building automation protocol. Phase 4 defines mappings between BACnet objects and WIA-BEMS data models.
// BACnet object mapping to WIA-BEMS
{
"mapping_id": "bacnet-map-001",
"bacnet_device": {
"device_id": 1001,
"device_name": "AHU-301",
"ip_address": "192.168.1.100",
"port": 47808
},
"object_mappings": [
{
"bacnet_object": {
"type": "analog-input",
"instance": 1,
"property": "present-value",
"units": "degrees-fahrenheit"
},
"wia_bems_mapping": {
"schema": "temperature",
"field": "temperature.value",
"unit_conversion": "fahrenheit_to_celsius",
"location": {
"building_id": "BLDG-001",
"equipment_id": "AHU-301",
"measurement_point": "supply_air_temperature"
}
}
},
{
"bacnet_object": {
"type": "analog-output",
"instance": 1,
"property": "present-value",
"units": "degrees-fahrenheit"
},
"wia_bems_mapping": {
"schema": "equipment_control",
"field": "setpoints.supply_air_temp_c",
"unit_conversion": "celsius_to_fahrenheit",
"control_type": "setpoint_adjustment"
}
}
],
"polling_interval_s": 30,
"cov_subscription": true
}
As EV adoption grows, coordinating building and vehicle charging becomes essential for load management.
{
"charging_coordination_id": "ev-coord-001",
"building_id": "BLDG-001",
"charger_count": 20,
"total_capacity_kw": 300,
"current_state": {
"active_sessions": 12,
"total_charging_kw": 180,
"building_load_kw": 220,
"total_load_kw": 400,
"demand_limit_kw": 450
},
"smart_charging_strategy": {
"priority": "time_to_full_charge",
"constraints": {
"max_building_load_kw": 450,
"min_charge_rate_per_vehicle_kw": 3.3,
"consider_solar_availability": true,
"consider_time_of_use_rates": true
},
"vehicle_sessions": [
{
"session_id": "ev-sess-001",
"arrival_time": "2025-01-15T08:30:00Z",
"departure_time": "2025-01-15T17:00:00Z",
"battery_capacity_kwh": 75,
"current_soc_percent": 40,
"target_soc_percent": 80,
"energy_needed_kwh": 30,
"charging_rate_kw": 7.2,
"priority": "normal"
}
]
}
}
Phase 4 enables automated reporting to certification programs and compliance platforms.
| Certification | Required Data | Reporting Frequency | Integration Method |
|---|---|---|---|
| LEED | Energy consumption, water use, waste | Monthly | ENERGY STAR Portfolio Manager API |
| BREEAM | Energy, water, materials, waste | Annual | BREEAM In-Use portal |
| Energy Star | Monthly energy and water consumption | Monthly | Portfolio Manager Web Services |
| ISO 50001 | Energy performance indicators | Continuous | Custom integration |
| Net Zero | Energy production/consumption balance | Real-time + annual | Custom dashboard + reporting |
{
"compliance_report_id": "comp-rep-001",
"building_id": "BLDG-001",
"report_period": {
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-31T23:59:59Z"
},
"certifications": [
{
"program": "LEED",
"level": "Gold",
"expiration": "2027-12-31",
"required_metrics": {
"energy_use_intensity_kwh_per_sqm": 85.2,
"baseline_comparison_percent": -28.5,
"renewable_energy_percent": 18.5,
"water_use_intensity_l_per_sqm": 125.5
},
"compliance_status": "compliant"
},
{
"program": "Energy_Star",
"score": 87,
"required_threshold": 75,
"compliance_status": "compliant"
}
],
"automated_submission": {
"portfolio_manager_property_id": "12345678",
"last_submission": "2025-02-05T10:30:00Z",
"next_submission": "2025-03-05T10:30:00Z",
"submission_status": "successful"
}
}
Organizations with multiple buildings need portfolio-level visibility and optimization.
{
"portfolio_id": "portfolio-001",
"organization": "Example Corporation",
"building_count": 25,
"total_area_sqm": 625000,
"portfolio_metrics": {
"total_energy_kwh_month": 2850000,
"total_cost_usd_month": 427500,
"avg_eui_kwh_per_sqm_year": 180.5,
"portfolio_energy_star_score": 82,
"total_solar_capacity_kw": 1500,
"total_battery_capacity_kwh": 3000
},
"top_performers": [
{"building_id": "BLDG-001", "energy_star_score": 95},
{"building_id": "BLDG-007", "energy_star_score": 92},
{"building_id": "BLDG-015", "energy_star_score": 89}
],
"improvement_opportunities": [
{
"building_id": "BLDG-012",
"issue": "high_baseload",
"current_eui": 225.0,
"target_eui": 180.0,
"savings_potential_kwh_year": 112500,
"savings_potential_usd_year": 16875
}
]
}
Phase 4 enables integration with various third-party platforms for enhanced capabilities.
| Platform Type | Purpose | Integration Method | Examples |
|---|---|---|---|
| Weather Services | Forecasts for optimization | REST API | NOAA, Weather.com |
| Energy Markets | Real-time pricing | WebSocket feeds | CAISO, PJM, ERCOT |
| Maintenance Management | Work order integration | REST API, webhooks | Maximo, ServiceNow |
| Financial Systems | Cost tracking, reporting | REST API | SAP, Oracle Financials |
| Occupancy Systems | Room booking, attendance | REST API, MQTT | Microsoft Exchange, Google Workspace |
Successfully implementing Phase 4 integrations requires careful planning and execution.
This chapter explored Phase 4 of WIA-BEMS, examining how buildings integrate with external systems to become active participants in the broader energy ecosystem. We've seen how standardized integration frameworks enable buildings to contribute to grid stability, maximize renewable energy, and achieve certification goals.
With all four phases of WIA-BEMS explored, we're ready to examine practical implementation and certification. Chapter 8 provides concrete guidance on deploying WIA-BEMS systems, achieving certification, and ensuring long-term success through proper operation and maintenance.
Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.
Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.
Korea operates a comprehensive industrial cluster system. Korea Top 12 National Strategic Technologies (5th Science and Technology Master Plan 2023-2027): (1) Semiconductors and Displays (2) Secondary Batteries (3) Advanced Mobility (autonomous driving, UAM) (4) Next-Generation Nuclear (SMR) (5) Advanced Bio (6) Aerospace and Marine (7) Hydrogen (8) Cybersecurity (9) Artificial Intelligence (10) Next-Generation Communications (11) Advanced Robotics and Manufacturing (12) Quantum. 12 fields receive direct investment of 5 trillion KRW annually, cumulative 30 trillion KRW by 2030. Korea Major Industrial Clusters: Pangyo IT Cluster (1,300+ companies, 100 trillion KRW revenue), Gangnam Fintech (200+ companies), Songdo BT Bio Cluster, Daegu Medical Cluster, Ulsan Industry (shipbuilding, petrochemicals, automotive), Changwon Machinery, Changwon National Industrial Complex, Siheung and Banwol (SME manufacturing), Yeosu Petrochemicals, Pyeongtaek Semiconductor (Samsung Electronics Pyeongtaek Campus), Icheon and Cheongju Semiconductor (SK hynix Icheon and Cheongju Campuses), Asan Display (Samsung Display Asan Campus), Gumi Mobile (Samsung Gumi Campus), Pohang Steel (POSCO Pohang Steel Mill), Gwangyang Steel (POSCO Gwangyang Steel Mill), Dangjin Steel (Hyundai Steel Dangjin), Ulsan Automotive (Hyundai Motor Ulsan Plant), Asan Automotive (Hyundai Asan Plant), Kia Gwangju and Sohari, POSCO Gwangyang and Pohang Steel Mills, SK hynix Icheon and Cheongju, Samsung Electronics Hwaseong, Giheung, Pyeongtaek, Onyang, Cheonan, Asan Semiconductor Facilities. Major Industrial Complexes and Techno Valleys: Pangyo Techno Valley (1st 800 companies, 2nd 600 companies, 3rd 1,200 companies), Dongtan Techno Valley, Gwanggyo Techno Valley, Songdo IBD, Yeouido Financial District, Gangnam Teheran-ro Valley, Sihwa, Banwol, Gumi, Ulsan, Changwon, Geoje, Yeosu, Ulsan Mipo, Onsan, Cheongju, Iksan, Gwangyang, Yeosu, POSCO Gwangyang Steel Mill, Asan Bay, Seosan, Songdo, Incheon Airport, Sejong, Cheongna, Geomdan, Pyeongtaek Automotive Industrial Complex, Giheung Semiconductor Complex, Icheon Semiconductor Complex, Asan Display Complex, Gumi Mobile Complex, Changwon National Industrial Complex, Ulsan Mipo National Industrial Complex, Yeosu National Industrial Complex, Onsan National Industrial Complex. Korea Workforce Statistics: STEM undergraduate students 700,000 (26% of all university students), STEM graduate students 170,000, PhD researchers 140,000, STEM doctorates conferred 8,000 annually (Seoul National University 1,200, KAIST 800, POSTECH 400, Yonsei University 700, Korea University 600, UNIST 250, DGIST 100, GIST 200, KISTI 50, KIST and ETRI postdoctoral programs 1,000), information security experts 300,000 (KISA-trained and private), AI experts 50,000 (NIA, IITP, NIPA, Samsung, LG, SK, NAVER, Kakao trained), semiconductor experts 260,000 (Samsung Electronics 60,000, SK hynix 30,000, DB HiTek, SK siltron). National R&D Project Operation: National R&D projects 100,000+ annually (MSIT 35,000, MOTIE 25,000, MSS 20,000, MOE 15,000, others 5,000), R&D participating institutions 25,000+, R&D participating researchers 530,000, National R&D output (papers, patents) 540,000 annually. Korea Corporate R&D Investment Top 10 (2024): Samsung Electronics 28 trillion KRW, LG Electronics 9 trillion KRW, SK hynix 8 trillion KRW, Hyundai Motor 6 trillion KRW, Kia 4 trillion KRW, LG Chem 3.5 trillion KRW, LG Display 3.2 trillion KRW, POSCO 3 trillion KRW, Samsung SDI 2.7 trillion KRW, SK Innovation 2.5 trillion KRW.