diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /83/CH8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '83/CH8')
-rwxr-xr-x | 83/CH8/EX8.1/example_8_1.sce | 18 | ||||
-rwxr-xr-x | 83/CH8/EX8.1/result_example_8_1.txt | 8 | ||||
-rwxr-xr-x | 83/CH8/EX8.2/example_8_2.sce | 13 | ||||
-rwxr-xr-x | 83/CH8/EX8.2/result_example_8_2.txt | 8 |
4 files changed, 47 insertions, 0 deletions
diff --git a/83/CH8/EX8.1/example_8_1.sce b/83/CH8/EX8.1/example_8_1.sce new file mode 100755 index 000000000..1aca454b4 --- /dev/null +++ b/83/CH8/EX8.1/example_8_1.sce @@ -0,0 +1,18 @@ +//Chapter 8 +//Example 8.1 +//page 300 +//To determine the change in the frequency +clear;clc; +f=50; +H=5e3; +KE=H*100*1000; //K.E stored in the generator +PI=50e6; //power input to generator before the stem valve is closed +EE=PI*0.4 ; //Excess energy input to the rotating parts +fnew=f*((KE+EE)/KE)^0.5; //frequency at the end of the 0.4sec +printf('\nKinetic Energy stored in the rotating parts of generator and turbine = %d kW-sec',KE/1000); +printf('\nExcess power input to generator before the stem valve begins to close=%d MW',PI/1000000); +printf('\nExcess energy input to rotating parts in 0.4sec=%d kW-sec',EE/1000); +printf('\nFrequency at the end of 0.4sec=%0.2f Hz\n\n',fnew); + + + diff --git a/83/CH8/EX8.1/result_example_8_1.txt b/83/CH8/EX8.1/result_example_8_1.txt new file mode 100755 index 000000000..30dcfbecf --- /dev/null +++ b/83/CH8/EX8.1/result_example_8_1.txt @@ -0,0 +1,8 @@ + + +Kinetic Energy stored in the rotating parts of generator and turbine = 500000 kW-sec +Excess power input to generator before the stem valve begins to close=50 MW +Excess energy input to rotating parts in 0.4sec=20000 kW-sec +Frequency at the end of 0.4sec=50.99 Hz + + diff --git a/83/CH8/EX8.2/example_8_2.sce b/83/CH8/EX8.2/example_8_2.sce new file mode 100755 index 000000000..79f91fa54 --- /dev/null +++ b/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); diff --git a/83/CH8/EX8.2/result_example_8_2.txt b/83/CH8/EX8.2/result_example_8_2.txt new file mode 100755 index 000000000..d28f95d5c --- /dev/null +++ b/83/CH8/EX8.2/result_example_8_2.txt @@ -0,0 +1,8 @@ + + +Load shared by the generator: + Generator1=230.77 MW + Generator2=369.23 MW + +System Frequency=47.69 Hz + |