First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
How can we access the sensitivity factors report using python API in PSS/E:
ierr = psspy.sensitivity_flows(flwopt, options, values, labels, dfxfile) if ierr != 0: print(f"Error calculating sensitivity flows, error code: {ierr}") return
When I run the sensitivity analysis in PSS/E, there is a report generated with the Sensivity factors. But I couldn't find any information
2 | No.2 Revision |
How can we access the sensitivity factors report using python API in PSS/E:PSS/E.
The following code is just to run the sensitivity analysis but I couldn't find a way to access the results:
ierr = psspy.sensitivity_flows(flwopt, options, values, labels, dfxfile) if ierr != 0: print(f"Error calculating sensitivity flows, error code: {ierr}") return
When I run the sensitivity analysis in PSS/E, there is a report generated with the Sensivity factors. But I couldn't find any information
3 | No.3 Revision |
How can we access the sensitivity factors report using python API in PSS/E.
The following code is just to run the sensitivity analysis but I couldn't find a way to access the results:
ierr = psspy.sensitivity_flows(flwopt, options, values, labels, dfxfile)
if ierr != 0:
print(f"Error calculating sensitivity flows, error code: {ierr}")