diff options
author | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
---|---|---|
committer | Siddharth Agarwal | 2019-09-03 18:27:40 +0530 |
commit | 8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch) | |
tree | e1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/83/CH8/EX8.2/example_8_2.sce | |
parent | 52a477ec613900885e29c4a0b02806a415b4f83a (diff) | |
download | Xcos_block_examples-master.tar.gz Xcos_block_examples-master.tar.bz2 Xcos_block_examples-master.zip |
Diffstat (limited to 'Working_Examples/83/CH8/EX8.2/example_8_2.sce')
-rwxr-xr-x | Working_Examples/83/CH8/EX8.2/example_8_2.sce | 13 |
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); |