summaryrefslogtreecommitdiff
path: root/914/CH12/EX12.13/ex12_13.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /914/CH12/EX12.13/ex12_13.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 '914/CH12/EX12.13/ex12_13.sce')
-rwxr-xr-x914/CH12/EX12.13/ex12_13.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/914/CH12/EX12.13/ex12_13.sce b/914/CH12/EX12.13/ex12_13.sce
new file mode 100755
index 000000000..f776336a2
--- /dev/null
+++ b/914/CH12/EX12.13/ex12_13.sce
@@ -0,0 +1,16 @@
+clc;
+warning("off");
+printf("\n\n example12.13 - pg595");
+// given
+distance=1/12; //[ft]
+time=60; //[sec]
+Ut=distance/time;
+mu=1.68; //[lb/ft*sec] - viscosity
+pp=58; //[lb/ft^3] - density of sphere
+p=50; //[lb/ft^3] - density of polymer solution
+g=32; //[ft/sec] - acceleration due to gravity
+rp=((9*mu)*(Ut)*((2*g)^(-1))*((pp-p)^(-1)))^(1/2);
+printf("\n\n The required particle diameter would be about %f inch",rp*2*12);
+Nre=(rp*2*Ut*p)/(mu);
+disp(Nre,"Nre=");
+printf("\n\n This reynolds number is well within the stokes law region ; thus the design is reasonable");