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 --- 2066/CH9/EX9.1/9_1a.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 2066/CH9/EX9.1/9_1a.sce (limited to '2066/CH9/EX9.1') diff --git a/2066/CH9/EX9.1/9_1a.sce b/2066/CH9/EX9.1/9_1a.sce new file mode 100755 index 000000000..ac3110760 --- /dev/null +++ b/2066/CH9/EX9.1/9_1a.sce @@ -0,0 +1,18 @@ +clc +clear +//Initialization of variables +rho=2.45 //slugs/ft^3 +mu=9.2e-3 //lb-sec/ft^2 +x=3 +v=3 //ft/s +B=6/12 //ft +L=36/12 //ft +//calculatons +Nr=v*x*rho/mu +y=[1.32 1.46 1.328] +Cd=y*Nr^(-0.5) +Fd=2*Cd*B*L*(0.5*rho*v^2) +//results +disp("Drag on the plates using different formulae blasius, parabola and pohlhauser in order") +format('v',6);Fd +disp(Fd) -- cgit