summaryrefslogtreecommitdiff
path: root/2762/CH2/EX2.9.1/2_9_1.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2762/CH2/EX2.9.1/2_9_1.sce
downloadScilab-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/CH2/EX2.9.1/2_9_1.sce')
-rwxr-xr-x2762/CH2/EX2.9.1/2_9_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2762/CH2/EX2.9.1/2_9_1.sce b/2762/CH2/EX2.9.1/2_9_1.sce
new file mode 100755
index 000000000..818b38206
--- /dev/null
+++ b/2762/CH2/EX2.9.1/2_9_1.sce
@@ -0,0 +1,16 @@
+//Transport Processes and Seperation Process Principles
+//Chapter 2
+//Example 2.9-1
+//Principles of Momentum Transfer and Overall Balances
+//given data
+rho=820;//density in kg/m3
+del=1.7/1000;//film thikness in m
+g=9.806;//g force
+mu=0.2;//viscocity in Pa.s
+T=(rho^2)*(del^3)*g/(3*mu);//T= mass flow rate per unit width of wall
+Re=(4*T)/mu;//Reynolds Number
+v=(rho*g*(del^2))/(3*mu);//avg velocity
+mprintf("mass flow rate per unit width of wall= %f kg/(s.m)",T)
+mprintf(" Reynolds Number= %f",Re)
+mprintf(" avg velocity= %f m/s",v)
+//end