電網尖峰需求告警

AI → Human

AI 預測電力需求尖峰並告警電網操作員執行需求回應。

5 個節點 · 4 條連接energy
eventagenthumansystem
視覺化
智慧電表資料串流event

來自服務範圍內智慧電表的聚合用電資料。

sequentialAI 負載預測
AI 負載預測agent

利用天氣、歷史模式與行事曆事件預測尖峰需求。

conditional尖峰需求告警
尖峰需求告警api

附帶預測時程與需求規模通知電網控制室。

sequential電網操作員審查
電網操作員審查human

操作員驗證預測並決定需求回應措施。

conditional需求回應啟動
需求回應啟動system

發送削減訊號、啟動尖峰電廠或觸發負載削減。

uc-grid-demand-alert.osop.yaml
osop_version: "1.0"
id: "grid-demand-alert"
name:"電網尖峰需求告警"
description:"AI 預測電力需求尖峰並告警電網操作員執行需求回應。"

nodes:
  - id: "meter_data"
    type: "event"
    name: "智慧電表資料串流"
    description: "來自服務範圍內智慧電表的聚合用電資料。"

  - id: "load_forecast"
    type: "agent"
    subtype: "llm"
    name: "AI 負載預測"
    description: "利用天氣、歷史模式與行事曆事件預測尖峰需求。"

  - id: "peak_alert"
    type: "api"
    name: "尖峰需求告警"
    description: "附帶預測時程與需求規模通知電網控制室。"

  - id: "operator_review"
    type: "human"
    subtype: "review"
    name: "電網操作員審查"
    description: "操作員驗證預測並決定需求回應措施。"
    security:
      approval_gate: true

  - id: "demand_response"
    type: "system"
    name: "需求回應啟動"
    description: "發送削減訊號、啟動尖峰電廠或觸發負載削減。"

edges:
  - from: "meter_data"
    to: "load_forecast"
    mode: "sequential"
  - from: "load_forecast"
    to: "peak_alert"
    mode: "conditional"
    when: "forecast.peak_mw > capacity_threshold"
  - from: "peak_alert"
    to: "operator_review"
    mode: "sequential"
  - from: "operator_review"
    to: "demand_response"
    mode: "conditional"
    when: "review.activate == true"