diff options
Diffstat (limited to 'Working_Examples/83/CH17/EX17.1/example_17_1.sce')
-rwxr-xr-x | Working_Examples/83/CH17/EX17.1/example_17_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Working_Examples/83/CH17/EX17.1/example_17_1.sce b/Working_Examples/83/CH17/EX17.1/example_17_1.sce new file mode 100755 index 0000000..1c42e46 --- /dev/null +++ b/Working_Examples/83/CH17/EX17.1/example_17_1.sce @@ -0,0 +1,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); |