Augmented Lagrangian Coordination (ALC)¶
This derivation follows Sections 6.4 and 6.6 of [2], Section 5 of [1], and Section 2 of [14]. Augmented Lagrangian Duality (ALD) relaxes the coupling constraints \({}^{i}_{j}c\!\left({}^{i}d,\;{}^{j}d\right)\) of the primal problem, yielding the dual problem
Relaxing coupling constraints simplifies optimizing primal variables \({}^{i}\)\(d\) but requires finding optimal dual variables \({}^{i}_{j}\)\(c\) or \(c_c\)">\(\lambda\) (Lagrange multipliers). A sufficiently large penalty parameter \(s\) convexifies the augmented Lagrange function \(L\), improving numerical stability. The Method of Multipliers (MM) solves the dual problem by alternating between primal and dual variable updates in an outer loop.
The multiplier \(c\) or \(c_c\)">\(\lambda\) update follows a subgradient scheme (where \(\circ\) denotes element-wise multiplication):
The penalty parameters are adapted based on inconsistency improvement:
The penalty parameter increases by factor \(\beta\) only when inconsistency reduction is insufficient (less than factor \(\gamma\)), avoiding unnecessarily large values while ensuring convergence.
These updates require centralized computation, making them unsuitable for distributed optimization. However, the primal update is separable into \(\left|M\right|\) independent optimization problems — one per design variable \({}^{i}\)\(d\) — except for the quadratic penalty term \(\left\|{}^{i}_{j}s\circ{}^{i}_{j}c\right\|_{2}^{2}\) in \(L\).
ALC approximately solves the primal problem via FPI schemes such as Gauss–Seidel (sequential, using the latest data) or Jacobi (parallel). This distributed primal update forms an inner loop with termination criteria as defined in [1, 2, 13].
The resulting ALC algorithm is shown in Algorithm 1 below. The dual update may also be distributed. The variant of [1, 2] uses the subgradient method above. In this implementation, each subsystem \(i\) maintains multipliers and weights for both \({}^{i}_{j}\)\(c\) and \({}^{j}_{i}\)\(c\). For convergence analysis, see [1, 2].
All symbols are defined in the Nomenclature.