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 /2762/CH4/EX4.1.1/4_1_1.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 '2762/CH4/EX4.1.1/4_1_1.sce')
-rwxr-xr-x | 2762/CH4/EX4.1.1/4_1_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2762/CH4/EX4.1.1/4_1_1.sce b/2762/CH4/EX4.1.1/4_1_1.sce new file mode 100755 index 000000000..5e5178fa6 --- /dev/null +++ b/2762/CH4/EX4.1.1/4_1_1.sce @@ -0,0 +1,12 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 4
+//Example 4.1-1
+//Principles of Steady State Heat Transfer
+//si units
+//given data
+k=0.048;//thermal conductivity
+delx=0.0254;//thickness
+T1=352.7;//temp of one surface
+T2=297.1;
+qbya=(k/delx)*(T1-T2);//heAT lost per m2
+mprintf("heat loss per m2= %f W/m2",qbya)
|