We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Searched the issues page for similar reports
Read the relevant sections of the documentation
Browse the tutorials and tests for usefull code snippets and examples of use
Reproduced the issue after updating with pip install --upgrade pandapower (or git pull)
pip install --upgrade pandapower
git pull
Tried basic troubleshooting (if a bug/error) like restarting the interpreter and checking the pythonpath
testcase is missing in: https://github.com/e2nIEE/pandapower/blob/8009cb53287c1f79e009d3093b1baf5694da17db/pandapower/test/converter/test_from_cim.py
https://github.com/e2nIEE/pandapower/blob/develop/pandapower/converter/cim/cim2pp/build_pp_net.py line 65 in build_pp_net.py:
self.net[pp_type] = pd.concat([self.net[pp_type], input_df[list(set(self.net[pp_type].columns).intersection(input_df.columns))]], ignore_index=True, sort=False)
during runtime:
input_df.columns = Index(['origin_id', 'name', 'description', 'ConnectivityNodeContainer', 'origin_profile', 'origin_class', 'ConnectivityNodeContainer_id', 'Substation', 'zone', 'Substation_id', 'vn_kv', 'ConnectivityNode', 'cim_topnode', 'busbar_id', 'busbar_name', 'GeographicalRegion_id', 'GeographicalRegion_name', 'SubGeographicalRegion_id', 'SubGeographicalRegion_name', 'in_service', 'type'], dtype='object')
self.net[pp_type].columns = Index(['name', 'vn_kv', 'type', 'zone', 'in_service', 'geo', 'origin_id', 'origin_class', 'origin_profile', 'cim_topnode', 'ConnectivityNodeContainer_id', 'Substation_id', 'description', 'Busbar_id', 'Busbar_name', 'GeographicalRegion_id', 'GeographicalRegion_name', 'SubGeographicalRegion_id', 'SubGeographicalRegion_name'], dtype='object')
Busbar_id != busbar_id Busbar_name != busbar_name -> busbar info gets dropped
why is the type hardcoded and not based on the busbarsection? https://github.com/e2nIEE/pandapower/blob/develop/pandapower/converter/cim/cim2pp/converter_classes/connectivitynodes/connectivityNodesCim16.py line 266
Busbar_id == Busbar_id Busbar_name == Busbar_name
pandapower 3.0.0.dev1 8009cb5
The text was updated successfully, but these errors were encountered:
possible hotfix: https://github.com/e2nIEE/pandapower/blob/develop/pandapower/converter/cim/cim2pp/converter_classes/connectivitynodes/connectivityNodesCim16.py current code:
def convert_connectivity_nodes_cim16(self): time_start = time.time() self.logger.info("Start converting ConnectivityNodes / TopologicalNodes.") connectivity_nodes, eqssh_terminals = self._prepare_connectivity_nodes_cim16()
add after line 24: connectivity_nodes = connectivity_nodes.rename(columns={'busbar_id': 'Busbar_id', "busbar_name": 'Busbar_name'})
connectivity_nodes = connectivity_nodes.rename(columns={'busbar_id': 'Busbar_id', "busbar_name": 'Busbar_name'})
Sorry, something went wrong.
heckstrahler
mrifraunhofer
No branches or pull requests
Bug report checklis
Searched the issues page for similar reports
Read the relevant sections of the documentation
Browse the tutorials and tests for usefull code snippets and examples of use
Reproduced the issue after updating with
pip install --upgrade pandapower
(orgit pull
)Tried basic troubleshooting (if a bug/error) like restarting the interpreter and checking the pythonpath
Reproducible Example
Issue Description and Traceback
https://github.com/e2nIEE/pandapower/blob/develop/pandapower/converter/cim/cim2pp/build_pp_net.py
line 65 in build_pp_net.py:
during runtime:
Busbar_id != busbar_id
Busbar_name != busbar_name
-> busbar info gets dropped
why is the type hardcoded and not based on the busbarsection?
https://github.com/e2nIEE/pandapower/blob/develop/pandapower/converter/cim/cim2pp/converter_classes/connectivitynodes/connectivityNodesCim16.py
line 266
Expected Behavior
Busbar_id == Busbar_id
Busbar_name == Busbar_name
Installed Versions
pandapower 3.0.0.dev1 8009cb5
Label
The text was updated successfully, but these errors were encountered: