summaryrefslogtreecommitdiff
path: root/2135/CH1/EX1.27/Exa_1_27.sce
diff options
context:
space:
mode:
Diffstat (limited to '2135/CH1/EX1.27/Exa_1_27.sce')
-rwxr-xr-x2135/CH1/EX1.27/Exa_1_27.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2135/CH1/EX1.27/Exa_1_27.sce b/2135/CH1/EX1.27/Exa_1_27.sce
new file mode 100755
index 000000000..f646f04bd
--- /dev/null
+++ b/2135/CH1/EX1.27/Exa_1_27.sce
@@ -0,0 +1,16 @@
+//Exa 1.27
+clc;
+clear;
+close;
+format('v',6);
+
+//Given Data :
+m=500;//Kg
+t1=45;//degree C
+t0=5;//degree C
+CP=4.18;//KJ/Kg-degree C
+Qdot=41.87;//MJ/hr
+Q=m*CP*(t1-t0);//KJ
+Q=Q/1000;//MJ
+Time=Q/Qdot;//hrs
+disp(Time,"Time required in hours : ");