HyperAIHyperAI

Command Palette

Search for a command to run...

1年前

inelastic demandsと見かけ電力制約を伴う需要応答のためのオンラインアルゴリズム

Areg Karapetyan Majid Khonji Chi-Kin Chau Khaled Elbassioni

CogVLM2-Llama3-Chinese-Chat-19B デモをオンラインで実行

RTX 5090のコンピュートリソースがわずか20時間分 $1 (価値 $7)
ノートブックへ移動

概要

電力システムにおける古典的な問題は、オンライン方式で電力ネットワークの運転制約を違反することなく、流入する(弾力的または非弾力的な)需要を配分することである。オンライン意思決定問題は文献において十分に研究されているが、電力システムに特有の課題は、非線形制約が存在することであり、これは従来の設定からの逸脱である。特に顕著な例として、見かけの電力の容量制約があり、これは典型的な線形制約ではなく、二次制約をもたらす。本論文では、時間変動する容量制約の下で、要求された期間に対して非弾力的な需要の系列を配分可能かどうかを決定するための競争的ランダムオンラインアルゴリズムを提示する。このアルゴリズムは、時間変動する容量制約内での総満足可能な見かけの電力を考慮する。さらに、オンラインアルゴリズムのバリエーションを用いて、ノード電圧制約を伴う代替的な設定も検討する。最後に、これらのアルゴリズムを実証的に評価するためのシミュレーション研究を提供する。

One-sentence Summary

This paper presents a competitive randomized online algorithm that determines whether inelastic demands can be allocated over requested intervals under time-varying quadratic apparent power capacity constraints, introduces a nodal voltage constraint variant, and empirically evaluates both approaches through simulation studies.

Key Contributions

  • A competitive randomized online algorithm is introduced to determine the allocation of sequential inelastic demands within requested intervals while satisfying time-varying apparent power capacity constraints.
  • A variant of the algorithm is adapted to enforce nodal voltage limits under a relaxed path-topology model that assumes small transmission power losses.
  • Simulation studies are provided to empirically evaluate both algorithms under the specified network constraints.

Introduction

Modern smart grids require real-time demand response management to balance intermittent renewable generation and maintain network stability. The authors address the practical challenge of scheduling inelastic, binary customer demands that arrive unpredictably without knowledge of future requests. While existing online optimization methods effectively handle linear constraints, power systems introduce non-linear quadratic limits on apparent power and strict nodal voltage bounds, leaving a gap in reliable, theoretically guaranteed scheduling solutions. To bridge this gap, the authors develop a competitive randomized online algorithm that dynamically allocates inelastic demands under time-varying apparent power constraints. They further adapt the framework to enforce nodal voltage limits and demonstrate that the approach supports both centralized and distributed control architectures while maintaining provable performance guarantees.

Dataset

  • Dataset composition and sources: The authors construct a synthetic power system dataset using PSCAD simulation and CPLEX optimization. The data combines a custom microgrid environment with the standardized Canadian benchmark distribution system.
  • Key details for each subset: The microgrid configuration features over 2000 sequentially arriving customers within a 4MVA capacity network, with arrival times following a uniform random distribution and demand durations sampled uniformly. The Canadian benchmark feeder is rated at 8.7MVA, 400A, and 12.47KV, utilizing 700MCM Cu XLPE cable with a fixed impedance of 0.1529 + J0.1406 Ω/km and assigning a 2MVA load to each node. The dataset also includes two utility models: a quadratic formulation with predetermined non-negative constants, and a random formulation capped at 1MVA for commercial customers and 20KVA for residential users.
  • How the paper uses the data: The authors apply this dataset to the CSP_V problem to benchmark candidate algorithms. The CPLEX optimizer produces a baseline solution (OFL) that serves as a reference for performance comparison. Time-varying generation capacity is simulated using a Bernoulli process to reflect realistic grid fluctuations.
  • Additional processing details: Customer preferences are structured through a probability preference model that governs utility generation. All demand profiles, capacity limits, and utility parameters are mathematically parameterized to ensure reproducible case studies and consistent algorithm evaluation.

Method

The authors present a competitive online algorithm, referred to as Online, designed to solve the complex-demand scheduling problem under generation capacity constraints (CSP_C) in a demand response (DR) framework. The overall framework is structured to handle the arrival of customers sequentially, making decisions online without knowledge of future demands, while ensuring feasibility with respect to time-varying generation capacity. The algorithm leverages a primal-dual (PD) schema as a core subroutine to obtain fractional solutions and employs a randomized rounding technique with correction to convert these fractional solutions into integral ones, thereby satisfying the binary decision variable constraints required for the problem.

The Online algorithm is initialized with global variables including fractional solutions x^\widehat{x}x and x~\widetilde{x}x, integral solution xxx, and two sets IS\mathcal{I}_SIS and IL\mathcal{I}_LIL to categorize customers based on demand magnitude. The algorithm processes each arriving customer kkk by first classifying it into one of the two sets: IS\mathcal{I}_SIS for small demands, defined as those satisfying SkδmintTk{Ct}|S_k| \leq \delta \min_{t \in T_k}\{C_t\}SkδmintTk{Ct}, or IL\mathcal{I}_LIL for large demands. For customers in IS\mathcal{I}_SIS, the algorithm updates a fractional solution x^s\widehat{x}_sxs using the PD subroutine, which operates on a linearly constrained packing problem derived from the original quadratically constrained problem via Lemma 3. For customers in IL\mathcal{I}_LIL, a separate fractional solution x~l\widetilde{x}_lxl is computed using the PD subroutine. The PD schema, detailed in Algorithm 2, iteratively increases the primal variable xkx_kxk while adjusting dual variables yty_tyt to maintain feasibility and ensure the competitive ratio. After computing the fractional solutions, the algorithm applies randomized rounding: for a customer kILk \in \mathcal{I}_LkIL, the decision xkx_kxk is set to 1 with probability ατx~lukrL\alpha \tau \frac{\widetilde{x}_l}{u_k r_L}ατukrLxl, and for kISk \in \mathcal{I}_SkIS, xkx_kxk is set to 1 with probability (1τ)x^s2ukrS(1-\tau) \frac{\widehat{x}_s}{2u_k r_S}(1τ)2ukrSxs. Finally, a correction step ensures feasibility by setting xk0x_k \leftarrow 0xk0 if the resulting load exceeds the capacity constraint at any time slot ttt. This process ensures that the algorithm produces a feasible solution while maintaining a theoretical competitive ratio, as analyzed in Theorem 1.

Experiment

The empirical evaluation compares the proposed Online algorithm against an offline optimal solution and a greedy first-come-first-serve benchmark across varying utility functions and operational constraints. Results demonstrate that the Online approach consistently achieves performance closely aligned with the offline optimum, whereas the FCFS method frequently deviates significantly from optimal outcomes. Additionally, the proposed algorithm successfully maximizes system objectives while maintaining end-of-feeder voltage levels within IEEE standards. These findings confirm the method's robustness and practical effectiveness for dynamic scheduling under realistic grid constraints.


AIでAIを構築

アイデアからローンチまで — 無料のAIコーディング支援、すぐに使える環境、最高のGPU価格でAI開発を加速。

AI コーディング補助
すぐに使える GPU
最適な料金体系

HyperAI Newsletters

最新情報を購読する
北京時間 毎週月曜日の午前9時 に、その週の最新情報をメールでお届けします
メール配信サービスは MailChimp によって提供されています