diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /509/CH6/EX6.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '509/CH6/EX6.1')
-rw-r--r-- | 509/CH6/EX6.1/6_1.sci | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/509/CH6/EX6.1/6_1.sci b/509/CH6/EX6.1/6_1.sci new file mode 100644 index 000000000..72224d58d --- /dev/null +++ b/509/CH6/EX6.1/6_1.sci @@ -0,0 +1,23 @@ +//Chapter 6 Example1//
+clc
+clear
+//catchment area of reservoir=a,average rainfall=ar,percent of rainfall utilized=pu//
+//average available water for electricity production=we//
+a=50;// in km^2//
+ar=150;// in cm/year //
+pu=75;// in percent//
+we=(a*10^6)*(ar/100)*(pu/100);// to convert in terms of 10^6//
+printf("\n Total available water for electricity production = %.3f m^3\n",we);
+//quantity available=qa//
+qa=we/(365*24*60*60);
+//power generated=p,efficiency of turbine=te,efficiency of generator=ge,load factor=lf,mean head=mh//
+te=88;// in percent//
+ge=93;// in percent//
+lf=75;// in percent//
+mh=40;
+p=0.736*qa*1000*mh*(ge/100)*(te/100)/75;
+printf("\n Total Power generated in kW = %.2f kW\n",p);
+// installed capacity=ic//
+ic=p/(lf/100);
+printf("\n Installed capacity of the generators = %.2f kW\n",ic);
+// the values given in the book are approximated to the nearest decimal//
\ No newline at end of file |