@gridsuite/commons-ui 0.202.0 → 0.204.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/addButton/AddButton.d.ts +10 -0
- package/dist/components/addButton/AddButton.js +16 -0
- package/dist/components/addButton/index.d.ts +1 -0
- package/dist/components/addButton/index.js +5 -0
- package/dist/components/cardErrorBoundary/CardErrorBoundary.d.ts +1 -1
- package/dist/components/filter/expert/expertFilterConstants.js +2 -2
- package/dist/components/filter/utils/filterFormUtils.d.ts +1 -1
- package/dist/components/filter/utils/filterFormUtils.js +3 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +36 -1
- package/dist/components/inputs/index.js +0 -2
- package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +3 -28
- package/dist/components/inputs/reactHookForm/text/DescriptionField.js +4 -4
- package/dist/components/inputs/reactQueryBuilder/index.d.ts +0 -1
- package/dist/components/inputs/reactQueryBuilder/index.js +0 -2
- package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +1 -1
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +6 -0
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +97 -0
- package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +10 -0
- package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.type.js +1 -0
- package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +8 -0
- package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +26 -0
- package/dist/components/network-modifications/common/activePowerControl/index.d.ts +9 -0
- package/dist/components/network-modifications/common/activePowerControl/index.js +7 -0
- package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -2
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.d.ts +9 -17
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +56 -219
- package/dist/components/network-modifications/common/connectivity/PositionForm.d.ts +11 -0
- package/dist/components/network-modifications/common/connectivity/PositionForm.js +111 -0
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +13 -0
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +164 -0
- package/dist/components/network-modifications/common/connectivity/connectivityForm.utils.js +3 -3
- package/dist/components/network-modifications/common/connectivity/index.d.ts +1 -0
- package/dist/components/network-modifications/common/connectivity/index.js +2 -0
- package/dist/components/network-modifications/common/index.d.ts +3 -0
- package/dist/components/network-modifications/common/index.js +35 -1
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +8 -0
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +102 -0
- package/dist/components/network-modifications/common/reactiveLimits/index.d.ts +10 -0
- package/dist/components/network-modifications/common/reactiveLimits/index.js +23 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +12 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +101 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +10 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +118 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +9 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +15 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +20 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +152 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +21 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.type.js +1 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +55 -0
- package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +66 -0
- package/dist/components/network-modifications/common/setpoints/setPoints.utils.js +3 -3
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +5 -0
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +68 -0
- package/dist/components/network-modifications/common/shortCircuit/index.d.ts +9 -0
- package/dist/components/network-modifications/common/shortCircuit/index.js +8 -0
- package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +10 -0
- package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.type.js +1 -0
- package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +15 -0
- package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +37 -0
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +1 -1
- package/dist/components/network-modifications/generator/creation/generatorCreation.types.d.ts +40 -0
- package/dist/components/network-modifications/generator/creation/generatorCreation.types.js +1 -0
- package/dist/components/network-modifications/generator/creation/index.d.ts +7 -0
- package/dist/components/network-modifications/generator/creation/index.js +1 -0
- package/dist/components/network-modifications/generator/generatorDialog.type.d.ts +102 -0
- package/dist/components/network-modifications/generator/generatorDialog.type.js +1 -0
- package/dist/components/network-modifications/generator/index.d.ts +9 -0
- package/dist/components/network-modifications/generator/index.js +1 -0
- package/dist/components/network-modifications/generator/modification/generatorModification.types.d.ts +41 -0
- package/dist/components/network-modifications/generator/modification/generatorModification.types.js +1 -0
- package/dist/components/network-modifications/generator/modification/index.d.ts +7 -0
- package/dist/components/network-modifications/generator/modification/index.js +1 -0
- package/dist/components/network-modifications/index.d.ts +1 -0
- package/dist/components/network-modifications/index.js +34 -0
- package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -1
- package/dist/components/network-modifications/load/creation/loadCreation.utils.js +1 -1
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +4 -3
- package/dist/components/parameters/common/hook/use-parameters-form.js +1 -1
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +1 -1
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +1 -1
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.js +1 -1
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +3 -3
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.js +2 -2
- package/dist/components/parameters/dynamic-simulation/network/network-parameters.js +2 -2
- package/dist/index.js +38 -3
- package/dist/translations/en/equipmentShortEn.d.ts +1 -1
- package/dist/translations/en/equipmentShortEn.js +1 -1
- package/dist/translations/en/equipmentTagEn.d.ts +1 -1
- package/dist/translations/en/equipmentTagEn.js +1 -1
- package/dist/translations/en/equipmentTypesEn.d.ts +1 -1
- package/dist/translations/en/equipmentTypesEn.js +1 -1
- package/dist/translations/en/external/exportParamsEn.d.ts +1 -1
- package/dist/translations/en/external/exportParamsEn.js +1 -1
- package/dist/translations/en/external/importParamsEn.d.ts +1 -1
- package/dist/translations/en/external/importParamsEn.js +1 -1
- package/dist/translations/en/networkModificationsEn.d.ts +26 -0
- package/dist/translations/en/networkModificationsEn.js +26 -0
- package/dist/translations/en/parameters.d.ts +1 -1
- package/dist/translations/en/parameters.js +1 -1
- package/dist/translations/fr/equipmentShortFr.d.ts +1 -1
- package/dist/translations/fr/equipmentShortFr.js +1 -1
- package/dist/translations/fr/equipmentTagFr.d.ts +1 -1
- package/dist/translations/fr/equipmentTagFr.js +1 -1
- package/dist/translations/fr/equipmentTypesFr.d.ts +1 -1
- package/dist/translations/fr/equipmentTypesFr.js +1 -1
- package/dist/translations/fr/external/exportParamsFr.d.ts +1 -1
- package/dist/translations/fr/external/exportParamsFr.js +1 -1
- package/dist/translations/fr/external/importParamsFr.d.ts +1 -1
- package/dist/translations/fr/external/importParamsFr.js +1 -1
- package/dist/translations/fr/networkModificationsFr.d.ts +26 -0
- package/dist/translations/fr/networkModificationsFr.js +26 -0
- package/dist/translations/fr/parameters.d.ts +1 -1
- package/dist/translations/fr/parameters.js +1 -1
- package/dist/utils/constants/fieldConstants.d.ts +22 -1
- package/dist/utils/constants/fieldConstants.js +22 -1
- package/dist/utils/index.js +2 -2
- package/dist/utils/mapper/equipmentTypesForPredefinedPropertiesMapper.js +1 -1
- package/dist/utils/types/equipmentType.d.ts +1 -1
- package/dist/utils/types/equipmentType.js +12 -12
- package/dist/utils/types/equipmentTypes.d.ts +1 -1
- package/dist/utils/types/equipmentTypes.js +2 -2
- package/dist/utils/types/index.js +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2026, RTE (http://www.rte-france.com)
|
|
3
|
+
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
4
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
5
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
6
|
+
*/
|
|
7
|
+
export * from './generatorDialog.type';
|
|
8
|
+
export * from './creation';
|
|
9
|
+
export * from './modification';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { AttributeModification } from '../../../../utils';
|
|
2
|
+
import { Property } from '../../common/properties';
|
|
3
|
+
import { ReactiveCapabilityCurvePoints } from '../../common/reactiveLimits/reactiveLimits.type';
|
|
4
|
+
export interface GeneratorModificationDto {
|
|
5
|
+
type: string;
|
|
6
|
+
uuid: string | null;
|
|
7
|
+
equipmentId: string;
|
|
8
|
+
equipmentName: AttributeModification<string> | null;
|
|
9
|
+
energySource?: AttributeModification<string> | null;
|
|
10
|
+
maxP: AttributeModification<number> | null;
|
|
11
|
+
minP: AttributeModification<number> | null;
|
|
12
|
+
targetP: AttributeModification<number> | null;
|
|
13
|
+
targetQ: AttributeModification<number> | null;
|
|
14
|
+
participate: AttributeModification<boolean> | null;
|
|
15
|
+
droop: AttributeModification<number> | null;
|
|
16
|
+
reactiveCapabilityCurve: AttributeModification<boolean> | null;
|
|
17
|
+
minQ: AttributeModification<number> | null;
|
|
18
|
+
maxQ: AttributeModification<number> | null;
|
|
19
|
+
reactiveCapabilityCurvePoints: ReactiveCapabilityCurvePoints[] | null;
|
|
20
|
+
voltageLevelId: AttributeModification<string> | null;
|
|
21
|
+
busOrBusbarSectionId: AttributeModification<string> | null;
|
|
22
|
+
connectionDirection: AttributeModification<string> | null;
|
|
23
|
+
connectionName?: AttributeModification<string> | null;
|
|
24
|
+
connectionPosition?: AttributeModification<number> | null;
|
|
25
|
+
terminalConnected?: AttributeModification<boolean> | null;
|
|
26
|
+
properties: Property[] | null;
|
|
27
|
+
ratedS: AttributeModification<number> | null;
|
|
28
|
+
voltageRegulationOn: AttributeModification<boolean> | null;
|
|
29
|
+
targetV: AttributeModification<number> | null;
|
|
30
|
+
qPercent: AttributeModification<number> | null;
|
|
31
|
+
plannedActivePowerSetPoint: AttributeModification<number> | null;
|
|
32
|
+
marginalCost: AttributeModification<number> | null;
|
|
33
|
+
plannedOutageRate: AttributeModification<number> | null;
|
|
34
|
+
forcedOutageRate: AttributeModification<number> | null;
|
|
35
|
+
directTransX: AttributeModification<number> | null;
|
|
36
|
+
stepUpTransformerX: AttributeModification<number> | null;
|
|
37
|
+
voltageRegulationType?: AttributeModification<string> | null;
|
|
38
|
+
regulatingTerminalId: AttributeModification<string> | null;
|
|
39
|
+
regulatingTerminalType: AttributeModification<string> | null;
|
|
40
|
+
regulatingTerminalVlId: AttributeModification<string> | null;
|
|
41
|
+
}
|
package/dist/components/network-modifications/generator/modification/generatorModification.types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2026, RTE (http://www.rte-france.com)
|
|
3
|
+
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
4
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
5
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
6
|
+
*/
|
|
7
|
+
export * from './generatorModification.types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -13,6 +13,16 @@ import { SetPointsForm } from "./common/setpoints/SetPointsForm.js";
|
|
|
13
13
|
import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./common/connectivity/connectivityForm.utils.js";
|
|
14
14
|
import { ConnectivityForm } from "./common/connectivity/ConnectivityForm.js";
|
|
15
15
|
import { BranchConnectivityForm } from "./common/connectivity/BranchConnectivityForm.js";
|
|
16
|
+
import { VoltageLevelConnectivityForm } from "./common/connectivity/VoltageLevelConnectivityForm.js";
|
|
17
|
+
import { getActivePowerControlEmptyFormData, getActivePowerControlSchema } from "./common/activePowerControl/activePowerControlForm.utils.js";
|
|
18
|
+
import { ActivePowerControlForm } from "./common/activePowerControl/ActivePowerControlForm.js";
|
|
19
|
+
import { getShortCircuitEmptyFormData, getShortCircuitFormData, getShortCircuitFormSchema } from "./common/shortCircuit/shortCircuitForm.utils.js";
|
|
20
|
+
import { ShortCircuitForm } from "./common/shortCircuit/ShortCircuitForm.js";
|
|
21
|
+
import { INSERT, REMOVE, getReactiveCapabilityCurveValidationSchema, getRowEmptyFormData, setCurrentReactiveCapabilityCurveTable, setSelectedReactiveLimits, toReactiveCapabilityCurveChoiceForGeneratorCreation, toReactiveCapabilityCurveChoiceForGeneratorModification } from "./common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js";
|
|
22
|
+
import { ReactiveCapabilityCurveRowForm } from "./common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js";
|
|
23
|
+
import { ReactiveCapabilityCurveTableForm } from "./common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
24
|
+
import { REACTIVE_LIMIT_TYPES, getReactiveLimitsEmptyFormData, getReactiveLimitsFormData, getReactiveLimitsSchema, getReactiveLimitsValidationSchema } from "./common/reactiveLimits/reactiveLimits.utils.js";
|
|
25
|
+
import { ReactiveLimitsForm } from "./common/reactiveLimits/ReactiveLimitsForm.js";
|
|
16
26
|
import { getHvdcLccDeletionSchema } from "./equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
|
|
17
27
|
import { ShuntCompensatorSelectionForm } from "./equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
|
|
18
28
|
import { useHvdcLccDeletion } from "./equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
|
|
@@ -78,6 +88,7 @@ import { ModificationByAssignmentForm } from "./by-filter/assignment/modificatio
|
|
|
78
88
|
import { emptyModificationByAssignmentFormData, modificationByAssignmentDtoToForm, modificationByAssignmentFormSchema, modificationByAssignmentFormToDto } from "./by-filter/assignment/modificationByAssignment.utils.js";
|
|
79
89
|
import { DataType } from "./by-filter/assignment/assignment/assignment.type.js";
|
|
80
90
|
export {
|
|
91
|
+
ActivePowerControlForm,
|
|
81
92
|
DataType as AssignmentDataType,
|
|
82
93
|
BranchActiveReactivePowerMeasurementsForm,
|
|
83
94
|
BranchConnectivityForm,
|
|
@@ -86,6 +97,7 @@ export {
|
|
|
86
97
|
EQUIPMENT_TYPE_ORDER,
|
|
87
98
|
EquipmentDeletionForm,
|
|
88
99
|
HvdcLccDeletionSpecificForm,
|
|
100
|
+
INSERT,
|
|
89
101
|
LOAD_TAB_FIELDS,
|
|
90
102
|
LoadDialogHeader,
|
|
91
103
|
LoadDialogTab,
|
|
@@ -97,13 +109,20 @@ export {
|
|
|
97
109
|
PowerWithValidityForm,
|
|
98
110
|
PropertiesForm,
|
|
99
111
|
PropertyForm,
|
|
112
|
+
REACTIVE_LIMIT_TYPES,
|
|
113
|
+
REMOVE,
|
|
114
|
+
ReactiveCapabilityCurveRowForm,
|
|
115
|
+
ReactiveCapabilityCurveTableForm,
|
|
116
|
+
ReactiveLimitsForm,
|
|
100
117
|
SWITCH_TYPE,
|
|
101
118
|
SetPointsForm,
|
|
119
|
+
ShortCircuitForm,
|
|
102
120
|
ShuntCompensatorSelectionForm,
|
|
103
121
|
SubstationCreationForm,
|
|
104
122
|
SubstationModificationForm,
|
|
105
123
|
SwitchKind,
|
|
106
124
|
SwitchesBetweenSections,
|
|
125
|
+
VoltageLevelConnectivityForm,
|
|
107
126
|
VoltageLevelCreationForm,
|
|
108
127
|
VoltageLevelModificationForm,
|
|
109
128
|
buildNewBusbarSections,
|
|
@@ -123,6 +142,8 @@ export {
|
|
|
123
142
|
equipmentDeletionFormToDto,
|
|
124
143
|
fetchPredefinedProperties,
|
|
125
144
|
filledTextField,
|
|
145
|
+
getActivePowerControlEmptyFormData,
|
|
146
|
+
getActivePowerControlSchema,
|
|
126
147
|
getActivePowerSetPointSchema,
|
|
127
148
|
getBranchActiveReactivePowerEditData,
|
|
128
149
|
getBranchActiveReactivePowerEditDataProperties,
|
|
@@ -163,9 +184,18 @@ export {
|
|
|
163
184
|
getPowerWithValidityValidationSchema,
|
|
164
185
|
getPropertiesFromModification,
|
|
165
186
|
getPropertyValue,
|
|
187
|
+
getReactiveCapabilityCurveValidationSchema,
|
|
188
|
+
getReactiveLimitsEmptyFormData,
|
|
189
|
+
getReactiveLimitsFormData,
|
|
190
|
+
getReactiveLimitsSchema,
|
|
191
|
+
getReactiveLimitsValidationSchema,
|
|
166
192
|
getReactivePowerSetPointSchema,
|
|
193
|
+
getRowEmptyFormData,
|
|
167
194
|
getSetPointsEmptyFormData,
|
|
168
195
|
getSetPointsSchema,
|
|
196
|
+
getShortCircuitEmptyFormData,
|
|
197
|
+
getShortCircuitFormData,
|
|
198
|
+
getShortCircuitFormSchema,
|
|
169
199
|
initializedProperty,
|
|
170
200
|
italicFontTextField,
|
|
171
201
|
loadCreationDtoToForm,
|
|
@@ -182,6 +212,8 @@ export {
|
|
|
182
212
|
modificationByAssignmentFormToDto,
|
|
183
213
|
modificationPropertiesSchema,
|
|
184
214
|
newEquipmentDeletionDto,
|
|
215
|
+
setCurrentReactiveCapabilityCurveTable,
|
|
216
|
+
setSelectedReactiveLimits,
|
|
185
217
|
standardTextField,
|
|
186
218
|
substationCreationDtoToForm,
|
|
187
219
|
substationCreationEmptyFormData,
|
|
@@ -193,6 +225,8 @@ export {
|
|
|
193
225
|
substationModificationFormToDto,
|
|
194
226
|
testValueWithinPowerInterval,
|
|
195
227
|
toModificationProperties,
|
|
228
|
+
toReactiveCapabilityCurveChoiceForGeneratorCreation,
|
|
229
|
+
toReactiveCapabilityCurveChoiceForGeneratorModification,
|
|
196
230
|
translateSwitchKinds,
|
|
197
231
|
useHvdcLccDeletion,
|
|
198
232
|
useTabsWithError,
|
|
@@ -11,9 +11,9 @@ import "../../../../utils/yupConfig.js";
|
|
|
11
11
|
import { getConnectivityWithPositionSchema, getConnectivityWithPositionEmptyFormDataProps, getConnectivityFormDataProps } from "../../common/connectivity/connectivityForm.utils.js";
|
|
12
12
|
import "@mui/material";
|
|
13
13
|
import "react";
|
|
14
|
-
import "react-hook-form";
|
|
15
14
|
import "react-intl";
|
|
16
15
|
import "../../../overflowableText/OverflowableText.js";
|
|
16
|
+
import "react-hook-form";
|
|
17
17
|
import "localized-countries";
|
|
18
18
|
import "localized-countries/data/fr";
|
|
19
19
|
import "localized-countries/data/en";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useWatch, useFormContext } from "react-hook-form";
|
|
3
3
|
import { FormattedMessage } from "react-intl";
|
|
4
|
-
import { Grid
|
|
4
|
+
import { Grid } from "@mui/material";
|
|
5
5
|
import { useCallback, useEffect } from "react";
|
|
6
|
-
import { ControlPoint } from "@mui/icons-material";
|
|
7
6
|
import { FieldConstants } from "../../../../../../utils/constants/fieldConstants.js";
|
|
8
7
|
import "../../../../../../utils/conversionUtils.js";
|
|
9
8
|
import "../../../../../../utils/types/equipmentType.js";
|
|
9
|
+
import "@mui/icons-material";
|
|
10
10
|
import "../../../../../../utils/yupConfig.js";
|
|
11
11
|
import { fetchDefaultCountry } from "../../../../../../services/appsMetadata.js";
|
|
12
12
|
import "../../../../../overflowableText/OverflowableText.js";
|
|
@@ -25,6 +25,7 @@ import "react-csv-downloader";
|
|
|
25
25
|
import { AutocompleteInput } from "../../../../../inputs/reactHookForm/autocompleteInputs/AutocompleteInput.js";
|
|
26
26
|
import { TextInput } from "../../../../../inputs/reactHookForm/text/TextInput.js";
|
|
27
27
|
import "../../../../../inputs/reactHookForm/numbers/RangeInput.js";
|
|
28
|
+
import { AddButton } from "../../../../../addButton/AddButton.js";
|
|
28
29
|
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
29
30
|
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
30
31
|
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
@@ -74,7 +75,7 @@ function SubstationTab({ substationOptions, showDeleteButton }) {
|
|
|
74
75
|
}
|
|
75
76
|
) : /* @__PURE__ */ jsx(TextInput, { name: FieldConstants.SUBSTATION_ID, label: "SUBSTATION" }) }),
|
|
76
77
|
/* @__PURE__ */ jsx(Grid, { item: true, mt: 0.75, children: /* @__PURE__ */ jsx(FormattedMessage, { id: "Or" }) }),
|
|
77
|
-
/* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
|
|
78
|
+
/* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(AddButton, { label: "CreateSubstation", onClick: handleCreateSubstation }) })
|
|
78
79
|
] });
|
|
79
80
|
}
|
|
80
81
|
export {
|
|
@@ -3,9 +3,9 @@ import { useForm } from "react-hook-form";
|
|
|
3
3
|
import { yupResolver } from "@hookform/resolvers/yup";
|
|
4
4
|
import "react/jsx-runtime";
|
|
5
5
|
import "@mui/material";
|
|
6
|
-
import "react-intl";
|
|
7
6
|
import "@mui/icons-material";
|
|
8
7
|
import "../../../inputs/reactHookForm/provider/CustomFormProvider.js";
|
|
8
|
+
import "react-intl";
|
|
9
9
|
import "yup";
|
|
10
10
|
import "../../../../utils/conversionUtils.js";
|
|
11
11
|
import "../../../../utils/types/equipmentType.js";
|
package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { EquipmentType } from '../../../../../utils/types/equipmentType';
|
|
|
2
2
|
import { CombinatorType, DataType } from '../../../../filter/expert/expertFilter.type';
|
|
3
3
|
import { ExpertFilter } from '../../../../filter/filter.type';
|
|
4
4
|
export declare const CURVE_EQUIPMENT_TYPES: EquipmentType[];
|
|
5
|
-
export declare const getReferencedEquipmentTypeForModel: (equipmentType: EquipmentType) => EquipmentType.SUBSTATION | EquipmentType.VOLTAGE_LEVEL | EquipmentType.BUS | EquipmentType.SWITCH | EquipmentType.LINE | EquipmentType.TWO_WINDINGS_TRANSFORMER | EquipmentType.THREE_WINDINGS_TRANSFORMER | EquipmentType.GENERATOR | EquipmentType.BATTERY | EquipmentType.LOAD | EquipmentType.SHUNT_COMPENSATOR | EquipmentType.STATIC_VAR_COMPENSATOR | EquipmentType.HVDC_LINE | EquipmentType.HVDC_CONVERTER_STATION | EquipmentType.VSC_CONVERTER_STATION | EquipmentType.LCC_CONVERTER_STATION | EquipmentType.
|
|
5
|
+
export declare const getReferencedEquipmentTypeForModel: (equipmentType: EquipmentType) => EquipmentType.SUBSTATION | EquipmentType.VOLTAGE_LEVEL | EquipmentType.BUS | EquipmentType.SWITCH | EquipmentType.LINE | EquipmentType.TWO_WINDINGS_TRANSFORMER | EquipmentType.THREE_WINDINGS_TRANSFORMER | EquipmentType.GENERATOR | EquipmentType.BATTERY | EquipmentType.LOAD | EquipmentType.SHUNT_COMPENSATOR | EquipmentType.STATIC_VAR_COMPENSATOR | EquipmentType.HVDC_LINE | EquipmentType.HVDC_CONVERTER_STATION | EquipmentType.VSC_CONVERTER_STATION | EquipmentType.LCC_CONVERTER_STATION | EquipmentType.BOUNDARY_LINE | EquipmentType.TIE_LINE | EquipmentType.DISCONNECTOR | EquipmentType.BREAKER;
|
|
6
6
|
export declare const getTopologyKindIfNecessary: (equipmentType: string) => {
|
|
7
7
|
topologyKind: string;
|
|
8
8
|
} | {
|
package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
export declare const NETWORK = "network";
|
|
8
8
|
export declare enum Network {
|
|
9
9
|
CAPACITOR_NO_RECLOSING_DELAY = "capacitorNoReclosingDelay",
|
|
10
|
-
|
|
10
|
+
BOUNDARY_LINE_CURRENT_LIMIT_MAX_TIME_OPERATION = "boundaryLineCurrentLimitMaxTimeOperation",
|
|
11
11
|
LINE_CURRENT_LIMIT_MAX_TIME_OPERATION = "lineCurrentLimitMaxTimeOperation",
|
|
12
12
|
LOAD_TP = "loadTp",
|
|
13
13
|
LOAD_TQ = "loadTq",
|
package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const NETWORK = "network";
|
|
2
2
|
var Network = /* @__PURE__ */ ((Network2) => {
|
|
3
3
|
Network2["CAPACITOR_NO_RECLOSING_DELAY"] = "capacitorNoReclosingDelay";
|
|
4
|
-
Network2["
|
|
4
|
+
Network2["BOUNDARY_LINE_CURRENT_LIMIT_MAX_TIME_OPERATION"] = "boundaryLineCurrentLimitMaxTimeOperation";
|
|
5
5
|
Network2["LINE_CURRENT_LIMIT_MAX_TIME_OPERATION"] = "lineCurrentLimitMaxTimeOperation";
|
|
6
6
|
Network2["LOAD_TP"] = "loadTp";
|
|
7
7
|
Network2["LOAD_TQ"] = "loadTq";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as yup } from '../../../../utils/yupConfig';
|
|
2
2
|
export declare const networkFormSchema: yup.ObjectSchema<{
|
|
3
3
|
capacitorNoReclosingDelay: number;
|
|
4
|
-
|
|
4
|
+
boundaryLineCurrentLimitMaxTimeOperation: number;
|
|
5
5
|
lineCurrentLimitMaxTimeOperation: number;
|
|
6
6
|
loadTp: number;
|
|
7
7
|
loadTq: number;
|
|
@@ -22,7 +22,7 @@ export declare const networkFormSchema: yup.ObjectSchema<{
|
|
|
22
22
|
transformerTolV: number;
|
|
23
23
|
}, yup.AnyObject, {
|
|
24
24
|
capacitorNoReclosingDelay: undefined;
|
|
25
|
-
|
|
25
|
+
boundaryLineCurrentLimitMaxTimeOperation: undefined;
|
|
26
26
|
lineCurrentLimitMaxTimeOperation: undefined;
|
|
27
27
|
loadTp: undefined;
|
|
28
28
|
loadTq: undefined;
|
|
@@ -44,7 +44,7 @@ export declare const networkFormSchema: yup.ObjectSchema<{
|
|
|
44
44
|
}, "">;
|
|
45
45
|
export declare const networkEmptyFormData: {
|
|
46
46
|
capacitorNoReclosingDelay: number;
|
|
47
|
-
|
|
47
|
+
boundaryLineCurrentLimitMaxTimeOperation: number;
|
|
48
48
|
lineCurrentLimitMaxTimeOperation: number;
|
|
49
49
|
loadTp: number;
|
|
50
50
|
loadTq: number;
|
|
@@ -3,7 +3,7 @@ import "../../../../utils/yupConfig.js";
|
|
|
3
3
|
import * as yup from "yup";
|
|
4
4
|
const networkFormSchema = yup.object().shape({
|
|
5
5
|
[Network.CAPACITOR_NO_RECLOSING_DELAY]: yup.number().required(),
|
|
6
|
-
[Network.
|
|
6
|
+
[Network.BOUNDARY_LINE_CURRENT_LIMIT_MAX_TIME_OPERATION]: yup.number().required(),
|
|
7
7
|
[Network.LINE_CURRENT_LIMIT_MAX_TIME_OPERATION]: yup.number().required(),
|
|
8
8
|
[Network.LOAD_TP]: yup.number().required(),
|
|
9
9
|
[Network.LOAD_TQ]: yup.number().required(),
|
|
@@ -25,7 +25,7 @@ const networkFormSchema = yup.object().shape({
|
|
|
25
25
|
});
|
|
26
26
|
const networkEmptyFormData = {
|
|
27
27
|
[Network.CAPACITOR_NO_RECLOSING_DELAY]: 0,
|
|
28
|
-
[Network.
|
|
28
|
+
[Network.BOUNDARY_LINE_CURRENT_LIMIT_MAX_TIME_OPERATION]: 0,
|
|
29
29
|
[Network.LINE_CURRENT_LIMIT_MAX_TIME_OPERATION]: 0,
|
|
30
30
|
[Network.LOAD_TP]: 0,
|
|
31
31
|
[Network.LOAD_TQ]: 0,
|
|
@@ -14,9 +14,9 @@ const params = [
|
|
|
14
14
|
label: "DynamicSimulationNetworkCapacitorNoReclosingDelay"
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
|
-
name: Network.
|
|
17
|
+
name: Network.BOUNDARY_LINE_CURRENT_LIMIT_MAX_TIME_OPERATION,
|
|
18
18
|
type: ParameterType.DOUBLE,
|
|
19
|
-
label: "
|
|
19
|
+
label: "DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
name: Network.LINE_CURRENT_LIMIT_MAX_TIME_OPERATION,
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as default2 } from "./_mocks_/svg.js";
|
|
2
|
+
import { AddButton, AddButtonMode } from "./components/addButton/AddButton.js";
|
|
2
3
|
import { AnnouncementBanner } from "./components/announcement/AnnouncementBanner.js";
|
|
3
4
|
import { AnnouncementNotification } from "./components/announcement/AnnouncementNotification.js";
|
|
4
5
|
import { useGlobalAnnouncement } from "./components/announcement/useGlobalAnnouncement.js";
|
|
@@ -107,7 +108,6 @@ import { DESCRIPTION, NAME } from "./components/inputs/reactHookForm/constants.j
|
|
|
107
108
|
import { ExpandableInput } from "./components/inputs/reactHookForm/expandableInput/ExpandableInput.js";
|
|
108
109
|
import { CountrySelectionInput } from "./components/inputs/reactHookForm/CountrySelectionInput.js";
|
|
109
110
|
import { CheckboxNullableInput } from "./components/inputs/reactHookForm/CheckboxNullableInput.js";
|
|
110
|
-
import { AddButton } from "./components/inputs/reactQueryBuilder/AddButton.js";
|
|
111
111
|
import { AutocompleteWithFavorites } from "./components/inputs/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
112
112
|
import { CombinatorSelector } from "./components/inputs/reactQueryBuilder/CombinatorSelector.js";
|
|
113
113
|
import { CountryValueEditor } from "./components/inputs/reactQueryBuilder/CountryValueEditor.js";
|
|
@@ -208,6 +208,16 @@ import { SetPointsForm } from "./components/network-modifications/common/setpoin
|
|
|
208
208
|
import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./components/network-modifications/common/connectivity/connectivityForm.utils.js";
|
|
209
209
|
import { ConnectivityForm } from "./components/network-modifications/common/connectivity/ConnectivityForm.js";
|
|
210
210
|
import { BranchConnectivityForm } from "./components/network-modifications/common/connectivity/BranchConnectivityForm.js";
|
|
211
|
+
import { VoltageLevelConnectivityForm } from "./components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js";
|
|
212
|
+
import { getActivePowerControlEmptyFormData, getActivePowerControlSchema } from "./components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js";
|
|
213
|
+
import { ActivePowerControlForm } from "./components/network-modifications/common/activePowerControl/ActivePowerControlForm.js";
|
|
214
|
+
import { getShortCircuitEmptyFormData, getShortCircuitFormData, getShortCircuitFormSchema } from "./components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js";
|
|
215
|
+
import { ShortCircuitForm } from "./components/network-modifications/common/shortCircuit/ShortCircuitForm.js";
|
|
216
|
+
import { INSERT, REMOVE, getReactiveCapabilityCurveValidationSchema, getRowEmptyFormData, setCurrentReactiveCapabilityCurveTable, setSelectedReactiveLimits, toReactiveCapabilityCurveChoiceForGeneratorCreation, toReactiveCapabilityCurveChoiceForGeneratorModification } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js";
|
|
217
|
+
import { ReactiveCapabilityCurveRowForm } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js";
|
|
218
|
+
import { ReactiveCapabilityCurveTableForm } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
219
|
+
import { REACTIVE_LIMIT_TYPES, getReactiveLimitsEmptyFormData, getReactiveLimitsFormData, getReactiveLimitsSchema, getReactiveLimitsValidationSchema } from "./components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js";
|
|
220
|
+
import { ReactiveLimitsForm } from "./components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js";
|
|
211
221
|
import { getHvdcLccDeletionSchema } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
|
|
212
222
|
import { ShuntCompensatorSelectionForm } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
|
|
213
223
|
import { useHvdcLccDeletion } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
|
|
@@ -245,7 +255,7 @@ import { ProblemDetailError } from "./utils/types/ProblemDetailError.js";
|
|
|
245
255
|
import { NetworkTimeoutError } from "./utils/types/NetworkTimeoutError.js";
|
|
246
256
|
import { ElementType } from "./utils/types/elementType.js";
|
|
247
257
|
import { ALL_EQUIPMENTS, BASE_EQUIPMENTS, CONNECTION_DIRECTIONS, EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE, EQUIPMENTS_WITH_ONE_SUBSTATION, EQUIPMENTS_WITH_THREE_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_SUBSTATIONS, EquipmentType, ExtendedEquipmentType, HvdcType, LOAD_TYPES, OperatingStatus, SEARCH_EQUIPMENTS, TYPE_TAG_MAX_SIZE, UNDEFINED_CONNECTION_DIRECTION, UNDEFINED_LOAD_TYPE, VL_TAG_MAX_SIZE, equipmentStyles, getConnectionDirectionLabel, getEquipmentsInfosForSearchBar, getLoadTypeLabel } from "./utils/types/equipmentType.js";
|
|
248
|
-
import { Battery,
|
|
258
|
+
import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./utils/types/equipmentTypes.js";
|
|
249
259
|
import { AnnouncementSeverity, ArrayAction } from "./utils/types/types.js";
|
|
250
260
|
import { MODIFICATION_TYPES, ModificationType } from "./utils/types/modificationType.js";
|
|
251
261
|
import { FieldType } from "./utils/types/fieldType.js";
|
|
@@ -396,7 +406,9 @@ export {
|
|
|
396
406
|
AboutDialog,
|
|
397
407
|
ActivableChip,
|
|
398
408
|
ActivePowerAdornment,
|
|
409
|
+
ActivePowerControlForm,
|
|
399
410
|
AddButton,
|
|
411
|
+
AddButtonMode,
|
|
400
412
|
AmpereAdornment,
|
|
401
413
|
AnnouncementBanner,
|
|
402
414
|
AnnouncementNotification,
|
|
@@ -416,6 +428,7 @@ export {
|
|
|
416
428
|
BooleanInput,
|
|
417
429
|
BooleanNullableCellRenderer,
|
|
418
430
|
BottomRightButtons,
|
|
431
|
+
BoundaryLine,
|
|
419
432
|
BranchActiveReactivePowerMeasurementsForm,
|
|
420
433
|
BranchConnectivityForm,
|
|
421
434
|
BuildStatus,
|
|
@@ -502,7 +515,6 @@ export {
|
|
|
502
515
|
DROP_INDICATOR_BOTTOM,
|
|
503
516
|
DROP_INDICATOR_TOP,
|
|
504
517
|
DUPLICATED_PROPS_ERROR,
|
|
505
|
-
DanglingLine,
|
|
506
518
|
DataType,
|
|
507
519
|
DefaultCellRenderer,
|
|
508
520
|
DepthBox,
|
|
@@ -591,6 +603,7 @@ export {
|
|
|
591
603
|
IGNORE_SIGNAL,
|
|
592
604
|
INJECTIONS_EQUIPMENT_TYPES,
|
|
593
605
|
INJECTION_DISTRIBUTION_TYPES,
|
|
606
|
+
INSERT,
|
|
594
607
|
INTL_LINE_FLOW_MODE_OPTIONS,
|
|
595
608
|
INTL_SUBSTATION_LAYOUT_OPTIONS,
|
|
596
609
|
IST_FORM,
|
|
@@ -759,15 +772,20 @@ export {
|
|
|
759
772
|
RATIO_REGULATION_MODE_OPTIONS,
|
|
760
773
|
RATIO_TAP_CHANGER_POSITION,
|
|
761
774
|
RATIO_TAP_CHANGER_TARGET_V,
|
|
775
|
+
REACTIVE_LIMIT_TYPES,
|
|
762
776
|
REACTIVE_SLACKS_THRESHOLD,
|
|
763
777
|
READ_SLACK_BUS,
|
|
764
778
|
REGULATION_TYPE_OPTIONS,
|
|
779
|
+
REMOVE,
|
|
765
780
|
RESET_AUTHENTICATION_ROUTER_ERROR,
|
|
766
781
|
RULES,
|
|
767
782
|
RadioInput,
|
|
768
783
|
RangeInput,
|
|
769
784
|
RangeType,
|
|
770
785
|
RawReadOnlyInput,
|
|
786
|
+
ReactiveCapabilityCurveRowForm,
|
|
787
|
+
ReactiveCapabilityCurveTableForm,
|
|
788
|
+
ReactiveLimitsForm,
|
|
771
789
|
ReactivePowerAdornment,
|
|
772
790
|
ReadOnlyInput,
|
|
773
791
|
RemoveButton,
|
|
@@ -821,6 +839,7 @@ export {
|
|
|
821
839
|
SensitivityType,
|
|
822
840
|
SeparatorCellRenderer,
|
|
823
841
|
SetPointsForm,
|
|
842
|
+
ShortCircuitForm,
|
|
824
843
|
ShortCircuitParametersEditionDialog,
|
|
825
844
|
ShortCircuitParametersInLine,
|
|
826
845
|
ShuntCompensator,
|
|
@@ -886,6 +905,7 @@ export {
|
|
|
886
905
|
VoltageInitParametersInLine,
|
|
887
906
|
VoltageInitTabValues,
|
|
888
907
|
VoltageLevel,
|
|
908
|
+
VoltageLevelConnectivityForm,
|
|
889
909
|
VoltageLevelCreationForm,
|
|
890
910
|
VoltageLevelModificationForm,
|
|
891
911
|
WRITE_SLACK_BUS,
|
|
@@ -1022,6 +1042,8 @@ export {
|
|
|
1022
1042
|
formatToComposedModification,
|
|
1023
1043
|
genHelperError,
|
|
1024
1044
|
generateTreeViewFinderClass,
|
|
1045
|
+
getActivePowerControlEmptyFormData,
|
|
1046
|
+
getActivePowerControlSchema,
|
|
1025
1047
|
getActivePowerSetPointSchema,
|
|
1026
1048
|
getAppName,
|
|
1027
1049
|
getAvailableComponentLibraries,
|
|
@@ -1091,12 +1113,21 @@ export {
|
|
|
1091
1113
|
getPropertiesFromModification,
|
|
1092
1114
|
getPropertyValue,
|
|
1093
1115
|
getRangeInputSchema,
|
|
1116
|
+
getReactiveCapabilityCurveValidationSchema,
|
|
1117
|
+
getReactiveLimitsEmptyFormData,
|
|
1118
|
+
getReactiveLimitsFormData,
|
|
1119
|
+
getReactiveLimitsSchema,
|
|
1120
|
+
getReactiveLimitsValidationSchema,
|
|
1094
1121
|
getReactivePowerSetPointSchema,
|
|
1095
1122
|
getRequestParamFromList,
|
|
1123
|
+
getRowEmptyFormData,
|
|
1096
1124
|
getSecurityAnalysisDefaultLimitReductions,
|
|
1097
1125
|
getSecurityAnalysisParameters,
|
|
1098
1126
|
getSetPointsEmptyFormData,
|
|
1099
1127
|
getSetPointsSchema,
|
|
1128
|
+
getShortCircuitEmptyFormData,
|
|
1129
|
+
getShortCircuitFormData,
|
|
1130
|
+
getShortCircuitFormSchema,
|
|
1100
1131
|
getShortCircuitSpecificParametersDescription,
|
|
1101
1132
|
getStudyNetworkVisualizationsParameters,
|
|
1102
1133
|
getStudyShortCircuitParameters,
|
|
@@ -1188,10 +1219,12 @@ export {
|
|
|
1188
1219
|
saveExplicitNamingFilter,
|
|
1189
1220
|
saveFilter,
|
|
1190
1221
|
setCommonStore,
|
|
1222
|
+
setCurrentReactiveCapabilityCurveTable,
|
|
1191
1223
|
setLoadFlowParameters,
|
|
1192
1224
|
setLoggedUser,
|
|
1193
1225
|
setLogoutError,
|
|
1194
1226
|
setSecurityAnalysisParameters,
|
|
1227
|
+
setSelectedReactiveLimits,
|
|
1195
1228
|
setShowAuthenticationRouterLogin,
|
|
1196
1229
|
setSignInCallbackError,
|
|
1197
1230
|
setStudyNetworkVisualizationParameters,
|
|
@@ -1220,6 +1253,8 @@ export {
|
|
|
1220
1253
|
toModificationProperties,
|
|
1221
1254
|
toNestedGlobalSelectors,
|
|
1222
1255
|
toNumber,
|
|
1256
|
+
toReactiveCapabilityCurveChoiceForGeneratorCreation,
|
|
1257
|
+
toReactiveCapabilityCurveChoiceForGeneratorModification,
|
|
1223
1258
|
topBarEn,
|
|
1224
1259
|
topBarFr,
|
|
1225
1260
|
translateSwitchKinds,
|
|
@@ -22,7 +22,7 @@ export declare const equipmentShortEn: {
|
|
|
22
22
|
'equipment_short/busbarSection': string;
|
|
23
23
|
'equipment_short/bus': string;
|
|
24
24
|
'equipment_short/switch': string;
|
|
25
|
-
'equipment_short/
|
|
25
|
+
'equipment_short/boundaryLine': string;
|
|
26
26
|
'equipment_short/hvdcLineLcc': string;
|
|
27
27
|
'equipment_short/hvdcLineVsc': string;
|
|
28
28
|
};
|
|
@@ -16,7 +16,7 @@ const equipmentShortEn = {
|
|
|
16
16
|
"equipment_short/busbarSection": "BBS",
|
|
17
17
|
"equipment_short/bus": "Bus",
|
|
18
18
|
"equipment_short/switch": "Switches",
|
|
19
|
-
"equipment_short/
|
|
19
|
+
"equipment_short/boundaryLine": "Boundary lines",
|
|
20
20
|
"equipment_short/hvdcLineLcc": "HVDC LCC",
|
|
21
21
|
"equipment_short/hvdcLineVsc": "HVDC VSC"
|
|
22
22
|
};
|
|
@@ -21,7 +21,7 @@ export declare const equipmentTagEn: {
|
|
|
21
21
|
'equipment_tag/hvdcStation': string;
|
|
22
22
|
'equipment_tag/vscConverterStation': string;
|
|
23
23
|
'equipment_tag/lccConverterStation': string;
|
|
24
|
-
'equipment_tag/
|
|
24
|
+
'equipment_tag/boundaryLine': string;
|
|
25
25
|
'equipment_tag/busbarSection': string;
|
|
26
26
|
'equipment_tag/bus': string;
|
|
27
27
|
'equipment_tag/switch': string;
|
|
@@ -15,7 +15,7 @@ const equipmentTagEn = {
|
|
|
15
15
|
"equipment_tag/hvdcStation": "HVDC STATION",
|
|
16
16
|
"equipment_tag/vscConverterStation": "VSC CONVERTER STATION",
|
|
17
17
|
"equipment_tag/lccConverterStation": "LCC CONVERTER STATION",
|
|
18
|
-
"equipment_tag/
|
|
18
|
+
"equipment_tag/boundaryLine": "BOUNDARY LINE",
|
|
19
19
|
"equipment_tag/busbarSection": "BBS",
|
|
20
20
|
"equipment_tag/bus": "BUS",
|
|
21
21
|
"equipment_tag/switch": "SWITCH"
|
|
@@ -23,7 +23,7 @@ export declare const equipmentTypesEn: {
|
|
|
23
23
|
HVDC_CONVERTER_STATION: string;
|
|
24
24
|
VSC_CONVERTER_STATION: string;
|
|
25
25
|
LCC_CONVERTER_STATION: string;
|
|
26
|
-
|
|
26
|
+
BOUNDARY_LINE: string;
|
|
27
27
|
TIE_LINE: string;
|
|
28
28
|
DISCONNECTOR: string;
|
|
29
29
|
BREAKER: string;
|
|
@@ -17,7 +17,7 @@ const equipmentTypesEn = {
|
|
|
17
17
|
HVDC_CONVERTER_STATION: "HVDC Converter Station",
|
|
18
18
|
VSC_CONVERTER_STATION: "Vsc Converter Station",
|
|
19
19
|
LCC_CONVERTER_STATION: "Lcc Converter Station",
|
|
20
|
-
|
|
20
|
+
BOUNDARY_LINE: "Boundary Line",
|
|
21
21
|
TIE_LINE: "Tie line",
|
|
22
22
|
DISCONNECTOR: "Disconnector",
|
|
23
23
|
BREAKER: "Breaker"
|
|
@@ -65,7 +65,7 @@ export declare const exportParamsEn: {
|
|
|
65
65
|
'iidm.export.xml.extensions.busbarSectionPosition': string;
|
|
66
66
|
'iidm.export.xml.extensions.branchStatus': string;
|
|
67
67
|
'iidm.export.xml.extensions.cgmesControlAreas': string;
|
|
68
|
-
'iidm.export.xml.extensions.
|
|
68
|
+
'iidm.export.xml.extensions.cgmesBoundaryLineBoundaryNode': string;
|
|
69
69
|
'iidm.export.xml.extensions.cgmesLineBoundaryNode': string;
|
|
70
70
|
'iidm.export.xml.extensions.cgmesMetadataModels': string;
|
|
71
71
|
'iidm.export.xml.extensions.cgmesSshMetadata': string;
|
|
@@ -59,7 +59,7 @@ const exportParamsEn = {
|
|
|
59
59
|
"iidm.export.xml.extensions.busbarSectionPosition": "Busbar section position",
|
|
60
60
|
"iidm.export.xml.extensions.branchStatus": "Branch status (IIDM version < 1.12)",
|
|
61
61
|
"iidm.export.xml.extensions.cgmesControlAreas": "Cgmes control areas",
|
|
62
|
-
"iidm.export.xml.extensions.
|
|
62
|
+
"iidm.export.xml.extensions.cgmesBoundaryLineBoundaryNode": "Cgmes boundary line boundary node",
|
|
63
63
|
"iidm.export.xml.extensions.cgmesLineBoundaryNode": "Cgmes line boundary node",
|
|
64
64
|
"iidm.export.xml.extensions.cgmesMetadataModels": "Cgmes models metadata",
|
|
65
65
|
"iidm.export.xml.extensions.cgmesSshMetadata": "Cgmes ssh metadata",
|
|
@@ -62,7 +62,7 @@ export declare const importParamsEn: {
|
|
|
62
62
|
'iidm.import.xml.extensions.busbarSectionPosition': string;
|
|
63
63
|
'iidm.import.xml.extensions.branchStatus': string;
|
|
64
64
|
'iidm.import.xml.extensions.cgmesControlAreas': string;
|
|
65
|
-
'iidm.import.xml.extensions.
|
|
65
|
+
'iidm.import.xml.extensions.cgmesBoundaryLineBoundaryNode': string;
|
|
66
66
|
'iidm.import.xml.extensions.cgmesLineBoundaryNode': string;
|
|
67
67
|
'iidm.import.xml.extensions.cgmesMetadataModels': string;
|
|
68
68
|
'iidm.import.xml.extensions.cgmesSshMetadata': string;
|
|
@@ -57,7 +57,7 @@ const importParamsEn = {
|
|
|
57
57
|
"iidm.import.xml.extensions.busbarSectionPosition": "Busbar section position",
|
|
58
58
|
"iidm.import.xml.extensions.branchStatus": "Branch status (IIDM version < 1.12)",
|
|
59
59
|
"iidm.import.xml.extensions.cgmesControlAreas": "Cgmes control areas",
|
|
60
|
-
"iidm.import.xml.extensions.
|
|
60
|
+
"iidm.import.xml.extensions.cgmesBoundaryLineBoundaryNode": "Cgmes boundary line boundary node",
|
|
61
61
|
"iidm.import.xml.extensions.cgmesLineBoundaryNode": "Cgmes line boundary node",
|
|
62
62
|
"iidm.import.xml.extensions.cgmesMetadataModels": "Cgmes models metadata",
|
|
63
63
|
"iidm.import.xml.extensions.cgmesSshMetadata": "Cgmes ssh metadata",
|
|
@@ -194,6 +194,32 @@ export declare const networkModificationsEn: {
|
|
|
194
194
|
addNewAssignment: string;
|
|
195
195
|
changeTypeConfirmation: string;
|
|
196
196
|
Or: string;
|
|
197
|
+
NormalizedPercentage: string;
|
|
198
|
+
On: string;
|
|
199
|
+
Off: string;
|
|
200
|
+
FrequencyRegulation: string;
|
|
201
|
+
Droop: string;
|
|
202
|
+
activePowerControlTooltip: string;
|
|
203
|
+
NoModification: string;
|
|
204
|
+
ReactiveLimitsKindMinMax: string;
|
|
205
|
+
ReactiveLimitsKindCurve: string;
|
|
206
|
+
MinimumReactivePower: string;
|
|
207
|
+
MaximumReactivePower: string;
|
|
208
|
+
ReactiveCapabilityCurveCreationErrorMissingPoints: string;
|
|
209
|
+
ReactiveCapabilityCurveCreationErrorPInvalid: string;
|
|
210
|
+
ReactiveCapabilityCurveCreationErrorPOutOfRange: string;
|
|
211
|
+
ReactiveCapabilityCurveCreationErrorQminPQmaxPIncoherence: string;
|
|
212
|
+
ReactiveCapabilityCurveCreationErrorMissingNegativeP: string;
|
|
213
|
+
ReactiveCapabilityCurveCreationErrorMissingPositiveP: string;
|
|
214
|
+
P: string;
|
|
215
|
+
QminP: string;
|
|
216
|
+
QmaxP: string;
|
|
217
|
+
QminPmax: string;
|
|
218
|
+
QmaxPmax: string;
|
|
219
|
+
Pmin: string;
|
|
220
|
+
QminPmin: string;
|
|
221
|
+
QmaxPmin: string;
|
|
222
|
+
Pmax: string;
|
|
197
223
|
SubstationTab: string;
|
|
198
224
|
ConnectivityTab: string;
|
|
199
225
|
CharacteristicsTab: string;
|