You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Guy's
Thank you for your great work! I work a lot in modeling, validation mainly with commercial tools like PowerFactory.
As a hobbyist, I was always looking for open source alternatives.
This is my first GIT feedback. If I made something wrong please let me know :)
I found some Issues regarding pf2rec/gridcal2rec.py together with the newest GridCal Version 5.1.8.
ifre.search(r"3.\d.\d", __VERSION) or__VERSION=='4.0.0':
pf_S_bus_results["P [MW]"] =np.real(pf.results.Sbus*grid.Sbase)
# Adding reactive power to the busespf_S_bus_results["Q [MVAR]"] =np.imag(pf.results.Sbus*grid.Sbase)
elifre.search(r"4.\d(.\d)*", __VERSION):
# For version 4 of GridCal, power is already given in MW and MVarpf_S_bus_results["P [MW]"] =np.real(pf.results.Sbus)
pf_S_bus_results["Q [MVAR]"] =np.imag(pf.results.Sbus)
to
# For version >4 of GridCal, power is already given in MW and MVarpf_S_bus_results["P [MW]"] =np.real(pf.results.Sbus)
pf_S_bus_results["Q [MVAR]"] =np.imag(pf.results.Sbus)
Hi Guy's
Thank you for your great work! I work a lot in modeling, validation mainly with commercial tools like PowerFactory.
As a hobbyist, I was always looking for open source alternatives.
This is my first GIT feedback. If I made something wrong please let me know :)
I found some Issues regarding pf2rec/gridcal2rec.py together with the newest GridCal Version 5.1.8.
#1 Transformer Type Line 187
should be
#2 add values to buses
change:
to
#3 bus names line 453
should be
There maybe also other problems. If I find more solutions I will let you know.
best Regards
Johannes
The text was updated successfully, but these errors were encountered: