summaryrefslogtreecommitdiff
path: root/2345/CH15/EX15.35
diff options
context:
space:
mode:
Diffstat (limited to '2345/CH15/EX15.35')
-rwxr-xr-x2345/CH15/EX15.35/Ex15_35.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2345/CH15/EX15.35/Ex15_35.sce b/2345/CH15/EX15.35/Ex15_35.sce
new file mode 100755
index 000000000..ee2dd5bc5
--- /dev/null
+++ b/2345/CH15/EX15.35/Ex15_35.sce
@@ -0,0 +1,14 @@
+//Finding efficiency
+//Example 15.35(pg. 416)
+clc
+clear
+m=2//quantity of aluminium to be melted in kg
+t1=15,t2=660//temp in degreeC
+S=0.212//specific heat of aluminium
+L=78.8//latent heat of aluminium in kcal/kg
+H=(m*S*(t2-t1))+(m*L)//total heat required to melt Al in kcal
+i=5//input to furnace in kW
+E=i*(1000*10*60)//Energy input to furnace in watt-sec
+E1=E/4180//energy input in kcal
+e=H*100/E1//efficiency of furnace
+printf('Thus the efficiency of furnace is %2.3f percent',e)