diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /551/CH15/EX15.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '551/CH15/EX15.6')
-rwxr-xr-x | 551/CH15/EX15.6/6.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/551/CH15/EX15.6/6.sce b/551/CH15/EX15.6/6.sce new file mode 100755 index 000000000..a252cef4d --- /dev/null +++ b/551/CH15/EX15.6/6.sce @@ -0,0 +1,21 @@ +clc
+L=0.012; //m
+t_hf=95; //0C
+t_cf=15; //0C
+k=50; //W/m 0C
+h_hf=2850; //W/m^2 0C
+h_cf=10; //W/m^2 0C
+
+disp("(i) Rate of heat loss per m^2 of the tank surface area")
+U=1/(1/h_hf + L/k + 1/h_cf);
+A=1; //m^2
+q=U*A*(t_hf-t_cf);
+disp("q=")
+disp(q)
+disp("W/m^2")
+
+
+disp("(ii) Temperature of the outside surface of the tank =")
+t2=q/h_cf+t_cf;
+disp(t2)
+disp("0C")
\ No newline at end of file |