@gridsuite/commons-ui 0.203.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/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/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +1 -1
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.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 +2 -2
- 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/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/parameters.d.ts +1 -1
- package/dist/translations/fr/parameters.js +1 -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
|
@@ -26,7 +26,7 @@ const EXPERT_FILTER_EQUIPMENTS = {
|
|
|
26
26
|
[EquipmentType.SHUNT_COMPENSATOR]: ALL_EQUIPMENTS[EquipmentType.SHUNT_COMPENSATOR],
|
|
27
27
|
[EquipmentType.STATIC_VAR_COMPENSATOR]: ALL_EQUIPMENTS[EquipmentType.STATIC_VAR_COMPENSATOR],
|
|
28
28
|
[EquipmentType.HVDC_LINE]: ALL_EQUIPMENTS[EquipmentType.HVDC_LINE],
|
|
29
|
-
[EquipmentType.
|
|
29
|
+
[EquipmentType.BOUNDARY_LINE]: ALL_EQUIPMENTS[EquipmentType.BOUNDARY_LINE]
|
|
30
30
|
};
|
|
31
31
|
const ENERGY_SOURCE_OPTIONS = [
|
|
32
32
|
{ name: "HYDRO", label: "Hydro" },
|
|
@@ -1413,7 +1413,7 @@ const EXPERT_FILTER_FIELDS = {
|
|
|
1413
1413
|
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1,
|
|
1414
1414
|
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2
|
|
1415
1415
|
],
|
|
1416
|
-
|
|
1416
|
+
BOUNDARY_LINE: [
|
|
1417
1417
|
FIELDS_OPTIONS.ID,
|
|
1418
1418
|
FIELDS_OPTIONS.NAME,
|
|
1419
1419
|
FIELDS_OPTIONS.COUNTRY,
|
|
@@ -3,5 +3,5 @@ export type ContingencyListEquipment = {
|
|
|
3
3
|
id: string;
|
|
4
4
|
label: string;
|
|
5
5
|
};
|
|
6
|
-
export declare const CONTINGENCY_LIST_EQUIPMENTS: Record<EquipmentType.BUSBAR_SECTION | 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.
|
|
6
|
+
export declare const CONTINGENCY_LIST_EQUIPMENTS: Record<EquipmentType.BUSBAR_SECTION | 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.BOUNDARY_LINE, ContingencyListEquipment>;
|
|
7
7
|
export declare const FILTER_EQUIPMENTS: typeof ALL_EQUIPMENTS;
|
|
@@ -44,9 +44,9 @@ const CONTINGENCY_LIST_EQUIPMENTS = {
|
|
|
44
44
|
id: "HVDC_LINE",
|
|
45
45
|
label: "HvdcLines"
|
|
46
46
|
},
|
|
47
|
-
|
|
48
|
-
id: "
|
|
49
|
-
label: "
|
|
47
|
+
BOUNDARY_LINE: {
|
|
48
|
+
id: "BOUNDARY_LINE",
|
|
49
|
+
label: "BoundaryLines"
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
52
|
const FILTER_EQUIPMENTS = {
|
|
@@ -18,7 +18,7 @@ const EQUIPMENT_TYPE_ORDER = [
|
|
|
18
18
|
EquipmentType.BATTERY,
|
|
19
19
|
EquipmentType.LOAD,
|
|
20
20
|
EquipmentType.SHUNT_COMPENSATOR,
|
|
21
|
-
EquipmentType.
|
|
21
|
+
EquipmentType.BOUNDARY_LINE,
|
|
22
22
|
EquipmentType.STATIC_VAR_COMPENSATOR
|
|
23
23
|
];
|
|
24
24
|
const byFilterDeletionFormSchema = yup.object().shape({
|
|
@@ -54,7 +54,7 @@ const EQUIPMENT_TYPE_ORDER = [
|
|
|
54
54
|
EquipmentType.BATTERY,
|
|
55
55
|
EquipmentType.LOAD,
|
|
56
56
|
EquipmentType.SHUNT_COMPENSATOR,
|
|
57
|
-
EquipmentType.
|
|
57
|
+
EquipmentType.BOUNDARY_LINE,
|
|
58
58
|
EquipmentType.STATIC_VAR_COMPENSATOR
|
|
59
59
|
];
|
|
60
60
|
function EquipmentDeletionForm({
|
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
|
@@ -255,7 +255,7 @@ import { ProblemDetailError } from "./utils/types/ProblemDetailError.js";
|
|
|
255
255
|
import { NetworkTimeoutError } from "./utils/types/NetworkTimeoutError.js";
|
|
256
256
|
import { ElementType } from "./utils/types/elementType.js";
|
|
257
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";
|
|
258
|
-
import { Battery,
|
|
258
|
+
import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./utils/types/equipmentTypes.js";
|
|
259
259
|
import { AnnouncementSeverity, ArrayAction } from "./utils/types/types.js";
|
|
260
260
|
import { MODIFICATION_TYPES, ModificationType } from "./utils/types/modificationType.js";
|
|
261
261
|
import { FieldType } from "./utils/types/fieldType.js";
|
|
@@ -428,6 +428,7 @@ export {
|
|
|
428
428
|
BooleanInput,
|
|
429
429
|
BooleanNullableCellRenderer,
|
|
430
430
|
BottomRightButtons,
|
|
431
|
+
BoundaryLine,
|
|
431
432
|
BranchActiveReactivePowerMeasurementsForm,
|
|
432
433
|
BranchConnectivityForm,
|
|
433
434
|
BuildStatus,
|
|
@@ -514,7 +515,6 @@ export {
|
|
|
514
515
|
DROP_INDICATOR_BOTTOM,
|
|
515
516
|
DROP_INDICATOR_TOP,
|
|
516
517
|
DUPLICATED_PROPS_ERROR,
|
|
517
|
-
DanglingLine,
|
|
518
518
|
DataType,
|
|
519
519
|
DefaultCellRenderer,
|
|
520
520
|
DepthBox,
|
|
@@ -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",
|
|
@@ -319,7 +319,7 @@ export declare const parametersEn: {
|
|
|
319
319
|
DynamicSimulationSolverMinimalAcceptableStep: string;
|
|
320
320
|
DynamicSimulationNetworkCapacitorNoReclosingDelay: string;
|
|
321
321
|
DynamicSimulationNetworkReactanceNoReclosingDelay: string;
|
|
322
|
-
|
|
322
|
+
DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: string;
|
|
323
323
|
DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: string;
|
|
324
324
|
DynamicSimulationNetworkLoadTp: string;
|
|
325
325
|
DynamicSimulationNetworkLoadTq: string;
|
|
@@ -324,7 +324,7 @@ const parametersEn = {
|
|
|
324
324
|
// Network tab
|
|
325
325
|
DynamicSimulationNetworkCapacitorNoReclosingDelay: "Time lag before reclosing in s (capacitor)",
|
|
326
326
|
DynamicSimulationNetworkReactanceNoReclosingDelay: "Time lag before reclosing in s (reactance)",
|
|
327
|
-
|
|
327
|
+
DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: "Time threshold over which current limiter should not operate in s",
|
|
328
328
|
DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: "Line current limit Max Time Operation",
|
|
329
329
|
DynamicSimulationNetworkLoadTp: "Time constant for integration of active power setpoint change, in s",
|
|
330
330
|
DynamicSimulationNetworkLoadTq: "Time constant for integration of reactive power setpoint change, in s",
|
|
@@ -22,7 +22,7 @@ export declare const equipmentShortFr: {
|
|
|
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 equipmentShortFr = {
|
|
|
16
16
|
"equipment_short/busbarSection": "SJB",
|
|
17
17
|
"equipment_short/bus": "Noeud",
|
|
18
18
|
"equipment_short/switch": "OC",
|
|
19
|
-
"equipment_short/
|
|
19
|
+
"equipment_short/boundaryLine": "Frontières",
|
|
20
20
|
"equipment_short/hvdcLineLcc": "HVDC LCC",
|
|
21
21
|
"equipment_short/hvdcLineVsc": "HVDC VSC"
|
|
22
22
|
};
|
|
@@ -18,7 +18,7 @@ const equipmentTagFr = {
|
|
|
18
18
|
"equipment_tag/busbarSection": "SJB",
|
|
19
19
|
"equipment_tag/bus": "NOEUD",
|
|
20
20
|
"equipment_tag/switch": "SWITCH",
|
|
21
|
-
"equipment_tag/
|
|
21
|
+
"equipment_tag/boundaryLine": "FRONTIERE"
|
|
22
22
|
};
|
|
23
23
|
export {
|
|
24
24
|
equipmentTagFr
|
|
@@ -23,7 +23,7 @@ export declare const equipmentTypesFr: {
|
|
|
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 equipmentTypesFr = {
|
|
|
17
17
|
HVDC_CONVERTER_STATION: "Station de conversion HVDC",
|
|
18
18
|
VSC_CONVERTER_STATION: "Station de conversion VSC",
|
|
19
19
|
LCC_CONVERTER_STATION: "Station de conversion LCC",
|
|
20
|
-
|
|
20
|
+
BOUNDARY_LINE: "Ligne frontière",
|
|
21
21
|
TIE_LINE: "Ligne d'interconnexion",
|
|
22
22
|
DISCONNECTOR: "Sectionneur",
|
|
23
23
|
BREAKER: "Disjoncteur"
|
|
@@ -65,7 +65,7 @@ export declare const exportParamsFr: {
|
|
|
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 exportParamsFr = {
|
|
|
59
59
|
"iidm.export.xml.extensions.busbarSectionPosition": "Position des SJBs",
|
|
60
60
|
"iidm.export.xml.extensions.branchStatus": "Statut de consignation et de déclenchement (Version IIDM < 1.12)",
|
|
61
61
|
"iidm.export.xml.extensions.cgmesControlAreas": "Cgmes - zone géographique",
|
|
62
|
-
"iidm.export.xml.extensions.
|
|
62
|
+
"iidm.export.xml.extensions.cgmesBoundaryLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
|
|
63
63
|
"iidm.export.xml.extensions.cgmesLineBoundaryNode": "Code EIC des lignes frontières (ligne complète)",
|
|
64
64
|
"iidm.export.xml.extensions.cgmesMetadataModels": "Cgmes - Métadonnées des modèles",
|
|
65
65
|
"iidm.export.xml.extensions.cgmesSshMetadata": "Cgmes - ssh métadonnées",
|
|
@@ -62,7 +62,7 @@ export declare const importParamsFr: {
|
|
|
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 importParamsFr = {
|
|
|
57
57
|
"iidm.import.xml.extensions.busbarSectionPosition": "Position des SJBs",
|
|
58
58
|
"iidm.import.xml.extensions.branchStatus": "Statut de consignation et de déclenchement (Version IIDM < 1.12)",
|
|
59
59
|
"iidm.import.xml.extensions.cgmesControlAreas": "Cgmes - zone géographique",
|
|
60
|
-
"iidm.import.xml.extensions.
|
|
60
|
+
"iidm.import.xml.extensions.cgmesBoundaryLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
|
|
61
61
|
"iidm.import.xml.extensions.cgmesLineBoundaryNode": "Code EIC des lignes frontières (ligne complète)",
|
|
62
62
|
"iidm.import.xml.extensions.cgmesMetadataModels": "Cgmes - Métadonnées des modèles",
|
|
63
63
|
"iidm.import.xml.extensions.cgmesSshMetadata": "Cgmes - ssh métadonnées",
|
|
@@ -319,7 +319,7 @@ export declare const parametersFr: {
|
|
|
319
319
|
DynamicSimulationSolverMinimalAcceptableStep: string;
|
|
320
320
|
DynamicSimulationNetworkCapacitorNoReclosingDelay: string;
|
|
321
321
|
DynamicSimulationNetworkReactanceNoReclosingDelay: string;
|
|
322
|
-
|
|
322
|
+
DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: string;
|
|
323
323
|
DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: string;
|
|
324
324
|
DynamicSimulationNetworkLoadTp: string;
|
|
325
325
|
DynamicSimulationNetworkLoadTq: string;
|
|
@@ -323,7 +323,7 @@ const parametersFr = {
|
|
|
323
323
|
// Network tab
|
|
324
324
|
DynamicSimulationNetworkCapacitorNoReclosingDelay: "Temporisation avant la possibilité de réenclencher le MCS en s (capacité)",
|
|
325
325
|
DynamicSimulationNetworkReactanceNoReclosingDelay: "Temporisation avant la possibilité de réenclencher le MCS en s (réactance)",
|
|
326
|
-
|
|
326
|
+
DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: "Seuil de temps au delà duquel les limiteurs de courant ne doivent pas agir en s",
|
|
327
327
|
DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: "Seuil de temps au-delà duquel les limiteurs de courant ne doivent pas agir en s",
|
|
328
328
|
DynamicSimulationNetworkLoadTp: "Constante de temps pour intégration du changement de consigne active, en s",
|
|
329
329
|
DynamicSimulationNetworkLoadTq: "Constante de temps pour intégration du changement de consigne réactive, en s",
|
package/dist/utils/index.js
CHANGED
|
@@ -22,7 +22,7 @@ import { ProblemDetailError } from "./types/ProblemDetailError.js";
|
|
|
22
22
|
import { NetworkTimeoutError } from "./types/NetworkTimeoutError.js";
|
|
23
23
|
import { ElementType } from "./types/elementType.js";
|
|
24
24
|
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 "./types/equipmentType.js";
|
|
25
|
-
import { Battery,
|
|
25
|
+
import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./types/equipmentTypes.js";
|
|
26
26
|
import { AnnouncementSeverity, ArrayAction } from "./types/types.js";
|
|
27
27
|
import { MODIFICATION_TYPES, ModificationType } from "./types/modificationType.js";
|
|
28
28
|
import { FieldType } from "./types/fieldType.js";
|
|
@@ -45,6 +45,7 @@ export {
|
|
|
45
45
|
ArrayAction,
|
|
46
46
|
BASE_EQUIPMENTS,
|
|
47
47
|
Battery,
|
|
48
|
+
BoundaryLine,
|
|
48
49
|
BusBar,
|
|
49
50
|
COMMON_APP_NAME,
|
|
50
51
|
COMMON_CONFIG_PARAMS_NAMES,
|
|
@@ -54,7 +55,6 @@ export {
|
|
|
54
55
|
DARK_THEME,
|
|
55
56
|
DEGREE,
|
|
56
57
|
DUPLICATED_PROPS_ERROR,
|
|
57
|
-
DanglingLine,
|
|
58
58
|
DistributionType,
|
|
59
59
|
EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE,
|
|
60
60
|
EQUIPMENTS_WITH_ONE_SUBSTATION,
|
|
@@ -17,7 +17,7 @@ const equipmentTypesForPredefinedPropertiesMapper = (type) => {
|
|
|
17
17
|
case "VOLTAGE_LEVEL":
|
|
18
18
|
return "voltageLevel";
|
|
19
19
|
case "BUSBAR_SECTION":
|
|
20
|
-
case "
|
|
20
|
+
case "BOUNDARY_LINE":
|
|
21
21
|
case "HVDC_LINE":
|
|
22
22
|
case "LCC_CONVERTER_STATION":
|
|
23
23
|
case "THREE_WINDINGS_TRANSFORMER":
|
|
@@ -58,7 +58,7 @@ export declare enum EquipmentType {
|
|
|
58
58
|
HVDC_CONVERTER_STATION = "HVDC_CONVERTER_STATION",
|
|
59
59
|
VSC_CONVERTER_STATION = "VSC_CONVERTER_STATION",
|
|
60
60
|
LCC_CONVERTER_STATION = "LCC_CONVERTER_STATION",
|
|
61
|
-
|
|
61
|
+
BOUNDARY_LINE = "BOUNDARY_LINE",
|
|
62
62
|
TIE_LINE = "TIE_LINE",
|
|
63
63
|
DISCONNECTOR = "DISCONNECTOR",
|
|
64
64
|
BREAKER = "BREAKER"
|
|
@@ -52,7 +52,7 @@ var EquipmentType = /* @__PURE__ */ ((EquipmentType2) => {
|
|
|
52
52
|
EquipmentType2["HVDC_CONVERTER_STATION"] = "HVDC_CONVERTER_STATION";
|
|
53
53
|
EquipmentType2["VSC_CONVERTER_STATION"] = "VSC_CONVERTER_STATION";
|
|
54
54
|
EquipmentType2["LCC_CONVERTER_STATION"] = "LCC_CONVERTER_STATION";
|
|
55
|
-
EquipmentType2["
|
|
55
|
+
EquipmentType2["BOUNDARY_LINE"] = "BOUNDARY_LINE";
|
|
56
56
|
EquipmentType2["TIE_LINE"] = "TIE_LINE";
|
|
57
57
|
EquipmentType2["DISCONNECTOR"] = "DISCONNECTOR";
|
|
58
58
|
EquipmentType2["BREAKER"] = "BREAKER";
|
|
@@ -75,7 +75,7 @@ const EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE = [
|
|
|
75
75
|
const EQUIPMENTS_WITH_TWO_NOMINAL_VOLTAGES = [
|
|
76
76
|
"LINE",
|
|
77
77
|
"TIE_LINE",
|
|
78
|
-
"
|
|
78
|
+
"BOUNDARY_LINE",
|
|
79
79
|
"HVDC_LINE",
|
|
80
80
|
"TWO_WINDINGS_TRANSFORMER"
|
|
81
81
|
/* TWO_WINDINGS_TRANSFORMER */
|
|
@@ -227,13 +227,13 @@ const ALL_EQUIPMENTS = {
|
|
|
227
227
|
shortLabel: "equipment_short/svc"
|
|
228
228
|
},
|
|
229
229
|
[
|
|
230
|
-
"
|
|
231
|
-
/*
|
|
230
|
+
"BOUNDARY_LINE"
|
|
231
|
+
/* BOUNDARY_LINE */
|
|
232
232
|
]: {
|
|
233
|
-
id: "
|
|
234
|
-
label: "
|
|
235
|
-
tagLabel: "equipment_tag/
|
|
236
|
-
shortLabel: "equipment_short/
|
|
233
|
+
id: "BOUNDARY_LINE",
|
|
234
|
+
label: "BoundaryLines",
|
|
235
|
+
tagLabel: "equipment_tag/boundaryLine",
|
|
236
|
+
shortLabel: "equipment_short/boundaryLine"
|
|
237
237
|
},
|
|
238
238
|
[
|
|
239
239
|
"BUSBAR_SECTION"
|
|
@@ -389,11 +389,11 @@ const BASE_EQUIPMENTS = {
|
|
|
389
389
|
/* STATIC_VAR_COMPENSATOR */
|
|
390
390
|
],
|
|
391
391
|
[
|
|
392
|
-
"
|
|
393
|
-
/*
|
|
392
|
+
"BOUNDARY_LINE"
|
|
393
|
+
/* BOUNDARY_LINE */
|
|
394
394
|
]: ALL_EQUIPMENTS[
|
|
395
|
-
"
|
|
396
|
-
/*
|
|
395
|
+
"BOUNDARY_LINE"
|
|
396
|
+
/* BOUNDARY_LINE */
|
|
397
397
|
]
|
|
398
398
|
};
|
|
399
399
|
const SEARCH_EQUIPMENTS = {
|
|
@@ -6,7 +6,7 @@ const SVC = {
|
|
|
6
6
|
label: "StaticVarCompensators",
|
|
7
7
|
type: "STATIC_VAR_COMPENSATOR"
|
|
8
8
|
};
|
|
9
|
-
const
|
|
9
|
+
const BoundaryLine = { label: "BoundaryLines", type: "BOUNDARY_LINE" };
|
|
10
10
|
const LCC = {
|
|
11
11
|
label: "LccConverterStations",
|
|
12
12
|
type: "LCC_CONVERTER_STATION"
|
|
@@ -39,8 +39,8 @@ const Substation = {
|
|
|
39
39
|
};
|
|
40
40
|
export {
|
|
41
41
|
Battery,
|
|
42
|
+
BoundaryLine,
|
|
42
43
|
BusBar,
|
|
43
|
-
DanglingLine,
|
|
44
44
|
Generator,
|
|
45
45
|
Hvdc,
|
|
46
46
|
LCC,
|
|
@@ -3,7 +3,7 @@ import { ProblemDetailError } from "./ProblemDetailError.js";
|
|
|
3
3
|
import { NetworkTimeoutError } from "./NetworkTimeoutError.js";
|
|
4
4
|
import { ElementType } from "./elementType.js";
|
|
5
5
|
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 "./equipmentType.js";
|
|
6
|
-
import { Battery,
|
|
6
|
+
import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./equipmentTypes.js";
|
|
7
7
|
import { AnnouncementSeverity, ArrayAction } from "./types.js";
|
|
8
8
|
import { MODIFICATION_TYPES, ModificationType } from "./modificationType.js";
|
|
9
9
|
import { FieldType } from "./fieldType.js";
|
|
@@ -18,11 +18,11 @@ export {
|
|
|
18
18
|
ArrayAction,
|
|
19
19
|
BASE_EQUIPMENTS,
|
|
20
20
|
Battery,
|
|
21
|
+
BoundaryLine,
|
|
21
22
|
BusBar,
|
|
22
23
|
CONNECTION_DIRECTIONS,
|
|
23
24
|
CalculationType,
|
|
24
25
|
CustomError,
|
|
25
|
-
DanglingLine,
|
|
26
26
|
DistributionType,
|
|
27
27
|
EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE,
|
|
28
28
|
EQUIPMENTS_WITH_ONE_SUBSTATION,
|