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 /587/CH3/EX3.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 '587/CH3/EX3.4')
-rwxr-xr-x | 587/CH3/EX3.4/example3_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/587/CH3/EX3.4/example3_4.sce b/587/CH3/EX3.4/example3_4.sce new file mode 100755 index 000000000..defd9782d --- /dev/null +++ b/587/CH3/EX3.4/example3_4.sce @@ -0,0 +1,17 @@ +clear;
+clc;
+
+//Example3.4[Equivalent Thickness for Contact Resistance]
+//Given:-
+k=237;//Thermal conductivity of aluminium[W/m.K]
+L=0.01;//Thickness of aluminium plate[m]
+hc=11000;//Thermal contact conductance[W/m^2.K]
+//Solution:-
+Rc=1/hc;//[m^2.K/W]
+disp("Since thermal contact resistance is the inverse of thermal contact conductance")
+disp("m^2.K/W",Rc,"Hence Therml contact Resistance is")
+//For a unit surface area, the thermal resistance of a flat plate is defined as
+R=L/k;
+//Equivalent thickness for R=Rc
+L=k*Rc;//[m]
+disp("cm",(100*L),"Equivalent thickness is")
\ No newline at end of file |