diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /83/CH17/EX17.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '83/CH17/EX17.1')
-rwxr-xr-x | 83/CH17/EX17.1/example_17_1.sce | 11 | ||||
-rwxr-xr-x | 83/CH17/EX17.1/result_example_17_1.txt | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/83/CH17/EX17.1/example_17_1.sce b/83/CH17/EX17.1/example_17_1.sce new file mode 100755 index 000000000..1c42e4699 --- /dev/null +++ b/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/83/CH17/EX17.1/result_example_17_1.txt b/83/CH17/EX17.1/result_example_17_1.txt new file mode 100755 index 000000000..908ff1e32 --- /dev/null +++ b/83/CH17/EX17.1/result_example_17_1.txt @@ -0,0 +1,3 @@ + + +Reactive power Sensitivity at the bus is = 0.40 pu |