From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 914/CH12/EX12.13/ex12_13.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 914/CH12/EX12.13/ex12_13.sce (limited to '914/CH12/EX12.13/ex12_13.sce') 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"); -- cgit