File tree Expand file tree Collapse file tree 4 files changed +9
-22
lines changed
main/java/org/gridsuite/network/map/dto
definition/staticvarcompensator Expand file tree Collapse file tree 4 files changed +9
-22
lines changed Original file line number Diff line number Diff line change 42
42
</developers >
43
43
44
44
<properties >
45
- <!-- FIXME to remove at next upgrade of powsybl-ws-dependencies -->
46
- <powsybl-network-store .version>1.28.0</powsybl-network-store .version>
47
- <gridsuite-dependencies .version>41.0.0</gridsuite-dependencies .version>
45
+
46
+ <gridsuite-dependencies .version>42.0.0</gridsuite-dependencies .version>
48
47
<sonar .organization>gridsuite</sonar .organization>
49
48
<sonar .projectKey>org.gridsuite:network-map-server</sonar .projectKey>
50
49
</properties >
81
80
82
81
<dependencyManagement >
83
82
<dependencies >
84
- <!-- overrides of imports -->
85
- <!-- FIXME to remove at next upgrade of powsybl-ws-dependencies -->
86
- <dependency >
87
- <groupId >com.powsybl</groupId >
88
- <artifactId >powsybl-network-store-model</artifactId >
89
- <version >${powsybl-network-store.version} </version >
90
- </dependency >
91
- <!-- FIXME to remove at next upgrade of powsybl-ws-dependencies -->
92
- <dependency >
93
- <groupId >com.powsybl</groupId >
94
- <artifactId >powsybl-network-store-iidm-impl</artifactId >
95
- <version >${powsybl-network-store.version} </version >
96
- </dependency >
97
- <!-- FIXME to remove at next upgrade of powsybl-ws-dependencies -->
98
- <dependency >
99
- <groupId >com.powsybl</groupId >
100
- <artifactId >powsybl-network-store-client</artifactId >
101
- <version >${powsybl-network-store.version} </version >
102
- </dependency >
83
+
103
84
104
85
<!-- imports -->
105
86
<dependency >
Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ public class StaticVarCompensatorFormInfos extends ElementInfosWithProperties {
42
42
43
43
private StaticVarCompensator .RegulationMode regulationMode ;
44
44
45
+ @ JsonInclude (JsonInclude .Include .NON_NULL )
46
+ private Boolean isRegulating ;
47
+
45
48
@ JsonInclude (JsonInclude .Include .NON_NULL )
46
49
private String busOrBusbarSectionId ;
47
50
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ private static StaticVarCompensatorFormInfos toFormInfos(Identifiable<?> identif
48
48
.voltageLevelId (terminal .getVoltageLevel ().getId ())
49
49
.nominalV (nullIfNan (terminal .getVoltageLevel ().getNominalV ()))
50
50
.regulationMode (staticVarCompensator .getRegulationMode ())
51
+ .isRegulating (staticVarCompensator .isRegulating ())
51
52
.maxSusceptance (nullIfNan (staticVarCompensator .getBmax ()))
52
53
.minSusceptance (nullIfNan (staticVarCompensator .getBmin ()))
53
54
.voltageSetpoint (nullIfNan (staticVarCompensator .getVoltageSetpoint ()))
Original file line number Diff line number Diff line change 15
15
"connectionPosition" : 0 ,
16
16
"connectionDirection" : " TOP"
17
17
},
18
+ "isRegulating" : false ,
18
19
"busOrBusbarSectionId" : " NGEN" ,
19
20
"standbyAutomatonInfos" : {
20
21
"standby" : true ,
36
37
"regulationMode" : " VOLTAGE" ,
37
38
"voltageSetpoint" : 200.0 ,
38
39
"reactivePowerSetpoint" : 100.0 ,
40
+ "isRegulating" : false ,
39
41
"busOrBusbarSectionId" : " NNEW2" ,
40
42
"connectablePosition" : {
41
43
"connectionDirection" : null
You can’t perform that action at this time.
0 commit comments