Used input data
Name | Symbol | Details |
---|---|---|
LoopFlowCnecs | \(c \in \mathcal{C} ^{lf}\) | Set of FlowCnecs with a loop-flow threshold. (for example, in CORE CC, loop-flows are monitored on cross-border CNECs). LoopFlowCnecs is a subset of FlowCnecs: \(\mathcal{C} ^{lf} \subset \mathcal{C}\) |
Reference commercial flow | \(f^{commercial}_{n} (c)\) | Commercial flow1, of LoopFlowCnec \(c\), at the beginning of the optimization, in MW. |
initial loop-flow | \(f^{loop} _ {0} (c)\) | loop flow before RAO of LoopFlowCnec \(c\), in MW |
loop-flow threshold | \(lf^{threshold} (c)\) | loop flow threshold of the LoopFlowCnec \(c\), in MW, as defined in the CRAC. |
Used parameters
Name | Symbol | Details |
---|---|---|
rao-with-loop-flow-limitation | This filler is only used if this parameter is activated | |
loop-flow-acceptable-augmentation | \(c^{acc-augm}_{lf}\) | The increase of the initial loop-flow that is allowed by the optimisation. |
loop-flow-constraint-adjustment-coefficient | \(c^{adj-coeff}_{lf}\) | This parameter acts as a margin which tighten, in the linear optimisation problem of RAO, the bounds of the loop-flow constraints. It conceptually behaves as the coefficient c-adjustment from the constraint below: abs(loop-flow[cnec]) <= loop-flow-threshold - c-adjustment This parameter is a safety margin which can absorb some of the approximations which are made in the linear optimization problem of the RAO (non integer PSTs taps, flows approximated by sensi coefficient, etc.), and therefore increase the probability that the loop-flow constraints which are respected in the linear optimisation problem, remain respected once the loop-flows are re-computed without the linear approximations. |
loop-flow-violation-cost | \(c^{penalty}_{lf}\) | penalisation, in the objective function, of the excess of 1 MW of loop-flow |
Defined optimization variables
Name | Symbol | Details | Type | Index | Unit | Lower bound | Upper bound |
---|---|---|---|---|---|---|---|
loop-flow excess | \(S^{lf} (c)\) | Slack variable for loop-flow constraint of FlowCnec c. Defines the amount of MW by which a loop-flow constraint has been violated. This makes the loop-flow constraints soft. |
Real value | One variable for every element of (LoopFlowFlowCnecs) | MW | 0 | \(+\infty\) |
Used optimization variables
Name | Symbol | Defined in |
---|---|---|
Flow | \(F(c)\) | CoreProblemFiller |
Defined constraints
Keeping the loop-flows within their bounds
With \(\overline{f^{loop} (c)}\) the loop flow threshold, constant defined as below:
\[\begin{matrix} \overline{f^{loop} (c)} = \max(lf^{threshold} (c) - c^{adj-coeff}_{lf} \:, \: \: |f^{loop} _ {0} (c)| + c^{acc-augm}_{lf} - c^{adj-coeff}_{lf} \:, \: \: |f^{loop} _ {0} (c)|) \end{matrix}\]The two first terms of the max define the actual loop-flow upper bound:
- either as the threshold defined in the CRAC,
- or as the initial loop-flow value of the FlowCnec, added to the acceptable augmentation coefficient
The last terms ensure that the initial situation is always feasible, whatever the configuration parameters.
Contribution to the objective function
Penalisation of the loop-flow excess in the objective function:
\[\begin{equation} \min (c^{penalty}_{lf} \sum_{c \in \mathcal{C} ^{lf}} S^{lf} (c)) \end{equation}\]Code reference: MaxLoopFlowFiller
-
The commercial flow is computed oustide the MILP, as follows:
\(f^{commercial}_{n} (c) = \sum_{z \in LFC} PTDF(c,z) * NP^{ref}(z)\)
With:
- LFC, the set of countries for whose we compute the commercial flows, set in the configuration under the parameter ‘loop-flow-countries’
- NP, the net position of country z, read from the ReferenceProgram given as input of the RAO
- PTDF, the PTDF of country z on the FlowCnec c, eventually recomputed within the RAO depending on the value of the configuration parameter ‘loop-flow-approximation’ ↩