summaryrefslogtreecommitdiff
path: root/2441/CH5/EX5.22
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.22
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.22')
-rwxr-xr-x2441/CH5/EX5.22/Ex5_22.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2441/CH5/EX5.22/Ex5_22.sce b/2441/CH5/EX5.22/Ex5_22.sce
new file mode 100755
index 000000000..f5e545c14
--- /dev/null
+++ b/2441/CH5/EX5.22/Ex5_22.sce
@@ -0,0 +1,20 @@
+//Example 5.22
+clc;clear;close;
+format('v',6);
+C1=200;//MW
+C2=100;//MW
+R1=1.5;//%//speed regulation
+R2=3;//%//speed regulation
+L=100;//MW///Load on each bus
+f=50;//Hz
+RA=R1/100*f/C1;//Hz/MW
+RB=R2/100*f/C2;//Hz/MW
+//Let PA= generation at plant A
+//PB=2*L-PA will be generation at plant B
+//RA*PA=RB*PB
+PA=RB*2*L/(RA+RB);//MW
+PB=2*L-PA;//MW
+disp(PA,"Load generation at plant A(MW)");
+disp(PB,"Load generation at plant B(MW)");
+Pt=PA-L;//MW///Power transfer
+disp(Pt,"Power transfer from A to B(MW)");