diff options
Diffstat (limited to '689/CH5/EX5.1/1.sce')
-rw-r--r-- | 689/CH5/EX5.1/1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
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) :");
+
|