-
Notifications
You must be signed in to change notification settings - Fork 494
New issue
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
Result output for three phase powerflow #2089
Comments
Please use a different issue template where you can input code snippets for the minimal example |
@rbolgaryn Sure! Do you want me to close this issue and create a new one as a bug report? Or would a permalink to the code be better? |
Hi @emily-ninestein , no it is not necessary. I tried running your code and it seems like the power flow calculation does not converge. Is that the problem? |
@rbolgaryn I do not get an error message saying that it did not converge, but maybe that could be the underlying issue? The issue I am having is that the result dataframe for the asymmetric load comes up empty when the runpp_3ph function is run. However, when the standard runpp function is run, the asymmetric load result dataframe is filled, but it only returns two parameters (p_mw and q_mvar) instead of the 6 that are expected (p_a_mw, p_b_mw, p_c_mw, q_a_mvar, q_b_mvar, q_c_mvar). How can I get these 6 parameters the dataframe is supposed to have according to the documentation? |
The 6 parameters are only returned when the calculation is unbalanced power flow. In my case, it did not converge - this could be the reason why the dataframe is empty. |
you need to use the function runpp_3ph |
@emily-ninestein is this still relevant? |
Feature Checklist
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
Issue
Hi there! I'm trying to run a three-phase powerflow (runpp_3ph) on the IEEE European LV network, but I am getting empty dataframes for the asymmetric load data. Is there something I'm missing? If I run a standard powerflow (runpp), I do get asymmetric load results, but they're single phase. I thought the issue might be because the European LV network only has one loaded phase per three-phase load (two of the phases are always 0), so I tried adding a load to each 0 phase, but I am still getting single-phase results. Here is the code I'm running:
Do you know why I am getting these results? Thanks!
Label
The text was updated successfully, but these errors were encountered: