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 /1752/CH3/EX3.13/exa3_13.sce | |
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 '1752/CH3/EX3.13/exa3_13.sce')
-rwxr-xr-x | 1752/CH3/EX3.13/exa3_13.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1752/CH3/EX3.13/exa3_13.sce b/1752/CH3/EX3.13/exa3_13.sce new file mode 100755 index 000000000..c18bb0953 --- /dev/null +++ b/1752/CH3/EX3.13/exa3_13.sce @@ -0,0 +1,20 @@ +//Exa 3.13
+clc;
+clear;
+close;
+//given data
+k=32;// in W/m^2 degree C
+h=14.8;// in W/m^2 degree C
+t_o=480;// in degree C
+t_i=55;// in degree C
+t_a=20;// in degree C
+d=2.5*10^-2;// in m
+rho=%pi*d;// in m
+Ac=%pi*d^2/4;// in m^2
+m=sqrt(h*rho/(k*Ac));
+disp("In this case, the shaft heat from the pump towards motor");
+disp("The temperature distribution considering the shaft as a fin insulated at the tip is given by")
+disp("Q/Q_o= (t-t_a)/(t_o-t_a) = cosh(m(L-x))/cosh(m*L)")
+// From (t-t_a)/(t_o-t_a) = cosh(m(L-x))/cosh(m*L)
+L=acosh((t_o-t_a)/(t_i-t_a))/m; // at x=L,t=t_i
+disp("Length of shaft specified between the motor and the pump is : "+string(L)+" meter");
|