summaryrefslogtreecommitdiff
path: root/Working_Examples/83/CH17/EX17.1
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/83/CH17/EX17.1')
-rwxr-xr-xWorking_Examples/83/CH17/EX17.1/example_17_1.sce11
-rwxr-xr-xWorking_Examples/83/CH17/EX17.1/result_example_17_1.txt3
2 files changed, 14 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);
diff --git a/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt b/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt
new file mode 100755
index 0000000..908ff1e
--- /dev/null
+++ b/Working_Examples/83/CH17/EX17.1/result_example_17_1.txt
@@ -0,0 +1,3 @@
+
+
+Reactive power Sensitivity at the bus is = 0.40 pu