summaryrefslogtreecommitdiff
path: root/Working_Examples/83/CH8/EX8.2/example_8_2.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/83/CH8/EX8.2/example_8_2.sce')
-rwxr-xr-xWorking_Examples/83/CH8/EX8.2/example_8_2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/Working_Examples/83/CH8/EX8.2/example_8_2.sce b/Working_Examples/83/CH8/EX8.2/example_8_2.sce
new file mode 100755
index 0000000..79f91fa
--- /dev/null
+++ b/Working_Examples/83/CH8/EX8.2/example_8_2.sce
@@ -0,0 +1,13 @@
+//Chapter 8
+//Example 8.2
+//page 301
+//To determine determine load sharing and system frequency
+clear;clc;
+f=50; // system frequency
+x=200; //load on first generator(value is assumed first)
+delta_f=0.01*x; //from the first equation given in the book
+x=(3.75)/(0.01+0.00625); //by substituting (i) in (ii)
+delta_f=0.01*x; //recalculating the value
+x2=600-x;
+printf('\nLoad shared by the generator:\n\t Generator1=%0.2f MW\n\tGenerator2=%0.2f MW\n',x,x2);
+printf('\nSystem Frequency=%0.2f Hz\n\n',f-delta_f);