summaryrefslogtreecommitdiff
path: root/2762/CH3/EX3.1.1/3_1_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/CH3/EX3.1.1/3_1_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/CH3/EX3.1.1/3_1_1.sce')
-rwxr-xr-x2762/CH3/EX3.1.1/3_1_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2762/CH3/EX3.1.1/3_1_1.sce b/2762/CH3/EX3.1.1/3_1_1.sce
new file mode 100755
index 000000000..80d14caec
--- /dev/null
+++ b/2762/CH3/EX3.1.1/3_1_1.sce
@@ -0,0 +1,16 @@
+//Transport Processes and Seperation Process Principles
+//Chapter 3
+//Example 3.1-1
+//Principles of Momentum Transfer and Applications
+//given data
+rho=1.137;
+mu=1.9e-5;
+Dp=0.042;
+v0=23;
+Re=(Dp*v0*rho)/mu
+//from the mentioned graph,
+Cd=0.47;//drag coefficient as seen from the graph
+Ap=(%pi*Dp*Dp)/4;//surface area of sphere
+Fd=Cd*(v0*v0/2)*rho*Ap;//drag force
+mprintf("drag coefficient= %f",Cd)
+mprintf("drag force= %f N",Fd)