-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.jl
More file actions
692 lines (515 loc) · 21.4 KB
/
Copy pathvariables.jl
File metadata and controls
692 lines (515 loc) · 21.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
#################################################################################
# Variable types defined in POM
# Types used by IOM's infrastructure code (ActivePowerVariable, OnVariable, etc.)
# come from IOM via `using InfrastructureOptimizationModels`.
# Only POM-specific types are defined here.
#################################################################################
# POM-specific abstract types (matching PSI hierarchy)
abstract type AbstractContingencyVariableType <: VariableType end
abstract type MultiStartVariable <: VariableType end
abstract type AbstractACActivePowerFlow <: VariableType end
abstract type AbstractACReactivePowerFlow <: VariableType end
# AbstractPiecewiseLinearBlockOffer: moved into IOM
"""
Struct to dispatch the creation of Post-Contingency Active Power Change Variables.
Docs abbreviation: ``\\Delta p_{g,c}``
"""
struct PostContingencyActivePowerChangeVariable <: AbstractContingencyVariableType end
"""
Struct to dispatch the creation of Post-Contingency Active Power Deployment Variable for mapping reserves deployment under contingencies.
Docs abbreviation: ``\\Delta rsv_{r,g,c}``
"""
struct PostContingencyActivePowerReserveDeploymentVariable <:
AbstractContingencyVariableType end
"""
Struct to dispatch the creation of Hot Start Variable for Thermal units with temperature considerations
Docs abbreviation: ``z^\\text{th}``
"""
struct HotStartVariable <: MultiStartVariable end
"""
Struct to dispatch the creation of Warm Start Variable for Thermal units with temperature considerations
Docs abbreviation: ``y^\\text{th}``
"""
struct WarmStartVariable <: MultiStartVariable end
"""
Struct to dispatch the creation of Cold Start Variable for Thermal units with temperature considerations
Docs abbreviation: ``x^\\text{th}``
"""
struct ColdStartVariable <: MultiStartVariable end
"""
Struct to dispatch the creation of a variable for energy storage level (state of charge)
Docs abbreviation: ``e``
"""
struct EnergyVariable <: VariableType end
struct LiftVariable <: VariableType end
"""
Struct to dispatch the creation of Reactive Power Variables
Docs abbreviation: ``q``
"""
struct ReactivePowerVariable <: VariableType end
# ReservationVariable: moved to IOM (used in range_constraint.jl)
"""
Struct to dispatch the creation of Active Power Reserve Variables
Docs abbreviation: ``r``
"""
struct ActivePowerReserveVariable <: VariableType end
struct SteadyStateFrequencyDeviation <: VariableType end
struct AreaMismatchVariable <: VariableType end
struct DeltaActivePowerUpVariable <: VariableType end
struct DeltaActivePowerDownVariable <: VariableType end
struct AdditionalDeltaActivePowerUpVariable <: VariableType end
struct AdditionalDeltaActivePowerDownVariable <: VariableType end
struct SmoothACE <: VariableType end
"""
Struct to dispatch the creation of System-wide slack up variables. Used when there is not enough generation.
Docs abbreviation: ``p^\\text{sl,up}``
"""
struct SystemBalanceSlackUp <: VariableType end
"""
Struct to dispatch the creation of System-wide slack down variables. Used when there is not enough load curtailment.
Docs abbreviation: ``p^\\text{sl,dn}``
"""
struct SystemBalanceSlackDown <: VariableType end
IOM.flow_sign(::Type{SystemBalanceSlackUp}) = IOM.FlowInjection
IOM.flow_sign(::Type{SystemBalanceSlackDown}) = IOM.FlowWithdrawal
"""
Struct to dispatch the creation of Reserve requirement slack variables. Used when there is not reserves in the system to satisfy the requirement.
Docs abbreviation: ``r^\\text{sl}``
"""
struct ReserveRequirementSlack <: VariableType end
struct ServiceRequirementVariable <: VariableType end
"""
Struct to dispatch the creation of Voltage Magnitude Variables for AC formulations
Docs abbreviation: ``v``
"""
struct VoltageMagnitude <: VariableType end
"""
Struct to dispatch the creation of Voltage Angle Variables for AC/DC formulations
Docs abbreviation: ``\\theta``
"""
struct VoltageAngle <: VariableType end
#########################################
###### Power Load Shift Variables #######
#########################################
"""
Struct to dispatch the creation of Shifted Up Active Power Variables
Docs abbreviation: ``p^\\text{shift,up}``
"""
struct ShiftUpActivePowerVariable <: VariableType end
"""
Struct to dispatch the creation of Shifted Down Active Power Variables
Docs abbreviation: ``p^\\text{shift,dn}``
"""
struct ShiftDownActivePowerVariable <: VariableType end
#########################################
####### DC Converter Variables ##########
#########################################
"""
Struct to dispatch the variable of DC Current Variables for DC Lines formulations
Docs abbreviation: ``i_l^{dc}``
"""
struct DCLineCurrent <: VariableType end
"""
Struct to dispatch the creation of Squared Voltage Variables for DC formulations
Docs abbreviation: ``v^{sq,dc}``
"""
struct SquaredDCVoltage <: VariableType end
"""
Struct to dispatch the creation of DC Converter Current Variables for DC formulations
Docs abbreviation: ``i_c^{dc}``
"""
struct ConverterCurrent <: VariableType end
"""
Struct to dispatch the creation of DC Converter Power Variables for DC formulations
Docs abbreviation: ``p_c^{dc}``
"""
struct ConverterDCPower <: VariableType end
"""
Struct to dispatch the creation of Squared DC Converter Current Variables for DC formulations
Docs abbreviation: ``i_c^{sq,dc}``
"""
struct SquaredConverterCurrent <: VariableType end
"""
Struct to dispatch the creation of DC Converter Positive Term Current Variables for DC formulations
Docs abbreviation: ``i_c^{+,dc}``
"""
struct ConverterPositiveCurrent <: VariableType end
"""
Struct to dispatch the creation of DC Converter Negative Term Current Variables for DC formulations
Docs abbreviation: ``i_c^{-,dc}``
"""
struct ConverterNegativeCurrent <: VariableType end
"""
Struct to dispatch the creation of DC Converter Binary for Absolute Value Current Variables for DC formulations
Docs abbreviation: `\\nu_c``
"""
struct ConverterCurrentDirection <: VariableType end
"""
Struct to dispatch the creation of Binary Variable for Converter Power Direction
Docs abbreviation: ``\\kappa_c^{dc}``
"""
struct ConverterPowerDirection <: VariableType end
"""
Struct to dispatch the creation of Auxiliary Variable for Converter Bilinear term: v * i
Docs abbreviation: ``\\gamma_c^{dc}``
"""
struct AuxBilinearConverterVariable <: VariableType end
"""
Struct to dispatch the creation of Auxiliary Variable for Squared Converter Bilinear term: v * i
Docs abbreviation: ``\\gamma_c^{sq,dc}``
"""
struct AuxBilinearSquaredConverterVariable <: VariableType end
"""
Struct to dispatch the creation of Continuous Interpolation Variable for Squared Converter Voltage
Docs abbreviation: ``\\delta_c^{v}``
"""
struct InterpolationSquaredVoltageVariable <: InterpolationVariableType end
"""
Struct to dispatch the creation of Binary Interpolation Variable for Squared Converter Voltage
Docs abbreviation: ``z_c^{v}``
"""
struct InterpolationBinarySquaredVoltageVariable <: BinaryInterpolationVariableType end
"""
Struct to dispatch the creation of Continuous Interpolation Variable for Squared Converter Current
Docs abbreviation: ``\\delta_c^{i}``
"""
struct InterpolationSquaredCurrentVariable <: InterpolationVariableType end
"""
Struct to dispatch the creation of Binary Interpolation Variable for Squared Converter Current
Docs abbreviation: ``z_c^{i}``
"""
struct InterpolationBinarySquaredCurrentVariable <: BinaryInterpolationVariableType end
"""
Struct to dispatch the creation of Continuous Interpolation Variable for Squared Converter AuxVar
Docs abbreviation: ``\\delta_c^{\\gamma}``
"""
struct InterpolationSquaredBilinearVariable <: InterpolationVariableType end
"""
Struct to dispatch the creation of Binary Interpolation Variable for Squared Converter AuxVar
Docs abbreviation: ``z_c^{\\gamma}``
"""
struct InterpolationBinarySquaredBilinearVariable <: BinaryInterpolationVariableType end
#########################################################
#########################################################
"""
Struct to dispatch the creation of bidirectional Active Power Flow Variables
Docs abbreviation: ``f``
"""
struct FlowActivePowerVariable <: AbstractACActivePowerFlow end
# This Variable Type doesn't make sense since there are no lossless NetworkModels with ReactivePower.
# struct FlowReactivePowerVariable <: VariableType end
"""
Struct to dispatch the creation of unidirectional Active Power Flow Variables
Docs abbreviation: ``f^\\text{from-to}``
"""
struct FlowActivePowerFromToVariable <: AbstractACActivePowerFlow end
"""
Struct to dispatch the creation of unidirectional Active Power Flow Variables
Docs abbreviation: ``f^\\text{to-from}``
"""
struct FlowActivePowerToFromVariable <: AbstractACActivePowerFlow end
"""
Struct to dispatch the creation of unidirectional Reactive Power Flow Variables
Docs abbreviation: ``f^\\text{q,from-to}``
"""
struct FlowReactivePowerFromToVariable <: AbstractACReactivePowerFlow end
"""
Struct to dispatch the creation of unidirectional Reactive Power Flow Variables
Docs abbreviation: ``f^\\text{q,to-from}``
"""
struct FlowReactivePowerToFromVariable <: AbstractACReactivePowerFlow end
"""
Struct to dispatch the creation of active power flow upper bound slack variables. Used when there is not enough flow through the branch in the forward direction.
Docs abbreviation: ``f^\\text{sl,up}``
"""
struct FlowActivePowerSlackUpperBound <: AbstractACActivePowerFlow end
"""
Struct to dispatch the creation of active power flow lower bound slack variables. Used when there is not enough flow through the branch in the reverse direction.
Docs abbreviation: ``f^\\text{sl,lo}``
"""
struct FlowActivePowerSlackLowerBound <: AbstractACActivePowerFlow end
"""
Struct to dispatch the creation of Phase Shifters Variables
Docs abbreviation: ``\\theta^\\text{shift}``
"""
struct PhaseShifterAngle <: VariableType end
# Necessary as a work around for HVDCTwoTerminal models with losses
"""
Struct to dispatch the creation of HVDC Losses Auxiliary Variables
Docs abbreviation: ``\\ell``
"""
struct HVDCLosses <: VariableType end
"""
Struct to dispatch the creation of HVDC Flow Direction Auxiliary Variables
Docs abbreviation: ``u^\\text{dir}``
"""
struct HVDCFlowDirectionVariable <: VariableType end
"""
Struct to dispatch the creation of HVDC Received Flow at From Bus Variables for PWL formulations
Docs abbreviation: ``x``
"""
struct HVDCActivePowerReceivedFromVariable <: VariableType end
"""
Struct to dispatch the creation of HVDC Received Flow at To Bus Variables for PWL formulations
Docs abbreviation: ``y``
"""
struct HVDCActivePowerReceivedToVariable <: VariableType end
"""
Struct to dispatch the creation of HVDC Received Reactive Flow From Bus Variables
Docs abbreviation: ``x^r``
"""
struct HVDCReactivePowerReceivedFromVariable <: VariableType end
"""
Struct to dispatch the creation of HVDC Received Reactive Flow To Bus Variables
Docs abbreviation: ``y^i``
"""
struct HVDCReactivePowerReceivedToVariable <: VariableType end
"""
Struct to define the creation of HVDC Rectifier Delay Angle Variable
Docs abbreviation: ``\\alpha^r``
"""
struct HVDCRectifierDelayAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC Inverter Extinction Angle Variable
Docs abbreviation: ``\\gamma^i``
"""
struct HVDCInverterExtinctionAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC Rectifier Power Factor Angle Variable
Docs abbreviation: ``\\phi^r``
"""
struct HVDCRectifierPowerFactorAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC Inverter Power Factor Angle Variable
Docs abbreviation: ``\\phi^i``
"""
struct HVDCInverterPowerFactorAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC Rectifier Overlap Angle Variable
Docs abbreviation: ``\\mu^r``
"""
struct HVDCRectifierOverlapAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC Inverter Overlap Angle Variable
Docs abbreviation: ``\\mu^i``
"""
struct HVDCInverterOverlapAngleVariable <: VariableType end
"""
Struct to define the creation of HVDC DC Line Voltage at Rectifier Side
Docs abbreviation: ``\\v_{d}^r``
"""
struct HVDCRectifierDCVoltageVariable <: VariableType end
"""
Struct to define the creation of HVDC DC Line Voltage at Inverter Side
Docs abbreviation: ``\\v_{d}^i``
"""
struct HVDCInverterDCVoltageVariable <: VariableType end
"""
Struct to define the creation of HVDC AC Line Current flowing into the AC side of Rectifier
Docs abbreviation: ``\\i_{ac}^r``
"""
struct HVDCRectifierACCurrentVariable <: VariableType end
"""
Struct to define the creation of HVDC AC Line Current flowing into the AC side of Inverter
Docs abbreviation: ``\\i_{ac}^i``
"""
struct HVDCInverterACCurrentVariable <: VariableType end
"""
Struct to define the creation of HVDC DC Line Current Flow
Docs abbreviation: ``\\i_{d}``
"""
struct DCLineCurrentFlowVariable <: VariableType end
"""
Struct to define the creation of HVDC Tap Setting at Rectifier Transformer
Docs abbreviation: ``\\t^r``
"""
struct HVDCRectifierTapSettingVariable <: VariableType end
"""
Struct to define the creation of HVDC Tap Setting at Inverter Transformer
Docs abbreviation: ``\\t^i``
"""
struct HVDCInverterTapSettingVariable <: VariableType end
"""
Struct to dispatch the creation of HVDC Piecewise Loss Variables
Docs abbreviation: ``h`` or ``w``
"""
struct HVDCPiecewiseLossVariable <: SparseVariableType end
"""
Struct to dispatch the creation of HVDC Piecewise Binary Loss Variables
Docs abbreviation: ``z``
"""
struct HVDCPiecewiseBinaryLossVariable <: SparseVariableType end
"""
Struct to dispatch the creation of Interface Flow Slack Up variables
Docs abbreviation: ``f^\\text{sl,up}``
"""
struct InterfaceFlowSlackUp <: VariableType end
"""
Struct to dispatch the creation of Interface Flow Slack Down variables
Docs abbreviation: ``f^\\text{sl,dn}``
"""
struct InterfaceFlowSlackDown <: VariableType end
IOM.flow_sign(::Type{InterfaceFlowSlackUp}) = IOM.FlowInjection
IOM.flow_sign(::Type{InterfaceFlowSlackDown}) = IOM.FlowWithdrawal
"""
Struct to dispatch the creation of Slack variables for UpperBoundFeedforward
Docs abbreviation: ``p^\\text{ff,ubsl}``
"""
struct UpperBoundFeedForwardSlack <: VariableType end
"""
Struct to dispatch the creation of Slack variables for LowerBoundFeedforward
Docs abbreviation: ``p^\\text{ff,lbsl}``
"""
struct LowerBoundFeedForwardSlack <: VariableType end
#################################################################################
# Hydro Variables
#################################################################################
"""
Struct to dispatch the creation of energy (water) spillage variable representing energy released from a storage/reservoir not injected into the network
Docs abbreviation: ``s``
"""
struct WaterSpillageVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for energy storage levels < target storage levels
Docs abbreviation: ``e^\\text{shortage}``
"""
struct HydroEnergyShortageVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for energy storage levels > target storage levels
Docs abbreviation: ``e^\\text{surplus}``
"""
struct HydroEnergySurplusVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for shortage on balance constraints
Docs abbreviation: ``e^\\text{b,shortage}``
"""
struct HydroBalanceShortageVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for surplus on balance constraints
Docs abbreviation: ``e^\\text{b,surplus}``
"""
struct HydroBalanceSurplusVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for water storage levels < target storage levels
Docs abbreviation: ``l^\\text{shortage}``
"""
struct HydroWaterShortageVariable <: VariableType end
"""
Struct to dispatch the creation of a slack variable for water storage levels > target storage levels
Docs abbreviation: ``l^\\text{surplus}``
"""
struct HydroWaterSurplusVariable <: VariableType end
"""
Struct to dispatch the creation of a variable for turbined flow rate (in m3/s).
"""
struct HydroTurbineFlowRateVariable <: VariableType end
"""
Struct to dispatch the creation of a variable for volume stored in a hydro reservoir (in m3).
"""
struct HydroReservoirVolumeVariable <: VariableType end
"""
Aux variable which keeps track of water level (head) of hydro reservoirs (in m)
"""
struct HydroReservoirHeadVariable <: VariableType end
"""
Struct to dispatch the creation of a variable for pumped power in a hydro pump turbine (in MWh).
"""
struct ActivePowerPumpVariable <: VariableType end
IOM.flow_sign(::Type{ActivePowerPumpVariable}) = IOM.FlowWithdrawal
"""
Auxiliary Variable for Hydro Models that solve for total energy output
Docs abbreviation: ``E^\\text{hy,out}``
"""
struct HydroEnergyOutput <: AuxVariableType end
#################################################################################
# Energy Storage Variables
#################################################################################
"""
Ancillary service fraction assigned to Storage Discharging to product p
Docs abbreviation: ``sb^{std}_{p,t}``
"""
struct AncillaryServiceVariableDischarge <: VariableType end
"""
Ancillary service fraction assigned to Storage Charging to product p
Docs abbreviation: ``sb^{stc}_{p,t}``
"""
struct AncillaryServiceVariableCharge <: VariableType end
"""
Slack variable for energy storage levels < target storage levels
Docs abbreviation: ``e^{st-}``
"""
struct StorageEnergyShortageVariable <: VariableType end
"""
Slack variable for energy storage levels > target storage levels
Docs abbreviation: ``e^{st+}``
"""
struct StorageEnergySurplusVariable <: VariableType end
"""
Slack variable for the cycling limits to allow for more charging usage than the allowed limited
Docs nomenclature: ``c^{ch-}``
"""
struct StorageChargeCyclingSlackVariable <: VariableType end
"""
Slack variable for the cycling limits to allow for more discharging usage than the allowed limited
Docs nomenclature: ``c^{ds-}``
"""
struct StorageDischargeCyclingSlackVariable <: VariableType end
"""
Abstract used for StorageRegularization variables
"""
abstract type StorageRegularizationVariable <: VariableType end
"""
Slack variable for energy storage levels > target storage levels
Docs nomenclature: ``z^{st, ch}``
"""
struct StorageRegularizationVariableCharge <: StorageRegularizationVariable end
"""
Slack variable for energy storage levels > target storage levels
Docs abbreviation: ``z^{st, ds}``
"""
struct StorageRegularizationVariableDischarge <: StorageRegularizationVariable end
"""
Auxiliary Variable for Storage Models that solve for total energy output
"""
struct StorageEnergyOutput <: AuxVariableType end
const MULTI_START_VARIABLES = (HotStartVariable, WarmStartVariable, ColdStartVariable)
should_write_resulting_value(::Type{PiecewiseLinearCostVariable}) = false
should_write_resulting_value(::Type{PiecewiseLinearBlockIncrementalOffer}) = false
should_write_resulting_value(::Type{PiecewiseLinearBlockDecrementalOffer}) = false
should_write_resulting_value(::Type{HVDCPiecewiseLossVariable}) = false
should_write_resulting_value(::Type{HVDCPiecewiseBinaryLossVariable}) = false
should_write_resulting_value(::Type{<:InterpolationVariableType}) = false
should_write_resulting_value(::Type{<:BinaryInterpolationVariableType}) = false
should_write_resulting_value(::Type{HydroTurbineFlowRateVariable}) = false
convert_output_to_natural_units(::Type{ActivePowerVariable}) = true
convert_output_to_natural_units(::Type{PostContingencyActivePowerChangeVariable}) = true
convert_output_to_natural_units(::Type{PowerAboveMinimumVariable}) = true
convert_output_to_natural_units(::Type{ActivePowerInVariable}) = true
convert_output_to_natural_units(::Type{ActivePowerOutVariable}) = true
convert_output_to_natural_units(::Type{EnergyVariable}) = true
convert_output_to_natural_units(::Type{ReactivePowerVariable}) = true
convert_output_to_natural_units(::Type{ActivePowerReserveVariable}) = true
convert_output_to_natural_units(
::Type{PostContingencyActivePowerReserveDeploymentVariable},
) = true
convert_output_to_natural_units(::Type{ServiceRequirementVariable}) = true
convert_output_to_natural_units(::Type{RateofChangeConstraintSlackUp}) = true
convert_output_to_natural_units(::Type{RateofChangeConstraintSlackDown}) = true
convert_output_to_natural_units(::Type{AreaMismatchVariable}) = true
convert_output_to_natural_units(::Type{DeltaActivePowerUpVariable}) = true
convert_output_to_natural_units(::Type{DeltaActivePowerDownVariable}) = true
convert_output_to_natural_units(::Type{AdditionalDeltaActivePowerUpVariable}) = true
convert_output_to_natural_units(::Type{AdditionalDeltaActivePowerDownVariable}) = true
convert_output_to_natural_units(::Type{SmoothACE}) = true
convert_output_to_natural_units(::Type{SystemBalanceSlackUp}) = true
convert_output_to_natural_units(::Type{SystemBalanceSlackDown}) = true
convert_output_to_natural_units(::Type{ReserveRequirementSlack}) = true
convert_output_to_natural_units(::Type{FlowActivePowerVariable}) = true
convert_output_to_natural_units(::Type{FlowActivePowerFromToVariable}) = true
convert_output_to_natural_units(::Type{FlowActivePowerToFromVariable}) = true
convert_output_to_natural_units(::Type{FlowReactivePowerFromToVariable}) = true
convert_output_to_natural_units(::Type{FlowReactivePowerToFromVariable}) = true
convert_output_to_natural_units(::Type{HVDCLosses}) = true
convert_output_to_natural_units(::Type{InterfaceFlowSlackUp}) = true
convert_output_to_natural_units(::Type{InterfaceFlowSlackDown}) = true
convert_output_to_natural_units(::Type{ActivePowerPumpVariable}) = true