We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe83bf2 commit 087a32cCopy full SHA for 087a32c
src/power_grid_model_io/converters/pandapower_converter.py
@@ -2042,7 +2042,7 @@ def _pp_trafos_output_3ph(self): # pylint: disable=too-many-statements
2042
else:
2043
raise ValueError(f"Invalid transformer loading type: {str(self.trafo_loading)}")
2044
2045
- # PGM returns the average loading over the cable, but PandaPower returns the maximum of the per-phase loading.
+ # PGM returns the average loading over the transformer, but PandaPower returns the maximum of the per-phase loading.
2046
# To make it consistent with PandaPower, overall loading will be calculated as max of above 3.
2047
loading = np.maximum(np.maximum(loading_a_percent, loading_b_percent), loading_c_percent)
2048
0 commit comments