summaryrefslogtreecommitdiff
path: root/689/CH5/EX5.2
diff options
context:
space:
mode:
Diffstat (limited to '689/CH5/EX5.2')
-rw-r--r--689/CH5/EX5.2/2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/689/CH5/EX5.2/2.sce b/689/CH5/EX5.2/2.sce
new file mode 100644
index 000000000..2d8ccaf0f
--- /dev/null
+++ b/689/CH5/EX5.2/2.sce
@@ -0,0 +1,15 @@
+clc; funcprot(0);
+//Example 5.2 Flat Plates Nornmal to Direction to Flow
+
+// Initialisation of variables
+V1 = 1;
+F1 = 0.012;
+V2 = 35;
+
+// Calculations
+A = F1/(0.00327*V1^2)
+F2 = 0.00327*A*V2^2;
+
+//Results
+disp(F2,"Force on windshield when wind velocity is 35 mph (lb) :");
+