REVIEW 3 major objections 5 minor 23 references
Smoothed Two-Stage Decomposition Algorithm for Solving Large-Scale Transmission and Distribution AC-OPF Problems
T0 review · 3 major / 5 minor · reviewed 2026-08-01 · deepseek-v4-flash
Pith's one-line read A two-stage decomposition solver for AC optimal power flow matches the monolithic optimum while cutting memory and wall-clock time on large grids.
desk verdict Solid parallel decomposition solver for T&D AC-OPF, but the 'no relaxations' claim is contradicted by the penalty relaxation and the missing penalty parameters undercut the exactness story. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the barrier-value-function smoothing: each inequality-constrained distribution subproblem is reformulated with a log-barrier term and a copy of the shared boundary variables. The dual variables on the copy constraints provide the exact gradient of the smoothed value function, and the implicit function theorem applied to the subproblem's KKT system yields exact second derivatives. A penalty relaxation of the active and reactive boundary power-balance constraints keeps the subproblems feasible; the penalty factors are assumed 'sufficiently large' to enforce power matching at the optimum.
What would settle it
Run the largest reported multiprocess test case, record the final active and reactive power mismatch at every transmission–distribution boundary bus, and check whether the values are zero to within numerical tolerance. If any mismatch is nonzero, the solved point is not feasible for the original coupled AC-OPF problem, contradicting the exactness claim.
Extended reading notes
Core claim
The central claim is that the smoothed two-stage decomposition, denoted StsDOpt, solves the nonlinear, nonconvex, multi-phase unbalanced T&D AC-OPF problem without reliance on approximations or relaxations. The paper establishes that substituting the barrier formulation for each distribution subproblem makes the subproblem's optimal value a smooth function of the transmission boundary variables, so that exact gradients and Hessians can be computed from the KKT system of the subproblem. The master SQP solver then iterates with these derivatives. Experimental results show that this approach, parallelized across feeders, yields objective values nearly identical to the monolithic integrated solv
Load-bearing premise
The boundary power-balance equations are relaxed and enforced only through a penalty whose magnitude is never stated, and the paper asserts without proof that 'sufficiently large' penalty factors make the boundary flows match exactly at the optimum.
Editorial extensions
If this is right
- The exact decomposition eliminates the need for an AC-feasibility-check post-processing step that is required by methods based on convex relaxations.
- On the largest tested case (about 52,500 nodes), the multiprocess version reduces wall-clock solve time from roughly 225 to 117 seconds and master-node memory from about 51 GiB to about 7 GiB.
- The smoothing approach naturally handles multiphase, unbalanced distribution feeders instead of single-phase balanced approximations.
- Because subproblems are independent, the method can be distributed across compute nodes, enabling solution of problems that do not fit in a single shared-memory machine.
Reading between the lines
- The reported optimality gaps are computed against a monolithic solve of the same relaxed boundary model; if the penalty relaxation is not exact, the comparison may be against the wrong baseline, so the true gap to the original coupled feasible problem could be larger.
- The implicit-function-theorem derivative calculation assumes nonsingularity and strict complementarity of the subproblem KKT system; at points where the active set changes or the matrix becomes singular, the master solver may stall or need a fallback derivative approximation.
- The scalability study uses repeated identical copies of the same distribution feeder, which may understate the difficulty of real heterogeneous feeders; a test with widely varying feeder sizes and characteristics would stress the master's ability to coordinate very different subproblem curvatures.
- Since penalty parameters are not reported, a practical user would need to tune them per instance; the method's effectiveness in deployment may hinge on a systematic penalty-selection rule that the paper does not provide.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes StsDOpt, a smoothed two-stage decomposition algorithm for large-scale transmission and distribution AC-OPF. The master transmission problem is solved with an SQP method and the distribution subproblems with barrier-based interior-point solvers, using implicit-function-theorem derivatives to pass smooth value-function information to the master. The method is implemented in Julia/PowerModelsITD and evaluated on test cases up to roughly 52k nodes, with multithread and multiprocess variants. The central claims are that the method avoids approximations or relaxations, handles nonlinear nonconvex unbalanced multiphase models, reduces wall-clock time, and lowers memory footprint compared with monolithic integrated solution.
Significance. If the exactness and scalability claims hold, this would be a valuable contribution: it would provide a practical parallel solver for a difficult nonconvex T&D AC-OPF class without convexification, with reduced memory requirements and open-source integration into PowerModelsITD. The numerical study is internally consistent, the package versions are specified, and the use of only second-order derivatives (unlike the prior work in [18]) is a concrete step forward. However, the central 'no approximations or relaxations' claim is contradicted by the penalty relaxation in Section II-B, and the exactness of the decomposition is not established. The paper is therefore promising but needs substantial revision before its main claim can be accepted.
major comments (3)
- [Section II-B, Eqs. (12)-(13); Table I] The abstract and Section I-B state that StsDOpt 'does not rely on approximations or relaxations.' Yet Section II-B explicitly relaxes the boundary active/reactive power balances (12)-(13) and penalizes their difference, asserting only that 'sufficiently large' penalty factors make the flows match. No penalty values, update schedule, or proof of exact recovery is given, and no test case reports the maximum violation of (12)-(13). Because Table I computes the optimality gap against the integrated solution of the original problem, a 0.000% gap could mean the penalized problem has a nearby optimum. The exactness claim is therefore unsupported as written. Please provide penalty values and boundary-mismatch statistics, or a proof that the penalized problem recovers the original solution, or revise the no-relaxation claim.
- [Section II-B, Eq. (7) vs. Eqs. (12)-(15)] The generic subproblem in Eq. (7) includes a hard boundary equality x^T_{i,beta_D} - y^D_{i,beta_T} = 0, but the T&D implementation appears to replace the power-flow part of this coupling with the relaxed constraints (12)-(13) while retaining voltage/angle equalities (14)-(17). The relation between Eq. (7) and Eqs. (12)-(17) is not stated. This ambiguity is load-bearing because the exactness of the decomposition depends on which constraints are enforced in the master/subproblem and which are penalized. Please clarify the precise formulation that is actually solved.
- [Section II-A, Eq. (5)] The derivative computation via the implicit function theorem requires the Jacobian of the barrier KKT system, ∇_v F_i, to be nonsingular along the solution path. For barrier problems this requires constraint qualifications and strict complementarity-type conditions that are not verified for the reported T&D instances. Active-set changes can make the value function nonsmooth even for finite μ. Because the master SQP relies on these exact second derivatives, the paper should state the conditions under which Eq. (5) is valid and what the solver does when those conditions fail (e.g., a fallback to quasi-Newton or derivative-free steps).
minor comments (5)
- [Abstract and Section I] Grammar: 'Traditional OPF optimize consider transmission systems' and similar phrases should be edited for clarity.
- [Section IV-B, test case 10] Case500-CaseR1R2R3R4R5GC is described as using the IEEE 118-bus system, but the case name and the variable counts suggest a 500-bus transmission system. Please correct the description.
- [Section I-B, contribution 6] 'PowerModelITD' appears to be a typo for 'PowerModelsITD'.
- [Eq. (9)] The notation uses hat{f}_i for both the value function in Eq. (7) and the distribution cost function in Eq. (9); please use distinct symbols to avoid confusion.
- [Table I] The 'Iterations' column appears to report different quantities for the integrated solver versus the decomposition (master/subproblem iterations); please clarify what is counted.
Circularity Check
No construction-level circularity found; derivation is self-contained, though key components rely on same-group prior work.
full rationale
The derivation of StsDOpt is not circular by construction. The master-subproblem decomposition in Eqs. (1)-(4) is defined directly from the original problem; the value function f_i(x;mu) is the barrier reformulation of the subproblem, and the derivative formulas (Eq. 5) come from the implicit function theorem applied to the KKT system, not from fitting. The numerical gap definition (Eq. 18) compares StsDOpt to the monolithic PowerModelsITD model; this is a consistency test between two implementations of the same formulation, not a fitted constant. The relaxation of boundary balance constraints (12)-(13) with an unspecified penalty is an internal inconsistency with the 'no relaxations' claim and a gap in support, but it does not make the reported result equivalent to the input by construction: no penalty value is tuned to reproduce the objectives, and no equation is defined in terms of the target output. The paper does rely heavily on same-group citations [13], [18], [19] for the smoothing framework and master SQP solver, but the relevant formulation and standard differentiability properties are stated in the paper itself. Under the hard rules, self-citation alone is not circular, and no specific Eq.-to-Eq. reduction or fitted-parameter rename was found. Score 2 reflects the self-citation weight, not a demonstration of circularity.
Assumptions & free parameters
free parameters (3)
- Barrier parameter sequence μ_k
- Boundary power-mismatch penalty weights
- SQP tolerances and extrapolation/warm-start parameters
assumptions (5)
- standard math The barrier KKT system F_i(x,v_i;μ)=0 is solved by Ipopt and satisfies IFT differentiability with nonsingular Jacobian to compute ∇² f̂_i.
- standard math Local minima of barrier problems converge to local minima of the original inequality-constrained problem as μ→0.
- domain assumption The T&D AC-OPF model (AC polar, PowerModelsITD) correctly represents the physical grid.
- ad hoc to paper Penalty relaxation of Eqs. (12)-(13) with sufficiently large finite weights reproduces the hard boundary balance.
- domain assumption Multi-phase boundary coupling via 120° phase-angle offsets in Eqs. (16)-(17) is valid for the test feeders.
Cite this review
Pith. "Pith review of Smoothed Two-Stage Decomposition Algorithm for Solving Large-Scale Transmission and Distribution AC-OPF Problems." pith.science (2026). https://pith.science/paper/A3FAM5YZ
@misc{pith2026260716430,
author = {Pith},
title = {Pith review of: Smoothed Two-Stage Decomposition Algorithm for Solving Large-Scale Transmission and Distribution AC-OPF Problems},
year = {2026},
howpublished = {\url{https://pith.science/paper/A3FAM5YZ}},
note = {Machine review of arXiv:2607.16430}
}
read the original abstract
The integration of distributed energy resources (DERs) into the power grid has introduced new challenges to AC optimal power flow (AC-OPF) problems. Traditional OPF optimize consider transmission systems, treating distribution networks as static loads. However, the growing presence of DERs makes accurate distribution system modeling crucial for grid operations. Consequently, efficiently solving the resultant large-scale, nonconvex transmission and distribution (T&D) AC-OPF problem remains a significant challenge. This paper proposes a Smoothed Two-Stage Decomposition Optimizer (StsDOpt) to address these complexities by decomposing the T&D AC-OPF problem into a master-subproblem(s) structure, enabling parallel solving. Unlike traditional methods, StsDOpt does not rely on approximations or relaxations. It uses a smoothing technique to render the subproblems responses differentiable with respect to the master problem, leveraging the barrier problem properties inherent in primal-dual interior point methods. This approach is crucial for accurately modeling and solving distribution systems, which are multiphase, unbalanced, and nonlinear, distinguishing StsDOpt apart from other methods. Integrated into the PowerModelsITD framework, StsDOpt has been validated through numerical experiments, demonstrating reduced wall-clock solve time and increased scalability. Results highlight its efficacy as a robust, scalable solution for large-scale T&D AC-OPF problems, facilitating the reliable integration of DERs into complex T&D systems.
Figures
Reference graph
Works this paper leans on
-
[18]
A two-stage decomposition approach for ac optimal power flow,
S. Tu, A. W ¨achter, and E. Wei, “A two-stage decomposition approach for ac optimal power flow,”IEEE Transactions on Power Systems, vol. 36, no. 1, pp. 303–312, 2020
2020
-
[1]
US electricity load growth forecast jumps 81% led by data centers, industry: Grid Strategies),
R. Walton, “US electricity load growth forecast jumps 81% led by data centers, industry: Grid Strategies),” 2023, Accessed: Aug. 3, 2024. [Online]. Available: https://www.utilitydive.com/news/electricity-load- growing-twice-as-fast-as-expected-Grid-Strategies-report/702366/
2023
-
[2]
The Era of Flat Power Demand is Over,
J. D. Wilson and Z. Zimmerman, “The Era of Flat Power Demand is Over,” 2023, Accessed: Aug. 3, 2024. [Online]. Available: https://gridstrategiesllc.com/wp-content/uploads/ 2023/12/National-Load-Growth-Report-2023.pdf
2023
-
[3]
Long-Term Load Forecast - Re-Energized Rate of Growth,
R. Prescott, “Long-Term Load Forecast - Re-Energized Rate of Growth,” 2024, Accessed: Aug. 3, 2024. [Online]. Available: https://www.enverus.com/blog/long-term-load-forecast-re- energized-rate-of-growth/
2024
-
[4]
FERC Order No. 2222 Explainer: Facilitating Participation in Electricity Markets by Distributed Energy Resources,
Office of Public Participation (OPP), “FERC Order No. 2222 Explainer: Facilitating Participation in Electricity Markets by Distributed Energy Resources,” 2024, Accessed: Aug. 3, 2024. [Online]. Available: https://ferc.gov/ferc-order-no-2222-explainer- facilitating-participation-electricity-markets-distributed-energy
2024
-
[5]
Households transforming the grid: Distributed energy resources are key to affordable clean power,
J. Thomson, C. Grant, C. Rizzo, K. Hardin, and C. Amon, “Households transforming the grid: Distributed energy resources are key to affordable clean power,” 2024, Accessed: Aug. 3, 2024. [Online]. Available: https://www2.deloitte.com/us/en/insights/industry/ power-and-utilities/der-grid-modernization.html
2024
-
[6]
How Distributed Energy Resources Can Lower Power Bills, Raise Revenue in US Communities,
Z. Greene, “How Distributed Energy Resources Can Lower Power Bills, Raise Revenue in US Communities,” 2022, Accessed: Aug. 3, 2024. [Online]. Available: https://www.wri.org/insights/distributed- energy-resources-explained-us
2022
-
[7]
Decentralized AC optimal power flow for integrated transmission and distribution grids,
C. Lin, W. Wu, and M. Shahidehpour, “Decentralized AC optimal power flow for integrated transmission and distribution grids,”IEEE Transactions on Smart Grid, vol. 11, no. 3, pp. 2531–2540, 2020
2020
Show all 23 references
-
[8]
Coordinated transmission and distribution AC optimal power flow,
Z. Li, Q. Guo, H. Sun, and J. Wang, “Coordinated transmission and distribution AC optimal power flow,”IEEE Transactions on Smart Grid, vol. 9, no. 2, pp. 1228–1240, 2018
2018
-
[9]
Master– slave-splitting based distributed global power flow method for integrated transmission and distribution analysis,
H. Sun, Q. Guo, B. Zhang, Y . Guo, Z. Li, and J. Wang, “Master– slave-splitting based distributed global power flow method for integrated transmission and distribution analysis,”IEEE Transactions on Smart Grid, vol. 6, no. 3, pp. 1484–1492, 2014
2014
-
[10]
Hierarchical coordination of tso- dso economic dispatch considering large-scale integration of distributed energy resources,
Z. Yuan and M. R. Hesamzadeh, “Hierarchical coordination of tso- dso economic dispatch considering large-scale integration of distributed energy resources,”Applied energy, vol. 195, pp. 600–615, 2017
2017
-
[11]
Risk- constrained probabilistic coordination in coupled transmission and distribution system,
A. Nawaz, H. Wang, H. Yang, H. Armghan, and J. Gao, “Risk- constrained probabilistic coordination in coupled transmission and distribution system,”Electric Power Systems Research, vol. 228, p. 110005, 2024. [Online]. Available: https://www.sciencedirect.com/ science/article/pi...
2024
-
[12]
Security-constrained unit commitment: A decomposition approach embodying kron reduction,
G. E. Constante-Flores and A. J. Conejo, “Security-constrained unit commitment: A decomposition approach embodying kron reduction,” European Journal of Operational Research, vol. 319, no. 2, pp. 427–441, 2024. [Online]. Available: https://www.sciencedirect.com/ science/article...
2024
-
[13]
Modeling and rapid prototyping of integrated transmission-distribution opf formulations with powermodelsitd.jl,
J. Ospina, D. M. Fobes, R. Bent, and A. W ¨achter, “Modeling and rapid prototyping of integrated transmission-distribution opf formulations with powermodelsitd.jl,”IEEE Transactions on Power Systems, vol. 39, no. 1, pp. 172–185, 2024
2024
-
[14]
Stochastic optimization of integrated transmission and distribution network consid- ering distributed generation with uncertainties,
O. Ogundairo, M. S. Hasan, S. Kamalasadan, and B. K, “Stochastic optimization of integrated transmission and distribution network consid- ering distributed generation with uncertainties,”IEEE Transactions on Industry Applications, vol. 60, no. 4, pp. 5577–5588, 2024
2024
-
[15]
Weather-informed forecasting for time series optimal power flow of transmission systems with large renewable share,
A. Unlu, S. A. Dorado-Rojas, M. Pe ˜na, and Z. Wang, “Weather-informed forecasting for time series optimal power flow of transmission systems with large renewable share,”IEEE Access, vol. 12, pp. 92 652–92 662, 2024
2024
-
[16]
Flexplan.jl - an open-source julia tool for holistic transmission and distribution grid planning,
M. Rossini, H. Ergun, and M. Rossi, “Flexplan.jl - an open-source julia tool for holistic transmission and distribution grid planning,” in2023 Open Source Modelling and Simulation of Energy Systems (OSMSES), 2023, pp. 1–8
2023
-
[17]
A review on tso-dso coordination models and solution techniques,
A. G. Givisiez, K. Petrou, and L. F. Ochoa, “A review on tso-dso coordination models and solution techniques,”Electric Power Systems Research, vol. 189, p. 106659, 2020. 11
2020
-
[19]
Efficient second-order methods for second-order cone programs and continuous nonlinear two-stage optimization problems,
X. Luo, “Efficient second-order methods for second-order cone programs and continuous nonlinear two-stage optimization problems,” Ph.D. dis- sertation, Northwestern University, 2023
2023
-
[20]
On the implementation of an interior- point filter line-search algorithm for large-scale nonlinear programming,
A. W ¨achter and L. T. Biegler, “On the implementation of an interior- point filter line-search algorithm for large-scale nonlinear programming,” Mathematical programming, vol. 106, pp. 25–57, 2006
2006
-
[21]
JuMP 1.0: Recent improvements to a modeling language for mathematical optimization,
M. Lubin, O. Dowson, J. Dias Garcia, J. Huchette, B. Legat, and J. P. Vielma, “JuMP 1.0: Recent improvements to a modeling language for mathematical optimization,”Mathematical Programming Computation, vol. 15, p. 581–589, 2023
2023
-
[22]
HSL. A collection of Fortran codes for large scale scientific computation,
“HSL. A collection of Fortran codes for large scale scientific computation,” 2024, Accessed: Sept. 22, 2024. [Online]. Available: http://www.hsl.rl.ac.uk/
2024
-
[23]
Modern grid initiative-distribution taxonomy,
K. Schneider, Y . Chen, D. Chassin, R. Pratt, D. Engel, and S. Thompson, “Modern grid initiative-distribution taxonomy,”Final report, Pacific Northwest National Laboratory, 2008
2008
Reviewed August 1, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.