blob: e652ca10d5e4f231f8900577265670c80036be18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
//
r1=2.550
r2=2.500
s=r1-r2
d=0.002
D=100
n=5
r=(n*d*D/s)
printf("\n R= %0.3f ",r)
alp=(s/(n*D))*206265
printf("\n sensitiveness of bubble is %0.3f seconds',alp)
|