summaryrefslogtreecommitdiff
path: root/3872/CH12/EX12.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3872/CH12/EX12.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3872/CH12/EX12.2')
-rw-r--r--3872/CH12/EX12.2/Ex12_2.JPGbin0 -> 21849 bytes
-rw-r--r--3872/CH12/EX12.2/Ex12_2.sce35
2 files changed, 35 insertions, 0 deletions
diff --git a/3872/CH12/EX12.2/Ex12_2.JPG b/3872/CH12/EX12.2/Ex12_2.JPG
new file mode 100644
index 000000000..b1e885d20
--- /dev/null
+++ b/3872/CH12/EX12.2/Ex12_2.JPG
Binary files differ
diff --git a/3872/CH12/EX12.2/Ex12_2.sce b/3872/CH12/EX12.2/Ex12_2.sce
new file mode 100644
index 000000000..edf79be4b
--- /dev/null
+++ b/3872/CH12/EX12.2/Ex12_2.sce
@@ -0,0 +1,35 @@
+//Book - Power System: Analysis & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
+//Chapter - 12 ; Example 12.2
+//Scilab Version - 6.0.0 ; OS - Windows
+
+clc;
+clear;
+
+KQi=0.4;
+KVi=40;
+XIqmax=1.45;
+XIqmin=0.5;
+Vmax=1.1;
+Vmin=0.9;
+
+Tr=0;
+Ka=100;
+Ta=0.05;
+Vrmax=5;
+Vrmin=-5;
+Ke=1;
+Te=0.26;
+Kf=0.01;
+Tf=1;
+vt=0.5;
+Vf=0; //Initial value of vf
+Vref=1.0239; //Initial value of Vref from Example 11.12
+Isorq=-XIqmax/0.8; // Reactive component of Isorc
+Qcmd=0.22; //Obtained from Example 11.12
+Qnet=(vt)*abs(Isorq)-(vt)^2/0.8; // Net reactive power injection in pu
+
+printf('The initial value of reference voltage is %.4f pu\n',Vref)
+printf('The initial value of reactive power Qcmd = %.4f pu = %.4f Mvar\n',Qcmd,Qcmd*100)
+printf('The maxximum net reactive power Qnet = %.4f pu = %.4f Mvar\n',Qnet,Qnet*100)
+