blob: 1c42e469972e476871cbe0f0b4a8311149371b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 17
//Example 17.1
//page 602
//To find reactive power sensitivity at the bus
clear;clc;
Q_nom=1; //given
Ksh=0.8; V=1.0; //assumed
Qnet=(V^2-Ksh*V^2)*Q_nom;
//senstivity=dQnet/dV
s=2*V-2*V*Ksh;
printf('Reactive power Sensitivity at the bus is = %0.2f pu',s);
|