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 --- 1379/CH11/EX11.1.1/example11_1.sce | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 1379/CH11/EX11.1.1/example11_1.sce (limited to '1379/CH11/EX11.1.1') diff --git a/1379/CH11/EX11.1.1/example11_1.sce b/1379/CH11/EX11.1.1/example11_1.sce new file mode 100755 index 000000000..440dca88f --- /dev/null +++ b/1379/CH11/EX11.1.1/example11_1.sce @@ -0,0 +1,34 @@ + + +//exapple 11.1 +clc; funcprot(0); +// Initialization of Variable +pi=3.1428; +d=0.3/1000; +mu=2.21/100000; +rho=106.2;//density under operating condition +u=2.1/100; +rhos=2600;//density of particles +l=3.25; +g=9.81; +dt=0.95//fluidising diameter +//part 1 +//calculation +a=u^2/d/g*d*rho*u/mu*(rhos-rho)/rho*l/dt; +if a>100 then + disp(a,"Bubbling fluidisation will occur as value is ") +end +//part 2 +Q=2.04/100000; +rhos=2510; +rho=800; +mu=2.85/1000; +l=4.01; +dt=0.63; +d=0.1/1000; +u=Q*4/pi/dt^2; +a=u^2/d/g*d*rho*u/mu*(rhos-rho)/rho*l/dt; +if a<100*10^-4 then//compare as value of a is much less than 100 + disp(a,"fluidisation occur in smooth mode as value is:"); +end + -- cgit