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 /3685/CH6/EX6.6/Ex6_6.sce | |
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 '3685/CH6/EX6.6/Ex6_6.sce')
-rw-r--r-- | 3685/CH6/EX6.6/Ex6_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3685/CH6/EX6.6/Ex6_6.sce b/3685/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..63c61276c --- /dev/null +++ b/3685/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,14 @@ +clc
+T1 = 90 // Operating temperature of power plant in degree Celsius
+T2 = 20 // Atmospheric temperature in degree Celsius
+W = 1 // Power production from power plant in kW
+E = 1880 // Capability of energy collection in kJ/m^2 h
+
+printf("\n Example 6.6")
+e_max = 1-((T2+273)/(T1+273)) // maximum efficiency
+Qmin = W/e_max // Minimum heat requirement per second
+Qmin_ = Qmin*3600 // Minimum heat requirement per hour
+Amin = Qmin_/E // Minimum area requirement
+printf("\n Minimum area required for the collector plate is %d m^2",ceil(Amin))
+
+
|