summaryrefslogtreecommitdiff
path: root/2144/CH1/EX1.10/ex1_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2144/CH1/EX1.10/ex1_10.sce')
-rwxr-xr-x2144/CH1/EX1.10/ex1_10.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2144/CH1/EX1.10/ex1_10.sce b/2144/CH1/EX1.10/ex1_10.sce
new file mode 100755
index 000000000..9c9b8a46d
--- /dev/null
+++ b/2144/CH1/EX1.10/ex1_10.sce
@@ -0,0 +1,12 @@
+// Exa 1.10
+clc;
+clear;
+close;
+// Given data
+m = 18.2;//quantity of air supplied of coal in kg
+T1 = 200;// in degree C
+T2 = 18;// in degree C
+del_T = T1-T2;// in degree C
+Spe_heat = 1;// in kJ/kg-K
+Q_C = m*Spe_heat*del_T;// in kJ
+disp(Q_C,"The Quantity of heat supplied per kg of coal in kJ is");