blob: 9bfc490b94fd35efe153f8e699f321173d74c6f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialisation of variables
g=32.2//ft/sec^2
n=(0.01*30.5)/(453.6*32.2)
H=2//ft
D=1/12
//CALCULATIONS
p=62.4/g
v=n/p
k=v/(D*sqrt(2*g*H))
//RESULTS
printf (' value of non dimensional constant= %.2e',k)
|