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.1/1.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 689/CH5/EX5.1/1.sce (limited to '689/CH5/EX5.1') diff --git a/689/CH5/EX5.1/1.sce b/689/CH5/EX5.1/1.sce new file mode 100644 index 000000000..ae484aa13 --- /dev/null +++ b/689/CH5/EX5.1/1.sce @@ -0,0 +1,15 @@ +clc; funcprot(0); +//Example 5.1 Flat Plates Nornmal to Direction to Flow + +// Initialisation of variables +l = 10; +h = 8; +V = 40; + +// Calculations +A = l*h; +F = 0.00327*A*V^2; + +//Results +disp(F,"Force in plate (lb) :"); + -- cgit