diff options
Diffstat (limited to '3685/CH6/EX6.6')
-rw-r--r-- | 3685/CH6/EX6.6/Ex6_6.sce | 14 | ||||
-rw-r--r-- | 3685/CH6/EX6.6/Ex6_6.txt | 2 |
2 files changed, 16 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))
+
+
diff --git a/3685/CH6/EX6.6/Ex6_6.txt b/3685/CH6/EX6.6/Ex6_6.txt new file mode 100644 index 000000000..2420c711c --- /dev/null +++ b/3685/CH6/EX6.6/Ex6_6.txt @@ -0,0 +1,2 @@ + Example 6.6
+ Minimum area required for the collector plate is 10 m^2
\ No newline at end of file |