@gridsuite/commons-ui 0.267.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.
Files changed (109) hide show
  1. package/dist/components/composite/agGridTable/BottomTableButtons.js +1 -1
  2. package/dist/components/composite/grid/grid-section.d.ts +5 -2
  3. package/dist/components/composite/grid/grid-section.js +56 -4
  4. package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +1 -1
  5. package/dist/components/ui/reactHookForm/booleans/BooleanInput.js +1 -1
  6. package/dist/features/common/index.d.ts +7 -0
  7. package/dist/features/common/index.js +4 -0
  8. package/dist/features/common/renderTable-ExportCsv.d.ts +18 -0
  9. package/dist/features/common/renderTable-ExportCsv.js +136 -0
  10. package/dist/features/index.d.ts +5 -0
  11. package/dist/features/index.js +43 -2
  12. package/dist/features/network-modifications/index.d.ts +1 -0
  13. package/dist/features/network-modifications/index.js +33 -1
  14. package/dist/features/network-modifications/static-var-compensator/common/constants.d.ts +20 -0
  15. package/dist/features/network-modifications/static-var-compensator/common/constants.js +9 -0
  16. package/dist/features/network-modifications/static-var-compensator/common/index.d.ts +13 -0
  17. package/dist/features/network-modifications/static-var-compensator/common/index.js +20 -0
  18. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.d.ts +91 -0
  19. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.js +166 -0
  20. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.d.ts +8 -0
  21. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.js +200 -0
  22. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.d.ts +66 -0
  23. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.js +149 -0
  24. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.d.ts +7 -0
  25. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.js +153 -0
  26. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.d.ts +7 -0
  27. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.js +72 -0
  28. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.d.ts +7 -0
  29. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +44 -0
  30. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.d.ts +8 -0
  31. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.js +34 -0
  32. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.d.ts +9 -0
  33. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.js +100 -0
  34. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.d.ts +68 -0
  35. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.js +1 -0
  36. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.d.ts +7 -0
  37. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.js +161 -0
  38. package/dist/features/network-modifications/static-var-compensator/creation/index.d.ts +9 -0
  39. package/dist/features/network-modifications/static-var-compensator/creation/index.js +9 -0
  40. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.d.ts +8 -0
  41. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.js +105 -0
  42. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.d.ts +114 -0
  43. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.js +189 -0
  44. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.d.ts +34 -0
  45. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.js +1 -0
  46. package/dist/features/network-modifications/static-var-compensator/index.d.ts +8 -0
  47. package/dist/features/network-modifications/static-var-compensator/index.js +27 -0
  48. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.d.ts +8 -0
  49. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.js +153 -0
  50. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.d.ts +20 -0
  51. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.js +40 -0
  52. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.d.ts +11 -0
  53. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.js +1 -0
  54. package/dist/features/network-modifications/voltageLevel/coupling-device/index.d.ts +3 -0
  55. package/dist/features/network-modifications/voltageLevel/coupling-device/index.js +9 -0
  56. package/dist/features/network-modifications/voltageLevel/creation/index.js +1 -1
  57. package/dist/features/network-modifications/voltageLevel/index.d.ts +1 -0
  58. package/dist/features/network-modifications/voltageLevel/index.js +8 -1
  59. package/dist/features/network-modifications/voltageLevel/topology/CreateVoltageLevelTopologyForm.js +12 -2
  60. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.types.d.ts +1 -1
  61. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.utils.d.ts +3 -3
  62. package/dist/features/parameters/loadflow/load-flow-provider-specific-parameters.js +10 -1
  63. package/dist/features/results/constants.d.ts +7 -0
  64. package/dist/features/results/constants.js +4 -0
  65. package/dist/features/results/hooks/index.d.ts +7 -0
  66. package/dist/features/results/hooks/index.js +4 -0
  67. package/dist/features/results/hooks/useIntlResultStatusMessages.d.ts +19 -0
  68. package/dist/features/results/hooks/useIntlResultStatusMessages.js +23 -0
  69. package/dist/features/results/loadflow/index.d.ts +8 -0
  70. package/dist/features/results/loadflow/index.js +4 -0
  71. package/dist/features/results/loadflow/limit-violation-result.d.ts +2 -0
  72. package/dist/features/results/loadflow/limit-violation-result.js +134 -0
  73. package/dist/features/results/loadflow/load-flow-result.type.d.ts +29 -0
  74. package/dist/features/results/loadflow/load-flow-result.type.js +1 -0
  75. package/dist/features/results/securityanalysis/index.js +1 -2
  76. package/dist/features/results/securityanalysis/security-analysis-result-nmk.js +2 -1
  77. package/dist/features/results/securityanalysis/utils.d.ts +0 -2
  78. package/dist/features/results/securityanalysis/utils.js +0 -22
  79. package/dist/features/results/utils/index.d.ts +7 -0
  80. package/dist/features/results/utils/index.js +4 -0
  81. package/dist/features/results/utils/no-rows-message.d.ts +2 -0
  82. package/dist/features/results/utils/no-rows-message.js +24 -0
  83. package/dist/features/topBar/TopBar.js +2 -2
  84. package/dist/hooks/index.d.ts +1 -0
  85. package/dist/hooks/index.js +2 -0
  86. package/dist/hooks/useOpenLoaderShortWait.d.ts +18 -0
  87. package/dist/hooks/useOpenLoaderShortWait.js +19 -0
  88. package/dist/index.js +50 -1
  89. package/dist/translations/en/businessErrorsEn.d.ts +14 -0
  90. package/dist/translations/en/businessErrorsEn.js +15 -1
  91. package/dist/translations/en/index.d.ts +1 -0
  92. package/dist/translations/en/index.js +2 -0
  93. package/dist/translations/en/networkModificationsEn.d.ts +28 -0
  94. package/dist/translations/en/networkModificationsEn.js +30 -1
  95. package/dist/translations/en/specificParameters.d.ts +96 -0
  96. package/dist/translations/en/specificParameters.js +95 -0
  97. package/dist/translations/fr/businessErrorsFr.d.ts +14 -0
  98. package/dist/translations/fr/businessErrorsFr.js +15 -1
  99. package/dist/translations/fr/index.d.ts +1 -0
  100. package/dist/translations/fr/index.js +2 -0
  101. package/dist/translations/fr/networkModificationsFr.d.ts +28 -0
  102. package/dist/translations/fr/networkModificationsFr.js +30 -1
  103. package/dist/translations/fr/specificParameters.d.ts +96 -0
  104. package/dist/translations/fr/specificParameters.js +95 -0
  105. package/dist/utils/constants/fieldConstants.d.ts +19 -1
  106. package/dist/utils/constants/fieldConstants.js +18 -0
  107. package/dist/utils/index.d.ts +1 -0
  108. package/dist/utils/index.js +2 -0
  109. package/package.json +1 -1
@@ -143,6 +143,7 @@ export declare const networkModificationsFr: {
143
143
  Setpoints: string;
144
144
  ActivePowerText: string;
145
145
  ReactivePowerText: string;
146
+ ReactivePowerRegulationText: string;
146
147
  RegulationTypeText: string;
147
148
  QPercentText: string;
148
149
  RegulatingTerminalGenerator: string;
@@ -288,6 +289,30 @@ export declare const networkModificationsFr: {
288
289
  filter: string;
289
290
  G: string;
290
291
  B: string;
292
+ maximumSusceptance: string;
293
+ minSusceptance: string;
294
+ maxQAtVnominal: string;
295
+ minQAtNominalV: string;
296
+ ModeAutomaton: string;
297
+ StandbyAutomaton: string;
298
+ StandbyNotAvailable: string;
299
+ LowVoltageSetpoint: string;
300
+ HighVoltageSetpoint: string;
301
+ LowVoltageThreshold: string;
302
+ HighVoltageThreshold: string;
303
+ AddAutomaton: string;
304
+ CreateStaticVarCompensator: string;
305
+ StaticVarCompensatorCreationError: string;
306
+ StaticVarCompensatorErrorQFixGreaterThanQMax: string;
307
+ StaticVarCompensatorErrorQFixLessThanQMin: string;
308
+ StaticVarCompensatorErrorSFixGreaterThanSMax: string;
309
+ StaticVarCompensatorErrorSFixLessThanSMin: string;
310
+ StaticVarCompensatorConnectivityTab: string;
311
+ StaticVarCompensatorSetPointsAndLimitsTab: string;
312
+ StaticVarCompensatorAutomatonTab: string;
313
+ StaticVarCompensatorAdditionalInfosTab: string;
314
+ b0: string;
315
+ fixQAtNominalV: string;
291
316
  SubstationTab: string;
292
317
  ConnectivityTab: string;
293
318
  CharacteristicsTab: string;
@@ -307,4 +332,7 @@ export declare const networkModificationsFr: {
307
332
  AtLeastOneSectionAdded: string;
308
333
  SectionCount: string;
309
334
  VoltageLevelId: string;
335
+ CreateCouplingDevice: string;
336
+ CouplingDeviceText: string;
337
+ CouplingDeviceBusBarSectionToolTipText: string;
310
338
  };
@@ -137,6 +137,7 @@ const networkModificationsFr = {
137
137
  Setpoints: "Consignes",
138
138
  ActivePowerText: "Puissance active",
139
139
  ReactivePowerText: "Puissance réactive",
140
+ ReactivePowerRegulationText: "Réglage de réactif",
140
141
  RegulationTypeText: "Type de réglage",
141
142
  QPercentText: "Cœfficient de participation",
142
143
  RegulatingTerminalGenerator: "Terminal distant réglé",
@@ -282,6 +283,30 @@ const networkModificationsFr = {
282
283
  filter: "Filtre",
283
284
  G: "Conductance magnétisante",
284
285
  B: "Susceptance magnétisante",
286
+ maximumSusceptance: "Susceptance max",
287
+ minSusceptance: "Susceptance min",
288
+ maxQAtVnominal: "Q max à tension nominale",
289
+ minQAtNominalV: "Q min à tension nominale",
290
+ ModeAutomaton: "Mode",
291
+ StandbyAutomaton: "En veille",
292
+ StandbyNotAvailable: "La mise en veille n'est possible qu'en mode de réglage de tension",
293
+ LowVoltageSetpoint: "U consigne bas",
294
+ HighVoltageSetpoint: "U consigne haut",
295
+ LowVoltageThreshold: "U activation bas",
296
+ HighVoltageThreshold: "U activation haut",
297
+ AddAutomaton: "Ajouter un automate",
298
+ CreateStaticVarCompensator: "Créer un CSPR",
299
+ StaticVarCompensatorCreationError: "Erreur lors de la création d'un cspr",
300
+ StaticVarCompensatorErrorQFixGreaterThanQMax: "La valeur de Q Fixe doit être inférieure à la valeur de Q maximum",
301
+ StaticVarCompensatorErrorQFixLessThanQMin: "La valeur de Q Fixe doit être supérieure à la valeur de Q minimum",
302
+ StaticVarCompensatorErrorSFixGreaterThanSMax: "La valeur de Susceptance Fixe doit être inférieure à la valeur de susceptance maximum",
303
+ StaticVarCompensatorErrorSFixLessThanSMin: "La valeur de Susceptance Fixe doit être supérieure à la valeur de susceptance minimum",
304
+ StaticVarCompensatorConnectivityTab: "Connectivité",
305
+ StaticVarCompensatorSetPointsAndLimitsTab: "Consignes & Limites",
306
+ StaticVarCompensatorAutomatonTab: "Automate",
307
+ StaticVarCompensatorAdditionalInfosTab: "Compléments",
308
+ b0: "Susceptance fixe",
309
+ fixQAtNominalV: "Q fixe",
285
310
  // Tabs
286
311
  SubstationTab: "Site",
287
312
  ConnectivityTab: "Connectivité",
@@ -302,7 +327,11 @@ const networkModificationsFr = {
302
327
  builtNodeTooltipForDiagram: "Diagramme courant prenant en compte toutes les modifications réalisées",
303
328
  AtLeastOneSectionAdded: "Il faut ajouter au moins une section de jeu de barre",
304
329
  SectionCount: "Nombre de sections",
305
- VoltageLevelId: "ID Poste"
330
+ VoltageLevelId: "ID Poste",
331
+ // Voltage level coupling device creation
332
+ CreateCouplingDevice: "Ajouter un couplage ou un omnibus",
333
+ CouplingDeviceText: "Sections de jeu de barre",
334
+ CouplingDeviceBusBarSectionToolTipText: "Si les deux sections de barre sélectionnées ont des numéros de tronçon/section différents la modification crée un omnibus, autrement elle crée un couplage"
306
335
  };
307
336
  export {
308
337
  networkModificationsFr
@@ -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
+ };
@@ -65,7 +65,9 @@ export declare enum FieldConstants {
65
65
  LOADFLOW_PARAMETERS = "loadflowParameters",
66
66
  LOAD_TYPE = "loadType",
67
67
  MARGINAL_COST = "marginalCost",
68
+ MIN_Q_AT_NOMINAL_V = "minQAtNominalV",
68
69
  MAX_Q_AT_NOMINAL_V = "maxQAtNominalV",
70
+ MIN_SUSCEPTANCE = "minSusceptance",
69
71
  MAX_SUSCEPTANCE = "maxSusceptance",
70
72
  MAXIMUM_ACTIVE_POWER = "maximumActivePower",
71
73
  MAXIMUM_SECTION_COUNT = "maximumSectionCount",
@@ -191,5 +193,21 @@ export declare enum FieldConstants {
191
193
  TRANSIENT_REACTANCE = "directTransX",
192
194
  VOLTAGE_REGULATION_TYPE = "voltageRegulationType",
193
195
  VOLTAGE_SET_POINT = "voltageSetpoint",
194
- X = "x"
196
+ X = "x",
197
+ ADD_STAND_BY_AUTOMATON = "addStandbyAutomaton",
198
+ LOW_VOLTAGE_SET_POINT = "lowVoltageSetpoint",
199
+ HIGH_VOLTAGE_SET_POINT = "highVoltageSetpoint",
200
+ LOW_VOLTAGE_THRESHOLD = "lowVoltageThreshold",
201
+ HIGH_VOLTAGE_THRESHOLD = "highVoltageThreshold",
202
+ CHARACTERISTICS_CHOICE_AUTOMATON = "characteristicsChoiceAutomaton",
203
+ MIN_Q_AUTOMATON = "minQAutomaton",
204
+ MAX_Q_AUTOMATON = "maxQAutomaton",
205
+ MIN_S_AUTOMATON = "minSAutomaton",
206
+ MAX_S_AUTOMATON = "maxSAutomaton",
207
+ STAND_BY_AUTOMATON = "StandbyAutomaton",
208
+ AUTOMATON = "automaton",
209
+ SETPOINTS_LIMITS = "setpointsLimits",
210
+ VOLTAGE_REGULATION_MODE = "voltageRegulationMode",
211
+ B0 = "b0",
212
+ Q0 = "q0"
195
213
  }
@@ -59,7 +59,9 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
59
59
  FieldConstants2["LOADFLOW_PARAMETERS"] = "loadflowParameters";
60
60
  FieldConstants2["LOAD_TYPE"] = "loadType";
61
61
  FieldConstants2["MARGINAL_COST"] = "marginalCost";
62
+ FieldConstants2["MIN_Q_AT_NOMINAL_V"] = "minQAtNominalV";
62
63
  FieldConstants2["MAX_Q_AT_NOMINAL_V"] = "maxQAtNominalV";
64
+ FieldConstants2["MIN_SUSCEPTANCE"] = "minSusceptance";
63
65
  FieldConstants2["MAX_SUSCEPTANCE"] = "maxSusceptance";
64
66
  FieldConstants2["MAXIMUM_ACTIVE_POWER"] = "maximumActivePower";
65
67
  FieldConstants2["MAXIMUM_SECTION_COUNT"] = "maximumSectionCount";
@@ -186,6 +188,22 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
186
188
  FieldConstants2["VOLTAGE_REGULATION_TYPE"] = "voltageRegulationType";
187
189
  FieldConstants2["VOLTAGE_SET_POINT"] = "voltageSetpoint";
188
190
  FieldConstants2["X"] = "x";
191
+ FieldConstants2["ADD_STAND_BY_AUTOMATON"] = "addStandbyAutomaton";
192
+ FieldConstants2["LOW_VOLTAGE_SET_POINT"] = "lowVoltageSetpoint";
193
+ FieldConstants2["HIGH_VOLTAGE_SET_POINT"] = "highVoltageSetpoint";
194
+ FieldConstants2["LOW_VOLTAGE_THRESHOLD"] = "lowVoltageThreshold";
195
+ FieldConstants2["HIGH_VOLTAGE_THRESHOLD"] = "highVoltageThreshold";
196
+ FieldConstants2["CHARACTERISTICS_CHOICE_AUTOMATON"] = "characteristicsChoiceAutomaton";
197
+ FieldConstants2["MIN_Q_AUTOMATON"] = "minQAutomaton";
198
+ FieldConstants2["MAX_Q_AUTOMATON"] = "maxQAutomaton";
199
+ FieldConstants2["MIN_S_AUTOMATON"] = "minSAutomaton";
200
+ FieldConstants2["MAX_S_AUTOMATON"] = "maxSAutomaton";
201
+ FieldConstants2["STAND_BY_AUTOMATON"] = "StandbyAutomaton";
202
+ FieldConstants2["AUTOMATON"] = "automaton";
203
+ FieldConstants2["SETPOINTS_LIMITS"] = "setpointsLimits";
204
+ FieldConstants2["VOLTAGE_REGULATION_MODE"] = "voltageRegulationMode";
205
+ FieldConstants2["B0"] = "b0";
206
+ FieldConstants2["Q0"] = "q0";
189
207
  return FieldConstants2;
190
208
  })(FieldConstants || {});
191
209
  export {
@@ -20,3 +20,4 @@ export * from './types';
20
20
  export * from './ts-utils';
21
21
  export * from './validation-functions';
22
22
  export * from './directory-utils';
23
+ export * from './running-status';
@@ -38,6 +38,7 @@ import { ComputingType } from "./types/computing-type.js";
38
38
  import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./ts-utils.js";
39
39
  import { toNumber, validateValueIsANumber } from "./validation-functions.js";
40
40
  import { NO_ITEM_SELECTION_FOR_COPY } from "./directory-utils.js";
41
+ import { RunningStatus } from "./running-status.js";
41
42
  export {
42
43
  ACTIVE_LIMITS_MIN_MAX_INVALID,
43
44
  ALL_EQUIPMENTS,
@@ -136,6 +137,7 @@ export {
136
137
  REAL_PERCENTAGE,
137
138
  ReactivePowerAdornment,
138
139
  ReferenceType,
140
+ RunningStatus,
139
141
  SEARCH_EQUIPMENTS,
140
142
  SECTION_COUNT_MUST_BE_BETWEEN_ZERO_AND_MAXIMUM_SECTION_COUNT,
141
143
  SHORT_CIRCUIT_CURRENT_LIMIT_MUST_BE_GREATER_OR_EQUAL_TO_ZERO,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.267.0",
3
+ "version": "0.269.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",