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.1 | |
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.1')
-rwxr-xr-x | 587/CH3/EX3.1/example3_1.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/587/CH3/EX3.1/example3_1.sce b/587/CH3/EX3.1/example3_1.sce new file mode 100755 index 000000000..12226fa40 --- /dev/null +++ b/587/CH3/EX3.1/example3_1.sce @@ -0,0 +1,21 @@ +clear;
+clc;
+//Example 3.1 [Heat Loss through a Wall]
+
+//assumptions:-
+//1)Heat transfer through the wall is steady
+//2)Heat transfer is one-imensional
+//Properties:
+k=0.9;//[W/m.K]
+disp("W/m.K",k,"The thermal conductivity is given to be")
+//Heat transfer through the wall is by conduction
+A=(3*5);//[m^2]
+disp("m^2",A,"The area of the wall is")
+T1=16;//temperature of inner wall[degree Celcius]
+T2=2;//Temperature of Outer wall[degree Celcius]
+delta_T=T1-T2;//Temperature Gradient[degree Celcius]
+L=0.3;//Length of wall along which heat is being transferred[m]
+R_wall=L/(k*A);//[degree Celcius/W]
+disp("degree Celicus/W",R_wall,"Thermal Resistnace offered by the wall is")
+Q_=(delta_T/R_wall);//[W]
+disp("W",Q_,"The steady rate of heat transfer through the wall is ")
|