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 /416/CH14/EX14.1 | |
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 '416/CH14/EX14.1')
-rwxr-xr-x | 416/CH14/EX14.1/ans14_1.txt | 4 | ||||
-rwxr-xr-x | 416/CH14/EX14.1/example14_1.sce | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/416/CH14/EX14.1/ans14_1.txt b/416/CH14/EX14.1/ans14_1.txt new file mode 100755 index 000000000..05265b35e --- /dev/null +++ b/416/CH14/EX14.1/ans14_1.txt @@ -0,0 +1,4 @@ +
+ example 14.1
+speed regulation of alternator is 0.02Hz/MW
+ change in power output 5MW
\ No newline at end of file diff --git a/416/CH14/EX14.1/example14_1.sce b/416/CH14/EX14.1/example14_1.sce new file mode 100755 index 000000000..7bf3161ef --- /dev/null +++ b/416/CH14/EX14.1/example14_1.sce @@ -0,0 +1,10 @@ +clc
+clear
+disp('example 14.1')
+p=100 //rating of alternater
+sd=0.04 //speed of alrternator drops
+df=-0.1 //change in frequency and drops so -ve
+f=50 //frequency is 50hz
+r=sd*f/p //r in hz/MW
+dp=-(df)/r
+printf("speed regulation of alternator is %.2fHz/MW \n change in power output %dMW",r,dp)
\ No newline at end of file |