批發電力交易

B2B

發電商提報容量 → 電網評估 → 競標 → 調度 → 計量 → 結算。

6 個節點 · 5 條連接energy
apisystemevent
視覺化
發電商提報容量api

向市場運營商提交可用的 MW 數量、爬坡速率及最短運行時間。

sequential電網運營商評估
電網運營商評估system

評估電網穩定性、輸電瓶頸及需求預測。

sequential競標回合
競標回合event

發電商與零售商針對每個 30 分鐘時段提交競標。

sequential調度指令
調度指令system

按邊際成本排序調度:成本最低的發電機優先啟動。

sequential智慧電表讀數
智慧電表讀數api

從發電端和負載點收集區間計量數據。

sequential財務結算
財務結算system

計算淨部位,套用現貨價格,核發結算報表。

uc-energy-trading.osop.yaml
osop_version: "1.0"
id: "energy-trading"
name:"批發電力交易"
description:"發電商提報容量 → 電網評估 → 競標 → 調度 → 計量 → 結算。"

nodes:
  - id: "offer_capacity"
    type: "api"
    subtype: "rest"
    name: "發電商提報容量"
    description: "向市場運營商提交可用的 MW 數量、爬坡速率及最短運行時間。"

  - id: "grid_evaluate"
    type: "system"
    name: "電網運營商評估"
    description: "評估電網穩定性、輸電瓶頸及需求預測。"

  - id: "price_bidding"
    type: "event"
    name: "競標回合"
    description: "發電商與零售商針對每個 30 分鐘時段提交競標。"
    timeout_sec: 3600

  - id: "dispatch_order"
    type: "system"
    name: "調度指令"
    description: "按邊際成本排序調度:成本最低的發電機優先啟動。"

  - id: "metering"
    type: "api"
    subtype: "rest"
    name: "智慧電表讀數"
    description: "從發電端和負載點收集區間計量數據。"

  - id: "settlement"
    type: "system"
    name: "財務結算"
    description: "計算淨部位,套用現貨價格,核發結算報表。"
    security:
      risk_level: "high"

edges:
  - from: "offer_capacity"
    to: "grid_evaluate"
    mode: "sequential"
  - from: "grid_evaluate"
    to: "price_bidding"
    mode: "sequential"
  - from: "price_bidding"
    to: "dispatch_order"
    mode: "sequential"
  - from: "dispatch_order"
    to: "metering"
    mode: "sequential"
  - from: "metering"
    to: "settlement"
    mode: "sequential"