Difference between revisions of "Control of Transmission Lines"
(Mathematical formulation.) |
(Parameters, Discretization, Source Code) |
||
Line 6: | Line 6: | ||
<p> | <p> | ||
<math> | <math> | ||
− | \partial_t \xi_r(x,t) + \ | + | \partial_t \xi_r(x,t) + \Lambda_r \xi_r(x,t) + B_r \xi_r(x,t) = 0, |
</math> | </math> | ||
</p> | </p> | ||
− | with a diagonal 2x2-matrix <math>\ | + | with a diagonal 2x2-matrix <math>\Lambda_r</math> and a symmetric matrix <math>B_r</math>. We combine all <math>m</math> single line states to a large state vector <math>\boldsymbol{\xi}(x,t)</math> to obtain the system |
<p> | <p> | ||
<math> | <math> | ||
Line 37: | Line 37: | ||
<p> | <p> | ||
<math> | <math> | ||
− | \displaystyle \min_{\boldsymbol{u} \in \mathcal{U}} \frac{1}{2}\sum_{s \in V_S} \int_0^{T} \left( Q_s(t) - \sum_{r \in \delta_{s}} \xi_r^+(l_r,t) \right)^2 dt, | + | \displaystyle \min_{\boldsymbol{v} \in \mathcal{V}, \boldsymbol{u} \in \mathcal{U}} \frac{1}{2}\sum_{s \in V_S} \int_0^{T} \left( Q_s(t) - \sum_{r \in \delta_{s}} \xi_r^+(l_r,t) \right)^2 dt, |
</math> | </math> | ||
</p> | </p> | ||
Line 43: | Line 43: | ||
== Parameters == | == Parameters == | ||
+ | |||
+ | A detailed account of the network structures and parameter settings can be found in <bib id="Goettlich2018" /> and in the source code below. | ||
== Discretization == | == Discretization == | ||
+ | |||
+ | The mixed-integer variables <math>\boldsymbol{v}(t)</math> are transcribed via Partial Outer Convexification and the dynamics are discretized using Finite Volumes with upwind fluxes for the characteristic variables and explicit first-order time-stepping. | ||
== Reference Solution == | == Reference Solution == | ||
==Source Code== | ==Source Code== | ||
+ | |||
+ | The C++ code for the results in the paper are not publicly available, but a more user-friendly Python/CasADi-Version is available on [https://github.com/apotschka/poc-transmission-lines GitHub/poc-transmission-lines]. | ||
==References== | ==References== |
Revision as of 15:11, 12 September 2018
This problem was provided by Göttlich, Potschka, and Teuber [Goettlich2018]Author: G{\"o}ttlich, Simone; Potschka, Andreas; Teuber, Claus
Institution: University of Mannheim
Note: Optimization Online 6312
Title: A partial outer convexification approach to control
transmission lines
Url: http://www.optimization-online.org/DB_HTML/2017/11/6312.html
Year: 2018
. It is governed by a 2x2-system of conservation laws based on the telegraph equations for single transmission lines, which are then connected to form a network. The objective is to minimize the quadratic deviation of the load delivered to customer nodes from their demand by continuously controlling the power inflow to the network at the energy producer nodes and by discrete but time-varying switches at the coupling nodes inside the network.
Contents
Mathematical formulation
The dynamics on the -th transmission line with spatial variable , temporal variable , and state variable containing the characteristic variables for right-traveling and left-traveling components are given by the hyperbolic PDE system
with a diagonal 2x2-matrix and a symmetric matrix . We combine all single line states to a large state vector to obtain the system
and formulate the coupling between the lines and the continuously controlled power inflow as boundary conditions involving distribution matrices , which depend on a discrete switching signal , and constant distribution matrices of size according to
The continuous control is subject to simple bounds.
The objective is to track the given demands of consumers, which can be formulated as
where is the set of consumer nodes and is the set of all lines adjacent to vertex .
Parameters
A detailed account of the network structures and parameter settings can be found in [Goettlich2018]Author: G{\"o}ttlich, Simone; Potschka, Andreas; Teuber, Claus
Institution: University of Mannheim
Note: Optimization Online 6312
Title: A partial outer convexification approach to control
transmission lines
Url: http://www.optimization-online.org/DB_HTML/2017/11/6312.html
Year: 2018
and in the source code below.
Discretization
The mixed-integer variables are transcribed via Partial Outer Convexification and the dynamics are discretized using Finite Volumes with upwind fluxes for the characteristic variables and explicit first-order time-stepping.
Reference Solution
Source Code
The C++ code for the results in the paper are not publicly available, but a more user-friendly Python/CasADi-Version is available on GitHub/poc-transmission-lines.
References
[Goettlich2018] | G{\"o}ttlich, Simone; Potschka, Andreas; Teuber, Claus (2018): A partial outer convexification approach to control transmission lines. University of Mannheim. |