From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3685/CH6/EX6.6/Ex6_6.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3685/CH6/EX6.6/Ex6_6.sce (limited to '3685/CH6/EX6.6/Ex6_6.sce') 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)) + + -- cgit