diff options
Diffstat (limited to '2441/CH2/EX2.16/Ex2_16.sce')
-rwxr-xr-x | 2441/CH2/EX2.16/Ex2_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2441/CH2/EX2.16/Ex2_16.sce b/2441/CH2/EX2.16/Ex2_16.sce new file mode 100755 index 000000000..b214e46c5 --- /dev/null +++ b/2441/CH2/EX2.16/Ex2_16.sce @@ -0,0 +1,19 @@ +//exa 2.16
+clc;clear;close;
+format('v',11);
+L=30;//MW
+//I=(32+32*L+1.68*L^2)*10^5;
+t1=18;///hours
+t2=6;///hours
+//Full load 18 hours
+I1=(32+32*L+1.68*L^2)*10^5*t1;//kJ
+//Half load 6 hours
+I2=(32+32*L/2+1.68*(L/2)^2)*10^5*t2
+I=I1+I2;//kJ
+disp(I,"(a) Heat input per day(kJ)");
+E=L*t1+L/2*t2;//MWh///Energy produced in 24 hours
+Lu=E/(t1+t2);//MW
+Inew=(32+32*Lu+1.68*Lu^2)*10^5*(t1+t2);//kJ
+saving=I-Inew;///kJ
+saving=saving/(E*1000);//kJ/kWh
+disp(saving,"(b) Saving in heat per kWh of energy(kJ/kWh) : ");
|