summaryrefslogtreecommitdiff
path: root/2441/CH5/EX5.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2441/CH5/EX5.14
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2441/CH5/EX5.14')
-rwxr-xr-x2441/CH5/EX5.14/Ex5_14.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2441/CH5/EX5.14/Ex5_14.sce b/2441/CH5/EX5.14/Ex5_14.sce
new file mode 100755
index 000000000..ea9c0f992
--- /dev/null
+++ b/2441/CH5/EX5.14/Ex5_14.sce
@@ -0,0 +1,18 @@
+//Example 5.14
+clc;clear;close;
+format('v',6);
+C1=300;//MW
+C2=400;//MW
+G1=4;//%//droop characteristics of governer
+G2=5;//%//droop characteristics of governer
+L=600;//MW
+f=50;//Hz
+//Load on first generator =L1
+//Load on second generator =L-L1
+//f-G1*f/100*(L1/C1)=f-G2*f/100*(L2/C2)
+L1=G2*L/C2/(G1/C1+G2/C2);//MW
+L2=L-L1;//MW
+disp(L1,"Load on first generator(MW)");
+disp(L2,"Load on second generator(MW)");
+fLoad=f*(1-L1/C1*G1/100);//Hz
+disp(fLoad,"Frequency at load(Hz)");