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