@gridsuite/commons-ui 0.268.0 → 0.269.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/composite/agGridTable/BottomTableButtons.js +1 -1
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +1 -1
- package/dist/features/parameters/loadflow/load-flow-provider-specific-parameters.js +10 -1
- package/dist/features/topBar/TopBar.js +2 -2
- package/dist/index.js +4 -0
- package/dist/translations/en/businessErrorsEn.d.ts +14 -0
- package/dist/translations/en/businessErrorsEn.js +15 -1
- package/dist/translations/en/index.d.ts +1 -0
- package/dist/translations/en/index.js +2 -0
- package/dist/translations/en/specificParameters.d.ts +96 -0
- package/dist/translations/en/specificParameters.js +95 -0
- package/dist/translations/fr/businessErrorsFr.d.ts +14 -0
- package/dist/translations/fr/businessErrorsFr.js +15 -1
- package/dist/translations/fr/index.d.ts +1 -0
- package/dist/translations/fr/index.js +2 -0
- package/dist/translations/fr/specificParameters.d.ts +96 -0
- package/dist/translations/fr/specificParameters.js +95 -0
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ function BottomTableButtons({
|
|
|
39
39
|
) }),
|
|
40
40
|
csvProps?.extraButtons && /* @__PURE__ */ jsx(Grid, { children: csvProps.extraButtons }),
|
|
41
41
|
/* @__PURE__ */ jsxs(Grid, { sx: { marginLeft: "auto" }, children: [
|
|
42
|
-
/* @__PURE__ */ jsx(InnerColoredButton, { onClick: handleAddRow, "aria-label": "Add row", children: /* @__PURE__ */ jsx(ControlPoint, {}) }),
|
|
42
|
+
/* @__PURE__ */ jsx(InnerColoredButton, { onClick: handleAddRow, "aria-label": "Add row", children: /* @__PURE__ */ jsx(ControlPoint, { "data-testid": "ControlPointIcon" }) }),
|
|
43
43
|
/* @__PURE__ */ jsx(
|
|
44
44
|
InnerColoredButton,
|
|
45
45
|
{
|
|
@@ -230,7 +230,7 @@ function DirectoryItemsInput({
|
|
|
230
230
|
}
|
|
231
231
|
),
|
|
232
232
|
renderValue: (directoryElements) => /* @__PURE__ */ jsxs(Box, { sx: styles.renderDirectoryElements, children: [
|
|
233
|
-
/* @__PURE__ */ jsx(CustomTooltip, { title: intl.formatMessage({ id: titleId }), children: /* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(IconButton, { size: "small", disabled: disable, children: /* @__PURE__ */ jsx(DriveFolderUpload, {}) }) }) }),
|
|
233
|
+
/* @__PURE__ */ jsx(CustomTooltip, { title: intl.formatMessage({ id: titleId }), children: /* @__PURE__ */ jsx("span", { children: /* @__PURE__ */ jsx(IconButton, { size: "small", disabled: disable, children: /* @__PURE__ */ jsx(DriveFolderUpload, { "data-testid": "DriveFolderUploadIcon" }) }) }) }),
|
|
234
234
|
directoryElements?.map((item, index) => {
|
|
235
235
|
const elementName = watchedElements?.[index]?.[NAME] ?? getValues(`${name}.${index}.${NAME}`) ?? item?.[NAME];
|
|
236
236
|
const equipmentTypeShortLabel = getEquipmentTypeShortLabel(
|
|
@@ -37,7 +37,16 @@ import "../common/contingency-table/contingency-table.js";
|
|
|
37
37
|
import "../common/contingency-table/columns-definitions.js";
|
|
38
38
|
import "@hookform/resolvers/yup";
|
|
39
39
|
function LoadFlowProviderSpecificParameters({ specificParameters }) {
|
|
40
|
-
return /* @__PURE__ */ jsx(Fragment, { children: specificParameters?.map((item) => /* @__PURE__ */ createElement(
|
|
40
|
+
return /* @__PURE__ */ jsx(Fragment, { children: specificParameters?.map((item) => /* @__PURE__ */ createElement(
|
|
41
|
+
ParameterField,
|
|
42
|
+
{
|
|
43
|
+
id: SPECIFIC_PARAMETERS,
|
|
44
|
+
...item,
|
|
45
|
+
label: item.name,
|
|
46
|
+
description: `${item.description} (${item.name})`,
|
|
47
|
+
key: item.name
|
|
48
|
+
}
|
|
49
|
+
)) });
|
|
41
50
|
}
|
|
42
51
|
const LoadFlowProviderSpecificParameters$1 = memo(LoadFlowProviderSpecificParameters);
|
|
43
52
|
export {
|
|
@@ -381,7 +381,7 @@ function TopBar({
|
|
|
381
381
|
value: LIGHT_THEME,
|
|
382
382
|
"aria-label": LIGHT_THEME,
|
|
383
383
|
sx: styles.toggleButton,
|
|
384
|
-
children: /* @__PURE__ */ jsx(WbSunny, { fontSize: "small" })
|
|
384
|
+
children: /* @__PURE__ */ jsx(WbSunny, { fontSize: "small", "data-testid": "WbSunnyIcon" })
|
|
385
385
|
}
|
|
386
386
|
),
|
|
387
387
|
/* @__PURE__ */ jsx(
|
|
@@ -390,7 +390,7 @@ function TopBar({
|
|
|
390
390
|
value: DARK_THEME,
|
|
391
391
|
"aria-label": DARK_THEME,
|
|
392
392
|
sx: styles.toggleButton,
|
|
393
|
-
children: /* @__PURE__ */ jsx(Brightness3, { fontSize: "small" })
|
|
393
|
+
children: /* @__PURE__ */ jsx(Brightness3, { fontSize: "small", "data-testid": "Brightness3Icon" })
|
|
394
394
|
}
|
|
395
395
|
)
|
|
396
396
|
]
|
package/dist/index.js
CHANGED
|
@@ -512,6 +512,7 @@ import { exportParamsEn } from "./translations/en/external/exportParamsEn.js";
|
|
|
512
512
|
import { importParamsEn } from "./translations/en/external/importParamsEn.js";
|
|
513
513
|
import { componentsEn } from "./translations/en/componentsEn.js";
|
|
514
514
|
import { parametersEn } from "./translations/en/parameters.js";
|
|
515
|
+
import { specificParametersEn } from "./translations/en/specificParameters.js";
|
|
515
516
|
import { useUniqueNameValidationEn } from "./translations/en/use-unique-name-validation-en.js";
|
|
516
517
|
import { processConfigEn } from "./translations/en/processConfigEn.js";
|
|
517
518
|
import { genericValidationEn } from "./translations/en/generic-validationEn.js";
|
|
@@ -544,6 +545,7 @@ import { exportParamsFr } from "./translations/fr/external/exportParamsFr.js";
|
|
|
544
545
|
import { importParamsFr } from "./translations/fr/external/importParamsFr.js";
|
|
545
546
|
import { componentsFr } from "./translations/fr/componentsFr.js";
|
|
546
547
|
import { parametersFr } from "./translations/fr/parameters.js";
|
|
548
|
+
import { specificParametersFr } from "./translations/fr/specificParameters.js";
|
|
547
549
|
import { useUniqueNameValidationFr } from "./translations/fr/use-unique-name-validation-fr.js";
|
|
548
550
|
import { processConfigFr } from "./translations/fr/processConfigFr.js";
|
|
549
551
|
import { genericValidationFr } from "./translations/fr/generic-validationFr.js";
|
|
@@ -1713,6 +1715,8 @@ export {
|
|
|
1713
1715
|
shuntCompensatorModificationFormToDto,
|
|
1714
1716
|
snackWithFallback,
|
|
1715
1717
|
sortSeverityList,
|
|
1718
|
+
specificParametersEn,
|
|
1719
|
+
specificParametersFr,
|
|
1716
1720
|
standardTextField,
|
|
1717
1721
|
staticVarCompensatorCreationEmptyFormData,
|
|
1718
1722
|
staticVarCompensatorCreationFormSchema,
|
|
@@ -84,4 +84,18 @@ export declare const businessErrorsEn: {
|
|
|
84
84
|
'dynamicMarginCalculation.providerNotFound': string;
|
|
85
85
|
'dynamicMarginCalculation.loadFilterNotFound': string;
|
|
86
86
|
'monitor.server.differentProcessConfigType': string;
|
|
87
|
+
'network.notFound': string;
|
|
88
|
+
'network.variant.notFound': string;
|
|
89
|
+
'modification.container.notFound': string;
|
|
90
|
+
'modification.container.badType': string;
|
|
91
|
+
'modification.container.type.notFound': string;
|
|
92
|
+
'modification.notFound': string;
|
|
93
|
+
'modifications.notFound': string;
|
|
94
|
+
'modification.infos.error': string;
|
|
95
|
+
'modification.deletion.argument.error': string;
|
|
96
|
+
'modification.duplication.argument.error': string;
|
|
97
|
+
'modification.with_group.deletion.forbidden': string;
|
|
98
|
+
'modification.description.missing': string;
|
|
99
|
+
'modification.composite.move.cycle.error': string;
|
|
100
|
+
'modification.voltageLevel.attachmentLine.missing': string;
|
|
87
101
|
};
|
|
@@ -77,7 +77,21 @@ const businessErrorsEn = {
|
|
|
77
77
|
"diagram.noVoltageLevelFound": "No voltage level found for this network area diagram",
|
|
78
78
|
"dynamicMarginCalculation.providerNotFound": "Dynamic margin calculation provider not found.",
|
|
79
79
|
"dynamicMarginCalculation.loadFilterNotFound": "Some load filters do not exist: {filterUuids}",
|
|
80
|
-
"monitor.server.differentProcessConfigType": "Cannot compare 2 different process config types : {processConfigEntity1Type} vs {processConfigEntity2Type}"
|
|
80
|
+
"monitor.server.differentProcessConfigType": "Cannot compare 2 different process config types : {processConfigEntity1Type} vs {processConfigEntity2Type}",
|
|
81
|
+
"network.notFound": "Network {networkId} not found",
|
|
82
|
+
"network.variant.notFound": "Variant {variantId} for network {networkId} not found",
|
|
83
|
+
"modification.container.notFound": "Modification container {containerId} of type {containerType} not found",
|
|
84
|
+
"modification.container.badType": "Modification container type of {containerId} is invalid : actual type {containerType} -> expected type {expectedContainerType}",
|
|
85
|
+
"modification.container.type.notFound": "Modification container type of {modificationId} not found",
|
|
86
|
+
"modification.notFound": "Modification {modificationId} not found",
|
|
87
|
+
"modifications.notFound": "Some of these modifications {ids} were not found",
|
|
88
|
+
"modification.infos.error": "Modification infos error : {errorMessage}",
|
|
89
|
+
"modification.deletion.argument.error": "Modification deletion : invalid arguments (need to specify the group id or give a list of modifications ids)",
|
|
90
|
+
"modification.duplication.argument.error": "Modification duplication : invalid arguments (need to specify the group id or give a list of modifications ids)",
|
|
91
|
+
"modification.with_group.deletion.forbidden": "Unauthorized deletion: modification {modificationId} is owned by group {groupId}",
|
|
92
|
+
"modification.description.missing": "Missing network modification description",
|
|
93
|
+
"modification.composite.move.cycle.error": "Moving composite modification {compositeModificationId} into {modificationId} would create a cycle",
|
|
94
|
+
"modification.voltageLevel.attachmentLine.missing": "Line attach for voltage level {voltageLevelId} is missing"
|
|
81
95
|
};
|
|
82
96
|
export {
|
|
83
97
|
businessErrorsEn
|
|
@@ -33,6 +33,7 @@ export * from './external/exportParamsEn';
|
|
|
33
33
|
export * from './external/importParamsEn';
|
|
34
34
|
export * from './componentsEn';
|
|
35
35
|
export * from './parameters';
|
|
36
|
+
export * from './specificParameters';
|
|
36
37
|
export * from './use-unique-name-validation-en';
|
|
37
38
|
export * from './processConfigEn';
|
|
38
39
|
export * from './generic-validationEn';
|
|
@@ -27,6 +27,7 @@ import { exportParamsEn } from "./external/exportParamsEn.js";
|
|
|
27
27
|
import { importParamsEn } from "./external/importParamsEn.js";
|
|
28
28
|
import { componentsEn } from "./componentsEn.js";
|
|
29
29
|
import { parametersEn } from "./parameters.js";
|
|
30
|
+
import { specificParametersEn } from "./specificParameters.js";
|
|
30
31
|
import { useUniqueNameValidationEn } from "./use-unique-name-validation-en.js";
|
|
31
32
|
import { processConfigEn } from "./processConfigEn.js";
|
|
32
33
|
import { genericValidationEn } from "./generic-validationEn.js";
|
|
@@ -59,6 +60,7 @@ export {
|
|
|
59
60
|
parametersEn,
|
|
60
61
|
processConfigEn,
|
|
61
62
|
reportViewerEn,
|
|
63
|
+
specificParametersEn,
|
|
62
64
|
tableEn,
|
|
63
65
|
topBarEn,
|
|
64
66
|
treeviewFinderEn,
|
|
@@ -0,0 +1,96 @@
|
|
|
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 declare const specificParametersEn: {
|
|
8
|
+
slackBusSelectionMode: string;
|
|
9
|
+
slackBusesIds: string;
|
|
10
|
+
lowImpedanceBranchMode: string;
|
|
11
|
+
voltageRemoteControl: string;
|
|
12
|
+
slackDistributionFailureBehavior: string;
|
|
13
|
+
loadPowerFactorConstant: string;
|
|
14
|
+
plausibleActivePowerLimit: string;
|
|
15
|
+
slackBusPMaxMismatch: string;
|
|
16
|
+
voltagePerReactivePowerControl: string;
|
|
17
|
+
generatorReactivePowerRemoteControl: string;
|
|
18
|
+
transformerReactivePowerControl: string;
|
|
19
|
+
maxNewtonRaphsonIterations: string;
|
|
20
|
+
maxOuterLoopIterations: string;
|
|
21
|
+
newtonRaphsonConvEpsPerEq: string;
|
|
22
|
+
voltageInitModeOverride: string;
|
|
23
|
+
transformerVoltageControlMode: string;
|
|
24
|
+
shuntVoltageControlMode: string;
|
|
25
|
+
minPlausibleTargetVoltage: string;
|
|
26
|
+
maxPlausibleTargetVoltage: string;
|
|
27
|
+
minRealisticVoltage: string;
|
|
28
|
+
maxRealisticVoltage: string;
|
|
29
|
+
minNominalVoltageRealisticVoltageCheck: string;
|
|
30
|
+
reactiveRangeCheckMode: string;
|
|
31
|
+
lowImpedanceThreshold: string;
|
|
32
|
+
networkCacheEnabled: string;
|
|
33
|
+
svcVoltageMonitoring: string;
|
|
34
|
+
stateVectorScalingMode: string;
|
|
35
|
+
maxSlackBusCount: string;
|
|
36
|
+
incrementalTransformerRatioTapControlOuterLoopMaxTapShift: string;
|
|
37
|
+
secondaryVoltageControl: string;
|
|
38
|
+
reactiveLimitsMaxPqPvSwitch: string;
|
|
39
|
+
newtonRaphsonStoppingCriteriaType: string;
|
|
40
|
+
maxActivePowerMismatch: string;
|
|
41
|
+
maxReactivePowerMismatch: string;
|
|
42
|
+
maxVoltageMismatch: string;
|
|
43
|
+
maxAngleMismatch: string;
|
|
44
|
+
maxRatioMismatch: string;
|
|
45
|
+
maxSusceptanceMismatch: string;
|
|
46
|
+
phaseShifterControlMode: string;
|
|
47
|
+
alwaysUpdateNetwork: string;
|
|
48
|
+
mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: string;
|
|
49
|
+
reportedFeatures: string;
|
|
50
|
+
slackBusCountryFilter: string;
|
|
51
|
+
actionableSwitchesIds: string;
|
|
52
|
+
actionableTransformersIds: string;
|
|
53
|
+
asymmetrical: string;
|
|
54
|
+
minNominalVoltageTargetVoltageCheck: string;
|
|
55
|
+
reactivePowerDispatchMode: string;
|
|
56
|
+
useActiveLimits: string;
|
|
57
|
+
disableVoltageControlOfGeneratorsOutsideActivePowerLimits: string;
|
|
58
|
+
lineSearchStateVectorScalingMaxIteration: string;
|
|
59
|
+
lineSearchStateVectorScalingStepFold: string;
|
|
60
|
+
maxVoltageChangeStateVectorScalingMaxDv: string;
|
|
61
|
+
maxVoltageChangeStateVectorScalingMaxDphi: string;
|
|
62
|
+
linePerUnitMode: string;
|
|
63
|
+
useLoadModel: string;
|
|
64
|
+
dcApproximationType: string;
|
|
65
|
+
simulateAutomationSystems: string;
|
|
66
|
+
acSolverType: string;
|
|
67
|
+
maxNewtonKrylovIterations: string;
|
|
68
|
+
newtonKrylovLineSearch: string;
|
|
69
|
+
referenceBusSelectionMode: string;
|
|
70
|
+
writeReferenceTerminals: string;
|
|
71
|
+
voltageTargetPriorities: string;
|
|
72
|
+
transformerVoltageControlUseInitialTapPosition: string;
|
|
73
|
+
generatorVoltageControlMinNominalVoltage: string;
|
|
74
|
+
fictitiousGeneratorVoltageControlCheckMode: string;
|
|
75
|
+
areaInterchangeControl: string;
|
|
76
|
+
areaInterchangeControlAreaType: string;
|
|
77
|
+
areaInterchangePMaxMismatch: string;
|
|
78
|
+
voltageRemoteControlRobustMode: string;
|
|
79
|
+
forceTargetQInReactiveLimits: string;
|
|
80
|
+
disableInconsistentVoltageControls: string;
|
|
81
|
+
extrapolateReactiveLimits: string;
|
|
82
|
+
startWithFrozenACEmulation: string;
|
|
83
|
+
generatorsWithZeroMwTargetAreNotStarted: string;
|
|
84
|
+
incrementalShuntControlOuterLoopMaxSectionShift: string;
|
|
85
|
+
fixVoltageTargets: string;
|
|
86
|
+
acDcNetwork: string;
|
|
87
|
+
allowNonLinearShuntZeroSection: string;
|
|
88
|
+
svcRegulationOn: string;
|
|
89
|
+
dsoVoltageLevel: string;
|
|
90
|
+
tfoVoltageLevel: string;
|
|
91
|
+
startTime: string;
|
|
92
|
+
stopTime: string;
|
|
93
|
+
precision: string;
|
|
94
|
+
timeStep: string;
|
|
95
|
+
mergeLoads: string;
|
|
96
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
const specificParametersEn = {
|
|
2
|
+
// open LoadFlow
|
|
3
|
+
slackBusSelectionMode: "Slack bus selection mode",
|
|
4
|
+
slackBusesIds: "Slack bus IDs",
|
|
5
|
+
lowImpedanceBranchMode: "Low impedance branch mode",
|
|
6
|
+
voltageRemoteControl: "Voltage remote control",
|
|
7
|
+
slackDistributionFailureBehavior: "Slack distribution failure behavior",
|
|
8
|
+
loadPowerFactorConstant: "Constant load power factor",
|
|
9
|
+
plausibleActivePowerLimit: "Plausible active power limit",
|
|
10
|
+
slackBusPMaxMismatch: "Max power mismatch",
|
|
11
|
+
voltagePerReactivePowerControl: "SVC use regulation slope",
|
|
12
|
+
generatorReactivePowerRemoteControl: "Use remote reactive power control",
|
|
13
|
+
transformerReactivePowerControl: "Transformer reactive power control",
|
|
14
|
+
maxNewtonRaphsonIterations: "Maximum Newton-Raphson iterations",
|
|
15
|
+
maxOuterLoopIterations: "Maximum outer loop iterations",
|
|
16
|
+
newtonRaphsonConvEpsPerEq: "Newton-Raphson convergence criteria",
|
|
17
|
+
voltageInitModeOverride: "Voltage initialization mode override",
|
|
18
|
+
transformerVoltageControlMode: "Transformer voltage control mode",
|
|
19
|
+
shuntVoltageControlMode: "Shunt voltage control mode",
|
|
20
|
+
minPlausibleTargetVoltage: "Minimum plausible target voltage",
|
|
21
|
+
maxPlausibleTargetVoltage: "Maximum plausible target voltage",
|
|
22
|
+
minRealisticVoltage: "Minimum realistic voltage",
|
|
23
|
+
maxRealisticVoltage: "Maximum realistic voltage",
|
|
24
|
+
minNominalVoltageRealisticVoltageCheck: "Minimum nominal voltage for realism check",
|
|
25
|
+
reactiveRangeCheckMode: "Reactive range check mode",
|
|
26
|
+
lowImpedanceThreshold: "Low impedance threshold",
|
|
27
|
+
networkCacheEnabled: "Network cache enabled",
|
|
28
|
+
svcVoltageMonitoring: "SVC voltage monitoring",
|
|
29
|
+
stateVectorScalingMode: "State vector scaling mode",
|
|
30
|
+
maxSlackBusCount: "Maximum slack bus count",
|
|
31
|
+
incrementalTransformerRatioTapControlOuterLoopMaxTapShift: "Maximum tap shift per outer loop",
|
|
32
|
+
secondaryVoltageControl: "Secondary voltage control",
|
|
33
|
+
reactiveLimitsMaxPqPvSwitch: "Maximum PV-PQ switches",
|
|
34
|
+
newtonRaphsonStoppingCriteriaType: "Newton-Raphson stopping criteria type",
|
|
35
|
+
maxActivePowerMismatch: "Maximum active power mismatch",
|
|
36
|
+
maxReactivePowerMismatch: "Maximum reactive power mismatch",
|
|
37
|
+
maxVoltageMismatch: "Maximum voltage mismatch",
|
|
38
|
+
maxAngleMismatch: "Maximum angle mismatch",
|
|
39
|
+
maxRatioMismatch: "Maximum ratio mismatch",
|
|
40
|
+
maxSusceptanceMismatch: "Maximum susceptance mismatch",
|
|
41
|
+
phaseShifterControlMode: "Phase shifter simulation mode",
|
|
42
|
+
alwaysUpdateNetwork: "Update network after divergence",
|
|
43
|
+
mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: "Max nominal voltage percentile",
|
|
44
|
+
reportedFeatures: "Additional reported features",
|
|
45
|
+
slackBusCountryFilter: "Slack bus country filter",
|
|
46
|
+
actionableSwitchesIds: "Actionable switch IDs",
|
|
47
|
+
actionableTransformersIds: "Actionable transformer IDs",
|
|
48
|
+
asymmetrical: "Asymmetrical calculation",
|
|
49
|
+
minNominalVoltageTargetVoltageCheck: "Minimum nominal voltage for target check",
|
|
50
|
+
reactivePowerDispatchMode: "Reactive power dispatch mode",
|
|
51
|
+
useActiveLimits: "Use active power limits",
|
|
52
|
+
disableVoltageControlOfGeneratorsOutsideActivePowerLimits: "Disable voltage control outside active limits",
|
|
53
|
+
lineSearchStateVectorScalingMaxIteration: "Line search max iterations",
|
|
54
|
+
lineSearchStateVectorScalingStepFold: "Line search step fold",
|
|
55
|
+
maxVoltageChangeStateVectorScalingMaxDv: "Maximum voltage magnitude change",
|
|
56
|
+
maxVoltageChangeStateVectorScalingMaxDphi: "Maximum voltage angle change",
|
|
57
|
+
linePerUnitMode: "Line per-unit mode",
|
|
58
|
+
useLoadModel: "Use voltage-dependent load model",
|
|
59
|
+
dcApproximationType: "DC approximation type",
|
|
60
|
+
simulateAutomationSystems: "Automation systems simulation",
|
|
61
|
+
acSolverType: "AC solver type",
|
|
62
|
+
maxNewtonKrylovIterations: "Newton-Krylov maximum iterations",
|
|
63
|
+
newtonKrylovLineSearch: "Newton-Krylov line search",
|
|
64
|
+
referenceBusSelectionMode: "Reference bus selection mode",
|
|
65
|
+
writeReferenceTerminals: "Write reference terminals",
|
|
66
|
+
voltageTargetPriorities: "Voltage target priorities",
|
|
67
|
+
transformerVoltageControlUseInitialTapPosition: "Preserve initial relative tap position",
|
|
68
|
+
generatorVoltageControlMinNominalVoltage: "Minimum nominal voltage for generator voltage control",
|
|
69
|
+
fictitiousGeneratorVoltageControlCheckMode: "Fictitious generator voltage control checks",
|
|
70
|
+
areaInterchangeControl: "Area interchange control over slack",
|
|
71
|
+
areaInterchangeControlAreaType: "Area type for interchange control",
|
|
72
|
+
areaInterchangePMaxMismatch: "Area interchange mismatch limit",
|
|
73
|
+
voltageRemoteControlRobustMode: "Robust remote voltage control",
|
|
74
|
+
forceTargetQInReactiveLimits: "Force reactive target within limits",
|
|
75
|
+
disableInconsistentVoltageControls: "Disable inconsistent voltage controls",
|
|
76
|
+
extrapolateReactiveLimits: "Extrapolate reactive limits",
|
|
77
|
+
startWithFrozenACEmulation: "Start with frozen AC emulation",
|
|
78
|
+
generatorsWithZeroMwTargetAreNotStarted: "Zero-target generators disabled",
|
|
79
|
+
incrementalShuntControlOuterLoopMaxSectionShift: "Maximum shunt section shift",
|
|
80
|
+
fixVoltageTargets: "Auto-correct voltage targets",
|
|
81
|
+
acDcNetwork: "Simultaneous AC/DC load flow",
|
|
82
|
+
allowNonLinearShuntZeroSection: "Allow implicit zero section for non-linear shunts",
|
|
83
|
+
// Dyna Flow
|
|
84
|
+
svcRegulationOn: "SVC voltage regulation",
|
|
85
|
+
dsoVoltageLevel: "Minimum load voltage level",
|
|
86
|
+
tfoVoltageLevel: "Generator transformer voltage threshold",
|
|
87
|
+
startTime: "Simulation start time",
|
|
88
|
+
stopTime: "Simulation stop time",
|
|
89
|
+
precision: "Numerical precision",
|
|
90
|
+
timeStep: "Maximum solver time step (s)",
|
|
91
|
+
mergeLoads: "Merge loads on same bus"
|
|
92
|
+
};
|
|
93
|
+
export {
|
|
94
|
+
specificParametersEn
|
|
95
|
+
};
|
|
@@ -84,4 +84,18 @@ export declare const businessErrorsFr: {
|
|
|
84
84
|
'dynamicMarginCalculation.providerNotFound': string;
|
|
85
85
|
'dynamicMarginCalculation.loadFilterNotFound': string;
|
|
86
86
|
'monitor.server.differentProcessConfigType': string;
|
|
87
|
+
'network.notFound': string;
|
|
88
|
+
'network.variant.notFound': string;
|
|
89
|
+
'modification.container.notFound': string;
|
|
90
|
+
'modification.container.badType': string;
|
|
91
|
+
'modification.container.type.notFound': string;
|
|
92
|
+
'modification.notFound': string;
|
|
93
|
+
'modifications.notFound': string;
|
|
94
|
+
'modification.infos.error': string;
|
|
95
|
+
'modification.deletion.argument.error': string;
|
|
96
|
+
'modification.duplication.argument.error': string;
|
|
97
|
+
'modification.with_group.deletion.forbidden': string;
|
|
98
|
+
'modification.description.missing': string;
|
|
99
|
+
'modification.composite.move.cycle.error': string;
|
|
100
|
+
'modification.voltageLevel.attachmentLine.missing': string;
|
|
87
101
|
};
|
|
@@ -77,7 +77,21 @@ const businessErrorsFr = {
|
|
|
77
77
|
"diagram.noVoltageLevelFound": "Aucun poste trouvé pour cette image nodale de zone",
|
|
78
78
|
"dynamicMarginCalculation.providerNotFound": "Simulateur du calcul de marge dynamique non trouvé.",
|
|
79
79
|
"dynamicMarginCalculation.loadFilterNotFound": "Certains filtres de consommations n'existent pas : {filterUuids}",
|
|
80
|
-
"monitor.server.differentProcessConfigType": "Impossible de comparer 2 configurations de processus de type différent : {processConfigEntity1Type} vs {processConfigEntity2Type}"
|
|
80
|
+
"monitor.server.differentProcessConfigType": "Impossible de comparer 2 configurations de processus de type différent : {processConfigEntity1Type} vs {processConfigEntity2Type}",
|
|
81
|
+
"network.notFound": "Réseau {networkId} non trouvé",
|
|
82
|
+
"network.variant.notFound": "Variante {variantId} pour le réseau {networkId} non trouvé",
|
|
83
|
+
"modification.container.notFound": "Le container de modification {containerId} de type {containerType} est introuvable",
|
|
84
|
+
"modification.container.badType": "Le type du container {containerId} est invalide : type actuel {} -> type attendu {expectedContainerType}",
|
|
85
|
+
"modification.container.type.notFound": "Le type de container pour la modification {modificationId} est introuvable",
|
|
86
|
+
"modification.notFound": "La modification {modificationId} est introuvable",
|
|
87
|
+
"modifications.notFound": "Certaines modifications parmi celles ci {ids} n'ont pas été trouvée",
|
|
88
|
+
"modification.infos.error": "Infos de modification erronées : {errorMessage}",
|
|
89
|
+
"modification.deletion.argument.error": "Modification suppression : arguments invalides (besoin d'un id de groupe ou d'une liste de uuids de modifications)",
|
|
90
|
+
"modification.duplication.argument.error": "Modification duplication : arguments invalides (besoin d'un id de groupe ou d'une liste de uuids de modifications)",
|
|
91
|
+
"modification.with_group.deletion.forbidden": "Suppression non autorisée : la modification {modificationId} appartient au groupe {groupId}",
|
|
92
|
+
"modification.description.missing": "La description de la modification réseau est manquante",
|
|
93
|
+
"modification.composite.move.cycle.error": "Le déplacement de la modification composite {compositeModificationId} dans {modificationId} va créer un cycle",
|
|
94
|
+
"modification.voltageLevel.attachmentLine.missing": "La ligne de piquage pour le poste {voltageLevelId} est manquante"
|
|
81
95
|
};
|
|
82
96
|
export {
|
|
83
97
|
businessErrorsFr
|
|
@@ -33,6 +33,7 @@ export * from './external/exportParamsFr';
|
|
|
33
33
|
export * from './external/importParamsFr';
|
|
34
34
|
export * from './componentsFr';
|
|
35
35
|
export * from './parameters';
|
|
36
|
+
export * from './specificParameters';
|
|
36
37
|
export * from './use-unique-name-validation-fr';
|
|
37
38
|
export * from './processConfigFr';
|
|
38
39
|
export * from './generic-validationFr';
|
|
@@ -27,6 +27,7 @@ import { exportParamsFr } from "./external/exportParamsFr.js";
|
|
|
27
27
|
import { importParamsFr } from "./external/importParamsFr.js";
|
|
28
28
|
import { componentsFr } from "./componentsFr.js";
|
|
29
29
|
import { parametersFr } from "./parameters.js";
|
|
30
|
+
import { specificParametersFr } from "./specificParameters.js";
|
|
30
31
|
import { useUniqueNameValidationFr } from "./use-unique-name-validation-fr.js";
|
|
31
32
|
import { processConfigFr } from "./processConfigFr.js";
|
|
32
33
|
import { genericValidationFr } from "./generic-validationFr.js";
|
|
@@ -59,6 +60,7 @@ export {
|
|
|
59
60
|
parametersFr,
|
|
60
61
|
processConfigFr,
|
|
61
62
|
reportViewerFr,
|
|
63
|
+
specificParametersFr,
|
|
62
64
|
tableFr,
|
|
63
65
|
topBarFr,
|
|
64
66
|
treeviewFinderFr,
|
|
@@ -0,0 +1,96 @@
|
|
|
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 declare const specificParametersFr: {
|
|
8
|
+
slackBusSelectionMode: string;
|
|
9
|
+
slackBusesIds: string;
|
|
10
|
+
lowImpedanceBranchMode: string;
|
|
11
|
+
voltageRemoteControl: string;
|
|
12
|
+
slackDistributionFailureBehavior: string;
|
|
13
|
+
loadPowerFactorConstant: string;
|
|
14
|
+
plausibleActivePowerLimit: string;
|
|
15
|
+
slackBusPMaxMismatch: string;
|
|
16
|
+
voltagePerReactivePowerControl: string;
|
|
17
|
+
generatorReactivePowerRemoteControl: string;
|
|
18
|
+
transformerReactivePowerControl: string;
|
|
19
|
+
maxNewtonRaphsonIterations: string;
|
|
20
|
+
maxOuterLoopIterations: string;
|
|
21
|
+
newtonRaphsonConvEpsPerEq: string;
|
|
22
|
+
voltageInitModeOverride: string;
|
|
23
|
+
transformerVoltageControlMode: string;
|
|
24
|
+
shuntVoltageControlMode: string;
|
|
25
|
+
minPlausibleTargetVoltage: string;
|
|
26
|
+
maxPlausibleTargetVoltage: string;
|
|
27
|
+
minRealisticVoltage: string;
|
|
28
|
+
maxRealisticVoltage: string;
|
|
29
|
+
minNominalVoltageRealisticVoltageCheck: string;
|
|
30
|
+
reactiveRangeCheckMode: string;
|
|
31
|
+
lowImpedanceThreshold: string;
|
|
32
|
+
networkCacheEnabled: string;
|
|
33
|
+
svcVoltageMonitoring: string;
|
|
34
|
+
stateVectorScalingMode: string;
|
|
35
|
+
maxSlackBusCount: string;
|
|
36
|
+
incrementalTransformerRatioTapControlOuterLoopMaxTapShift: string;
|
|
37
|
+
secondaryVoltageControl: string;
|
|
38
|
+
reactiveLimitsMaxPqPvSwitch: string;
|
|
39
|
+
newtonRaphsonStoppingCriteriaType: string;
|
|
40
|
+
maxActivePowerMismatch: string;
|
|
41
|
+
maxReactivePowerMismatch: string;
|
|
42
|
+
maxVoltageMismatch: string;
|
|
43
|
+
maxAngleMismatch: string;
|
|
44
|
+
maxRatioMismatch: string;
|
|
45
|
+
maxSusceptanceMismatch: string;
|
|
46
|
+
phaseShifterControlMode: string;
|
|
47
|
+
alwaysUpdateNetwork: string;
|
|
48
|
+
mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: string;
|
|
49
|
+
reportedFeatures: string;
|
|
50
|
+
slackBusCountryFilter: string;
|
|
51
|
+
actionableSwitchesIds: string;
|
|
52
|
+
actionableTransformersIds: string;
|
|
53
|
+
asymmetrical: string;
|
|
54
|
+
minNominalVoltageTargetVoltageCheck: string;
|
|
55
|
+
reactivePowerDispatchMode: string;
|
|
56
|
+
useActiveLimits: string;
|
|
57
|
+
disableVoltageControlOfGeneratorsOutsideActivePowerLimits: string;
|
|
58
|
+
lineSearchStateVectorScalingMaxIteration: string;
|
|
59
|
+
lineSearchStateVectorScalingStepFold: string;
|
|
60
|
+
maxVoltageChangeStateVectorScalingMaxDv: string;
|
|
61
|
+
maxVoltageChangeStateVectorScalingMaxDphi: string;
|
|
62
|
+
linePerUnitMode: string;
|
|
63
|
+
useLoadModel: string;
|
|
64
|
+
dcApproximationType: string;
|
|
65
|
+
simulateAutomationSystems: string;
|
|
66
|
+
acSolverType: string;
|
|
67
|
+
maxNewtonKrylovIterations: string;
|
|
68
|
+
newtonKrylovLineSearch: string;
|
|
69
|
+
referenceBusSelectionMode: string;
|
|
70
|
+
writeReferenceTerminals: string;
|
|
71
|
+
voltageTargetPriorities: string;
|
|
72
|
+
transformerVoltageControlUseInitialTapPosition: string;
|
|
73
|
+
generatorVoltageControlMinNominalVoltage: string;
|
|
74
|
+
fictitiousGeneratorVoltageControlCheckMode: string;
|
|
75
|
+
areaInterchangeControl: string;
|
|
76
|
+
areaInterchangeControlAreaType: string;
|
|
77
|
+
areaInterchangePMaxMismatch: string;
|
|
78
|
+
voltageRemoteControlRobustMode: string;
|
|
79
|
+
forceTargetQInReactiveLimits: string;
|
|
80
|
+
disableInconsistentVoltageControls: string;
|
|
81
|
+
extrapolateReactiveLimits: string;
|
|
82
|
+
startWithFrozenACEmulation: string;
|
|
83
|
+
generatorsWithZeroMwTargetAreNotStarted: string;
|
|
84
|
+
incrementalShuntControlOuterLoopMaxSectionShift: string;
|
|
85
|
+
fixVoltageTargets: string;
|
|
86
|
+
acDcNetwork: string;
|
|
87
|
+
allowNonLinearShuntZeroSection: string;
|
|
88
|
+
svcRegulationOn: string;
|
|
89
|
+
dsoVoltageLevel: string;
|
|
90
|
+
tfoVoltageLevel: string;
|
|
91
|
+
startTime: string;
|
|
92
|
+
stopTime: string;
|
|
93
|
+
precision: string;
|
|
94
|
+
timeStep: string;
|
|
95
|
+
mergeLoads: string;
|
|
96
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
const specificParametersFr = {
|
|
2
|
+
// Open LoadFlow
|
|
3
|
+
slackBusSelectionMode: "Mode de sélection du nœud bilan",
|
|
4
|
+
slackBusesIds: "Identifiants des nœuds bilan",
|
|
5
|
+
lowImpedanceBranchMode: "Gestion des branches à faible impédance",
|
|
6
|
+
voltageRemoteControl: "Contrôle distant de tension",
|
|
7
|
+
slackDistributionFailureBehavior: "Comportement en cas d'échec de la compensation de puissance active",
|
|
8
|
+
loadPowerFactorConstant: "Facteur de puissance des charges constant",
|
|
9
|
+
plausibleActivePowerLimit: "Limite plausible de puissance active",
|
|
10
|
+
slackBusPMaxMismatch: "Déséquilibre maximal au nœud bilan",
|
|
11
|
+
voltagePerReactivePowerControl: "Utiliser la pente des CSPR",
|
|
12
|
+
generatorReactivePowerRemoteControl: "Contrôle distant de puissance réactive",
|
|
13
|
+
transformerReactivePowerControl: "Contrôle de puissance réactive des transformateurs",
|
|
14
|
+
maxNewtonRaphsonIterations: "Nombre maximal d'itérations Newton-Raphson",
|
|
15
|
+
maxOuterLoopIterations: "Nombre maximal d'itérations de boucle externe",
|
|
16
|
+
newtonRaphsonConvEpsPerEq: "Critère de convergence Newton-Raphson",
|
|
17
|
+
voltageInitModeOverride: "Forçage du mode d'initialisation de tension",
|
|
18
|
+
transformerVoltageControlMode: "Mode de contrôle de tension des transformateurs",
|
|
19
|
+
shuntVoltageControlMode: "Mode de contrôle de tension des moyens de compensation statique",
|
|
20
|
+
minPlausibleTargetVoltage: "Tension de consigne minimale plausible",
|
|
21
|
+
maxPlausibleTargetVoltage: "Tension de consigne maximale plausible",
|
|
22
|
+
minRealisticVoltage: "Tension minimale réaliste",
|
|
23
|
+
maxRealisticVoltage: "Tension maximale réaliste",
|
|
24
|
+
minNominalVoltageRealisticVoltageCheck: "Tension nominale minimale pour le contrôle de réalisme des tensions",
|
|
25
|
+
reactiveRangeCheckMode: "Mode de vérification de plage réactive",
|
|
26
|
+
lowImpedanceThreshold: "Seuil de faible impédance",
|
|
27
|
+
networkCacheEnabled: "Cache réseau activé",
|
|
28
|
+
svcVoltageMonitoring: "Surveillance de la tension par l'automate des CSPR",
|
|
29
|
+
stateVectorScalingMode: "Mode de mise à l'échelle du vecteur d'état",
|
|
30
|
+
maxSlackBusCount: "Nombre maximal de nœuds bilan",
|
|
31
|
+
incrementalTransformerRatioTapControlOuterLoopMaxTapShift: "Décalage maximal de prise par boucle externe",
|
|
32
|
+
secondaryVoltageControl: "Réglage secondaire de tension",
|
|
33
|
+
reactiveLimitsMaxPqPvSwitch: "Nombre maximal de changements PV-PQ",
|
|
34
|
+
newtonRaphsonStoppingCriteriaType: "Type de critère d'arrêt Newton-Raphson",
|
|
35
|
+
maxActivePowerMismatch: "Écart maximal de puissance active",
|
|
36
|
+
maxReactivePowerMismatch: "Écart maximal de puissance réactive",
|
|
37
|
+
maxVoltageMismatch: "Écart maximal de tension",
|
|
38
|
+
maxAngleMismatch: "Écart maximal d'angle",
|
|
39
|
+
maxRatioMismatch: "Écart maximal de rapport",
|
|
40
|
+
maxSusceptanceMismatch: "Écart maximal de susceptance",
|
|
41
|
+
phaseShifterControlMode: "Mode de simulation des déphaseurs",
|
|
42
|
+
alwaysUpdateNetwork: "Mettre à jour le réseau après divergence",
|
|
43
|
+
mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: "Percentile maximal de tension nominale",
|
|
44
|
+
reportedFeatures: "Fonctionnalités supplémentaires du rapport",
|
|
45
|
+
slackBusCountryFilter: "Filtre pays pour les nœuds bilan",
|
|
46
|
+
actionableSwitchesIds: "Identifiants des interrupteurs pilotables",
|
|
47
|
+
actionableTransformersIds: "Identifiants des transformateurs pilotables",
|
|
48
|
+
asymmetrical: "Calcul asymétrique",
|
|
49
|
+
minNominalVoltageTargetVoltageCheck: "Tension nominale minimale pour le contrôle des consignes",
|
|
50
|
+
reactivePowerDispatchMode: "Mode de répartition de puissance réactive",
|
|
51
|
+
useActiveLimits: "Utiliser les limites de puissance active",
|
|
52
|
+
disableVoltageControlOfGeneratorsOutsideActivePowerLimits: "Désactiver le contrôle de tension des éléments hors de leurs limites actives",
|
|
53
|
+
lineSearchStateVectorScalingMaxIteration: "Nombre maximal d'itérations de recherche linéaire",
|
|
54
|
+
lineSearchStateVectorScalingStepFold: "Facteur de réduction du pas de recherche linéaire",
|
|
55
|
+
maxVoltageChangeStateVectorScalingMaxDv: "Variation maximale d'amplitude de tension",
|
|
56
|
+
maxVoltageChangeStateVectorScalingMaxDphi: "Variation maximale d'angle de tension",
|
|
57
|
+
linePerUnitMode: "Mode per-unit des branches",
|
|
58
|
+
useLoadModel: "Utiliser le modèle de charge dépendant de la tension",
|
|
59
|
+
dcApproximationType: "Type d'approximation DC",
|
|
60
|
+
simulateAutomationSystems: "Simulation des systèmes d'automates",
|
|
61
|
+
acSolverType: "Type de solveur AC",
|
|
62
|
+
maxNewtonKrylovIterations: "Nombre maximal d'itérations Newton-Krylov",
|
|
63
|
+
newtonKrylovLineSearch: "Recherche linéaire Newton-Krylov",
|
|
64
|
+
referenceBusSelectionMode: "Mode de sélection du nœud bilan",
|
|
65
|
+
writeReferenceTerminals: "Écrire les terminaux de référence",
|
|
66
|
+
voltageTargetPriorities: "Priorités des consignes de tension",
|
|
67
|
+
transformerVoltageControlUseInitialTapPosition: "Préserver la position initiale ou relative de prise",
|
|
68
|
+
generatorVoltageControlMinNominalVoltage: "Tension nominale minimale pour le contrôle de tension des générateurs",
|
|
69
|
+
fictitiousGeneratorVoltageControlCheckMode: "Contrôles de tension des générateurs fictifs",
|
|
70
|
+
areaInterchangeControl: "Equilibre avec les échanges de zone",
|
|
71
|
+
areaInterchangeControlAreaType: "Type de zone pour l'équilibrage avec les échanges",
|
|
72
|
+
areaInterchangePMaxMismatch: "Limite d'écart d'échange entre zones",
|
|
73
|
+
voltageRemoteControlRobustMode: "Mode robuste du réglage distant de tension",
|
|
74
|
+
forceTargetQInReactiveLimits: "Forcer la consigne réactive dans les limites",
|
|
75
|
+
disableInconsistentVoltageControls: "Désactiver les contrôles de tension incohérents",
|
|
76
|
+
extrapolateReactiveLimits: "Extrapoler les limites réactives",
|
|
77
|
+
startWithFrozenACEmulation: "Démarrer avec l'émulation AC figée",
|
|
78
|
+
generatorsWithZeroMwTargetAreNotStarted: "Générateurs à cible nulle désactivés",
|
|
79
|
+
incrementalShuntControlOuterLoopMaxSectionShift: "Décalage maximal de section de shunt",
|
|
80
|
+
fixVoltageTargets: "Correction automatique des consignes de tension",
|
|
81
|
+
acDcNetwork: "Calcul de charge AC/DC simultané",
|
|
82
|
+
allowNonLinearShuntZeroSection: "Autoriser une section nulle implicite pour les shunts non linéaires",
|
|
83
|
+
// Dyna Flow
|
|
84
|
+
svcRegulationOn: "Régulation de tension par les CSPR",
|
|
85
|
+
dsoVoltageLevel: "Niveau de tension minimal des charges",
|
|
86
|
+
tfoVoltageLevel: "Seuil de tension des transformateurs de groupe",
|
|
87
|
+
startTime: "Moment de début de simulation",
|
|
88
|
+
stopTime: "Moment de fin de simulation",
|
|
89
|
+
precision: "Précision numérique",
|
|
90
|
+
timeStep: "Pas de temps maximal du solveur (s)",
|
|
91
|
+
mergeLoads: "Fusionner les charges d'un même nœud"
|
|
92
|
+
};
|
|
93
|
+
export {
|
|
94
|
+
specificParametersFr
|
|
95
|
+
};
|