@enervance/insight-cim-model 0.0.236 → 0.0.238
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 +6 -3
- package/dist/converter/integral7/converter.integral7.js.map +1 -1
- package/dist/model/extensions/integral/assetinfo/INTEGRALPowerTransformer2WInfo.js +3 -2
- package/dist/model/extensions/integral/assetinfo/INTEGRALPowerTransformer2WInfo.js.map +1 -1
- package/dist/model/extensions/integral/assetinfo/INTEGRALPowerTransformer3WInfo.js +3 -0
- package/dist/model/extensions/integral/assetinfo/INTEGRALPowerTransformer3WInfo.js.map +1 -1
- package/package.json +1 -1
|
@@ -2053,10 +2053,13 @@ class ConverterIntegral7 {
|
|
|
2053
2053
|
equivalentInjection.q_bel = q_sKonst;
|
|
2054
2054
|
equivalentInjection.p_ki = p_ki;
|
|
2055
2055
|
equivalentInjection.q_ki = q_ki;
|
|
2056
|
-
const p = (p_ein ? p_ein : 0) + (p_sKonst ? p_sKonst : 0);
|
|
2057
|
-
const q = (q_ein ? q_ein : 0) + (q_sKonst ? q_sKonst : 0);
|
|
2056
|
+
const p = (p_ein ? p_ein : 0) + (p_sKonst ? p_sKonst : 0) + (p_ki ? p_ki : 0);
|
|
2057
|
+
const q = (q_ein ? q_ein : 0) + (q_sKonst ? q_sKonst : 0) + (q_ki ? q_ki : 0);
|
|
2058
|
+
if (i7Data.guid === '_dc09c365-ca51-4e10-964c-fc99b33e98dd') {
|
|
2059
|
+
console.log();
|
|
2060
|
+
}
|
|
2058
2061
|
equivalentInjection.p = p;
|
|
2059
|
-
equivalentInjection.
|
|
2062
|
+
equivalentInjection.q = q;
|
|
2060
2063
|
equivalentInjection.einspeisePrio = einspeisePrio;
|
|
2061
2064
|
equivalentInjection.kr = kr;
|
|
2062
2065
|
equivalentInjection.aggregate = true; // default Wert im I7 Export. Not needed for EquivalentInjection, BusbarSection, PowerTransformerEnd, EquivalentShunt, EquivalentBranch
|