diff options
Diffstat (limited to '2870/CH2/EX2.17')
-rwxr-xr-x | 2870/CH2/EX2.17/Ex2_17.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2870/CH2/EX2.17/Ex2_17.sce b/2870/CH2/EX2.17/Ex2_17.sce new file mode 100755 index 000000000..c1a0d43e0 --- /dev/null +++ b/2870/CH2/EX2.17/Ex2_17.sce @@ -0,0 +1,24 @@ +clc;clear;
+//Example 2.17
+
+//given values
+Pstd=4520;
+Phem=5160;//prices of std and high eff motor in USD
+R=60*0.7457;//rated power in kW from hp
+OpHrs=3500;//Operating hours
+Lf=1;//Load Factor
+nsh=0.89;
+nhem=0.932;//efficiency of shaft and high eff. motor
+CU=0.08;//per unit cost in USD
+
+//calculation
+PS=R*Lf*(1/nsh-1/nhem);//Power savings = W electric in,standard - W electric in,efficient
+ES=PS*OpHrs;//Energy savings = Power savings * Operating hours
+ES=floor(ES);//rounding off
+disp(ES,'Energy savings in kWh/year');
+CS=ES*CU;
+CS=floor(CS);//rounding off
+disp(CS,'Cost savings per year in USD');
+EIC=Phem-Pstd;//excess intial cost
+Y=EIC/CS;
+disp(Y,'simple payback period in years')
|