@enervance/insight-cim-model 0.0.376 → 0.0.377
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/converter/integral7/converter.integral7.js +14 -3
- package/dist/converter/integral7/converter.integral7.js.map +1 -1
- package/dist/converter/integral7/model/interfaces.d.ts +2 -0
- package/dist/converter/integral7/model/interfaces.js.map +1 -1
- package/dist/converter/integral7/sql/integral.sql.js +3 -3
- package/dist/etl/etl-generic/etl-generic.js.map +1 -1
- package/package.json +1 -1
|
@@ -2444,9 +2444,6 @@ class ConverterIntegral7 {
|
|
|
2444
2444
|
const x0 = (0, parser_utils_1.isNumericI7)(i7Data.x0) ? (0, parser_utils_1.convertToNumberI7)(i7Data.x0) : undefined;
|
|
2445
2445
|
const x1 = (0, parser_utils_1.isNumericI7)(i7Data.x1) ? (0, parser_utils_1.convertToNumberI7)(i7Data.x1) : undefined;
|
|
2446
2446
|
const equivalentInjection = new INTEGRALEquivalentInjection_1.INTEGRALEquivalentInjection((0, parser_utils_1.getUUID)(i7Data.guid, this.objectMappingConfig.standardiseUuid), (0, util_create_1.createNotation)([(0, utils_2.getName)(i7Data), '_EI']), i7Data.kurzname);
|
|
2447
|
-
if (equivalentInjection.getUUID() === 'd9d9f3a0-6693-455c-b57b-2e3ffb264002') {
|
|
2448
|
-
console.log();
|
|
2449
|
-
}
|
|
2450
2447
|
/** Export Extended Ward equivalent with voltage regulation */
|
|
2451
2448
|
if (flag_lfl && !flag_ks && usoll && (r_ext !== 0 || x_ext !== 0)) {
|
|
2452
2449
|
//is regulating equivalent equipment
|
|
@@ -4104,6 +4101,13 @@ class ConverterIntegral7 {
|
|
|
4104
4101
|
else {
|
|
4105
4102
|
this.logger.debug(`Längskondensator ${i7Data.id} ${seriesCompensator.mrid} besitzt keinen Anfangsknoten.`);
|
|
4106
4103
|
}
|
|
4104
|
+
/** SvProfile Data */
|
|
4105
|
+
if (i7Data.flakn3p) {
|
|
4106
|
+
this.svProfileZweigData.set(i7Data.flakn3p, {
|
|
4107
|
+
powerFlowResultID: i7Data.flakn3p,
|
|
4108
|
+
terminalUUID: startTerminal === null || startTerminal === void 0 ? void 0 : startTerminal.mrid
|
|
4109
|
+
});
|
|
4110
|
+
}
|
|
4107
4111
|
const target = cimModel.getObject(this.integralID2UUID.get(i7Data.eknoten));
|
|
4108
4112
|
let targetTerminal;
|
|
4109
4113
|
if (target) {
|
|
@@ -4112,6 +4116,13 @@ class ConverterIntegral7 {
|
|
|
4112
4116
|
else {
|
|
4113
4117
|
this.logger.debug(`Längskondensator ${i7Data.id} ${seriesCompensator.mrid} besitzt keinen Zielknoten.`);
|
|
4114
4118
|
}
|
|
4119
|
+
/** SvProfile Data */
|
|
4120
|
+
if (i7Data.flekn3p) {
|
|
4121
|
+
this.svProfileZweigData.set(i7Data.flekn3p, {
|
|
4122
|
+
powerFlowResultID: i7Data.flekn3p,
|
|
4123
|
+
terminalUUID: targetTerminal === null || targetTerminal === void 0 ? void 0 : targetTerminal.mrid
|
|
4124
|
+
});
|
|
4125
|
+
}
|
|
4115
4126
|
const bdf = [];
|
|
4116
4127
|
bdf.push(this.getConnectedBoundaryModel(this.integralID2UUID.get(i7Data.aknoten)));
|
|
4117
4128
|
bdf.push(this.getConnectedBoundaryModel(this.integralID2UUID.get(i7Data.eknoten)));
|