From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 689/CH5/EX5.4/4.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 689/CH5/EX5.4/4.sce (limited to '689/CH5/EX5.4') diff --git a/689/CH5/EX5.4/4.sce b/689/CH5/EX5.4/4.sce new file mode 100644 index 000000000..a17dceaa7 --- /dev/null +++ b/689/CH5/EX5.4/4.sce @@ -0,0 +1,21 @@ +clc; funcprot(0); +//Example 5.4 Inclined Flat Plates + +// Initialisation of variables +Cl = 0.73; // From Figure +Cd = 0.164; // From Figure +l = 12; +w = 2; +alpha = 12; +V = 50; +rho = 0.002378; + +// Calculations +A = l*w; +L = (Cl*rho*A*V^2)/2; +D = (Cd*rho*A*V^2)/2; +R = sqrt(L^2+D^2); + +//Results +disp(R,"Total Force (lb) :", D ,"Force Parallel to Airstream (lb):",L,"Force Parallel to Airstream (lb):"); + -- cgit