How to extract voltage magnitude from load flow results using MATPOWER

10 views (last 30 days)
In MATPOWER, I have run the loadflow of a sample case study. Now I need to extract the Bus voltage magnitude from the converged results. Can you tell what command is used to extract the data from the results and how to do it.
  2 Comments
Minal Chougule
Minal Chougule on 27 May 2020
mpc = loadcase('case30');
results=runpf(mpc)
This results strucutre contains all required output. You can access voltage measurements by using results.bus command.
Good Luck.
puneet joshi
puneet joshi on 17 Sep 2022
results.success success
ag, 1 = succeeded, 0 = failed
results.et computation time required for solution
results.iterations number of iterations required for solution

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!