Paul-Niklas
Paul-Niklas
One question; how to deal with the situation when a non-generator bus ends-up in `net.ext_grid` but the logic is build such as I need to recover the set of all...
@vogt31337 thanks for your response! My problem is that I want to solve the radial opf network from here with a self-written customized solver: https://ieeexplore.ieee.org/document/7056568 specifically (2a) - (2i) with...
@vogt31337 Thanks for the response, I understand now For my use-case, it is important to know which buses are generators and which are not and I encountered the case based...
@pjaselin Thanks for the response! Yes, I was looking for a structure in tree-like hierarchies in order to understand how rules were created from the tree
@pjaselin thanks for the response! I mainly utilize the following function to fix this issue: ``` def generate_rules_data(coeff_data, X): # Check if 'rule' column in coeff_data has only one unique...
> It looks like the actual solution would be to rewrite the _parse_model function. This is what the model output actually looks like for a single regressor: > > ```...
Edit: I receive similar issues when I try to read-in the following cases: https://github.com/MATPOWER/matpower/blob/master/data/case39.m and https://github.com/MATPOWER/matpower/blob/master/data/case57.m Update: Those cases do not work as well: https://github.com/MATPOWER/matpower/blob/master/data/case12da.m https://github.com/MATPOWER/matpower/blob/master/data/case15da.m
@SteffenMeinecke thanks a lot for the suggestion, I will try the approach you proposed and try to fix the issue
@vogt31337 thanks for the response! Yes this case is still relevant for me, I planned to check in detail tomorrow
@vogt31337 I checked and the issue mainly comes from the fact that `baseKV` in my ieee 14 bus case is 0. I am considering radial networks from here: https://www.dropbox.com/scl/fi/ohc1xd4g03u1ch0356zgj/Tree-Library.zip?rlkey=crey52c766o03chsxgjytsrfa&e=1&dl=0 I...