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.4 | |
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.4')
-rwxr-xr-x | 551/CH15/EX15.4/4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/551/CH15/EX15.4/4.sce b/551/CH15/EX15.4/4.sce new file mode 100755 index 000000000..b76619f5e --- /dev/null +++ b/551/CH15/EX15.4/4.sce @@ -0,0 +1,24 @@ +clc
+L_A=0.2; //m
+L_C=0.006; //m
+L_D=0.1; //m
+t1=1150; //0C
+t2=40; //0C
+dt=t1-t2;
+k_A=1.52; //W/m 0C
+k_B=0.138; //W/m 0C
+k_D=0.138; //W/m 0C
+k_C=45; //W/m 0C
+q=400; //W/m^2
+
+disp("(i) The value of x = (L_C) ")
+L_B=((t1-t2)/q - (L_A/k_A+L_C/k_C+L_D/k_D))*k_B*1000;
+disp("L_B =")
+disp(L_B)
+disp("mm")
+
+
+disp("(ii) Temperature of the outer surface of the steel plate t_so =")
+t_so=q*L_D/k_D + t2;
+disp(t_so)
+disp("0C")
\ No newline at end of file |