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 --- 1466/CH15/EX15.1/15_1.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 1466/CH15/EX15.1/15_1.sce (limited to '1466/CH15/EX15.1/15_1.sce') diff --git a/1466/CH15/EX15.1/15_1.sce b/1466/CH15/EX15.1/15_1.sce new file mode 100755 index 000000000..91021a399 --- /dev/null +++ b/1466/CH15/EX15.1/15_1.sce @@ -0,0 +1,20 @@ + +clc +//initialisation of variables +kl=0.2 +kd=0.05 +A=4//ft^2 +g=32.2//ft/sec^2 +wa=0.081//lb +ww=62.4//lb +v=20//ft/sec +//CALCULATIONS +La=kl*A*wa*v*v/g +Da=kd*A*wa*v*v/g +Lw=kl*A*ww*v*v/g +Dw=kd*A*ww*v*v/g +//RESULTS +printf ('\n force on the plate for fluid air= %.3f lb',La) +printf ('\n resistance of the plate for fluid air= %.3f lb',Da) +printf ('\n force on the plate for fluid water= %.f lb',Lw) +printf ('\n resistance of the plate for fluid air= %.f lb',Dw) -- cgit