How to calculate ISF's &PTDF's in MATPOWER?

19 views (last 30 days)
siva swami
siva swami on 7 Oct 2016
Edited: Hazem on 17 Oct 2016
Hi,
How to calculate ISF's&PTDF's in matpower?Do we need to write code or any direct way?
  1 Comment
ayyappa rudrasimha yedida
In matpower you can write code or directly you can use makePTDF fucntion but it will give ISF matrix.From that you have to calculate PTDFs using below formula PTDF(l,m)=ISF(l,0)-ISF(m,0) 0-slack bus

Sign in to comment.

Answers (1)

Hazem
Hazem on 17 Oct 2016
Edited: Hazem on 17 Oct 2016
For ISF you may write
mpc=loadcase('case9');
ISF=makePTDF(mpc);
To calculate PTDF between x and y
PTDFxy=ISF(:,x)-ISF(:,y);

Categories

Find more on C Shared Library Integration in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!