Skip to content

MATLAB code for performing power flow analysis on electrical networks using different algorithms provided by MATPOWER, a powerful simulation tool widely used in power system engineering.

License

Notifications You must be signed in to change notification settings

yavuzCodiin/9_Bus_MATPOWER_GS-FDPF-FNR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

9_Bus_MATPOWER_GS-FDPF-FNR

This repository contains MATLAB code for performing power flow analysis on electrical networks using different algorithms provided by MATPOWER, a powerful simulation tool widely used in power system engineering.

Overview

Power flow analysis is a fundamental task in electrical engineering, essential for understanding how electrical power is distributed and balanced within a network. This repository offers a flexible and comprehensive solution for power flow analysis, allowing you to explore various algorithms and their impact on system behavior.

I used MATPOWER to solve 9 bus case, methods I used are

  • Gauss-Seidel
  • Full Newton-Raphson
  • Fast Decoupled Power Flow
  1. GAUSS SEIDEL METHOD

    image

  2. NEWTON RAPHSON METHOD

    image

  3. FAST DECOUPLED METHOD

    image

image

EXPERIMENT AND RESULT

GAUSS SEIDEL METHOD

mpopt = mpoption('pf.alg', 'GS', 'verbose', 3);
runpf('case9', mpopt);

image image

NEWTON RAPHSON METHOD

mpopt = mpoption('pf.alg', 'NR', 'verbose', 3);
runpf('case9', mpopt);

image image

FAST DECOUPLED METHOD

mpopt = mpoption('pf.alg', 'FDXB', 'verbose', 3);
runpf('case9', mpopt);

image image

image

CONCLUSION

In the contrast, we can see that Gauss – Seidel needs a lot of iteration to get where other two method are, the most efficient method is Fast Decoupled because it can do more iterations than Newton Raphson in less time.

About

MATLAB code for performing power flow analysis on electrical networks using different algorithms provided by MATPOWER, a powerful simulation tool widely used in power system engineering.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages