@enervance/insight-cim-model 0.0.343 → 0.0.345
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 +4 -7
- package/dist/converter/integral7/converter.integral7.js.map +1 -1
- package/dist/converter/integral7/dl-convert/executor.js +3 -3
- package/dist/converter/integral7/dl-convert/executor.js.map +1 -1
- package/dist/converter/integral7/model/i7-graph-utils.js +12 -32
- package/dist/converter/integral7/model/i7-graph-utils.js.map +1 -1
- package/dist/converter/integral7/model/integral/Leitung.js +0 -1
- package/dist/converter/integral7/model/integral/Leitung.js.map +1 -1
- package/dist/converter/integral7/utils-cgmes-export.js +0 -1
- package/dist/converter/integral7/utils-cgmes-export.js.map +1 -1
- package/dist/etl/etl-integral7/etl-integral7-acos.js +6 -0
- package/dist/etl/etl-integral7/etl-integral7-acos.js.map +1 -1
- package/dist/model/core/ConnectivityNode.js +9 -2
- package/dist/model/core/ConnectivityNode.js.map +1 -1
- package/dist/model/diagram/DiagramObjectPoint.js +1 -2
- package/dist/model/diagram/DiagramObjectPoint.js.map +1 -1
- package/dist/util/util-create.js +0 -1
- package/dist/util/util-create.js.map +1 -1
- package/dist/utils2/parser.utils.js +1 -1
- package/dist/utils2/parser.utils.js.map +1 -1
- package/package.json +1 -1
|
@@ -609,7 +609,6 @@ class ConverterIntegral7 {
|
|
|
609
609
|
yield this.createSvProfileDataSwitch(cimModel, powerFlowResultID, this.svProfileSwitchData);
|
|
610
610
|
yield this.createSvTapStep(cimModel, integral_sql_1.I7Objects.ERG_LFL_TRAFO2W, powerFlowResultID);
|
|
611
611
|
yield this.createSvTapStep(cimModel, integral_sql_1.I7Objects.ERG_LFL_TRAFO3W, powerFlowResultID);
|
|
612
|
-
console.log();
|
|
613
612
|
}
|
|
614
613
|
/** DL Profile */
|
|
615
614
|
if (!frame.boundary) {
|
|
@@ -1383,9 +1382,6 @@ class ConverterIntegral7 {
|
|
|
1383
1382
|
(_f = connectivityNode === null || connectivityNode === void 0 ? void 0 : connectivityNode.getUUID()) !== null && _f !== void 0 ? _f : ''
|
|
1384
1383
|
].join('');
|
|
1385
1384
|
const uuidBusbarSection = common_utils_1.CommonUtils.generateUUIDv5(cim_class_names_1.ClassNames.BusbarSection, this.configUuid, keyBusbarSection);
|
|
1386
|
-
if (uuidBusbarSection === '9481878c-656c-5b1d-851d-f4743c9766b7') {
|
|
1387
|
-
console.log();
|
|
1388
|
-
}
|
|
1389
1385
|
const busbarSection = new BusbarSection_1.BusbarSection(uuidBusbarSection, i7Data.bezeichner, i7Schaltanlagenabschnitt.kurzname);
|
|
1390
1386
|
busbarSection.externalId = String(i7Data.id);
|
|
1391
1387
|
busbarSection.ipMax = i7Data.limit_ip;
|
|
@@ -5360,9 +5356,6 @@ class ConverterIntegral7 {
|
|
|
5360
5356
|
for (const i7Data of result) {
|
|
5361
5357
|
const sternpunktKnotenMap = new Map();
|
|
5362
5358
|
const uuid = (0, parser_utils_1.getUUID)(i7Data.guid, this.objectMappingConfig.standardiseUuid);
|
|
5363
|
-
if (i7Data.bezeichner === 'C1 C31 CH') {
|
|
5364
|
-
console.log();
|
|
5365
|
-
}
|
|
5366
5359
|
const powerTransformer = new PowerTransformer_1.PowerTransformer(uuid, i7Data.bezeichner, i7Data.kurzname, i7Data.kommentar);
|
|
5367
5360
|
powerTransformer.setExternalId(i7Data.guid);
|
|
5368
5361
|
powerTransformer.externalId = String(i7Data.id);
|
|
@@ -6473,6 +6466,8 @@ class ConverterIntegral7 {
|
|
|
6473
6466
|
this.createDropIndex('create index netz_belastung_anschluss_index on netz_belastung (anschluss);'),
|
|
6474
6467
|
this.createDropIndex('create index netz_netzeinspeisung_anschluss_index on netz_netzeinspeisung (anschluss);'),
|
|
6475
6468
|
this.createDropIndex('create index netz_trenner3p_seliste_index on netz_trenner3p (seliste);'),
|
|
6469
|
+
this.createDropIndex('create index netz_sestarr3p_seliste_index on netz_sestarr3p (seliste);'),
|
|
6470
|
+
this.createDropIndex('create index netz_leistungsschalter_seliste_index on netz_leistungsschalter (seliste);'),
|
|
6476
6471
|
this.createDropIndex('create index netz_leitung_aknoten_index on netz_leitung (aknoten);'),
|
|
6477
6472
|
this.createDropIndex('create index netz_leitung_eknoten_index on netz_leitung (eknoten);'),
|
|
6478
6473
|
this.createDropIndex('create index netz_freileitungabschnitt_leitung_index on netz_freileitungabschnitt (leitung);'),
|
|
@@ -6493,6 +6488,8 @@ class ConverterIntegral7 {
|
|
|
6493
6488
|
this.createDropIndex('drop index netz_belastung_anschluss_index on netz_belastung;'),
|
|
6494
6489
|
this.createDropIndex('drop index netz_netzeinspeisung_anschluss_index on netz_netzeinspeisung;'),
|
|
6495
6490
|
this.createDropIndex('drop index netz_trenner3p_seliste_index on netz_trenner3p;'),
|
|
6491
|
+
this.createDropIndex('drop index netz_sestarr3p_seliste_index on netz_sestarr3p;'),
|
|
6492
|
+
this.createDropIndex('drop index netz_leistungsschalter_seliste_index on netz_leistungsschalter;'),
|
|
6496
6493
|
this.createDropIndex('drop index netz_leitung_aknoten_index on netz_leitung;'),
|
|
6497
6494
|
this.createDropIndex('drop index netz_leitung_eknoten_index on netz_leitung;'),
|
|
6498
6495
|
this.createDropIndex('drop index netz_freileitungabschnitt_leitung_index on netz_freileitungabschnitt;'),
|