blob: ae484aa1379425ed444774116c04759f78d5b388 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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) :");
|