blob: eadec77178b38d4814926cb596602aab0b52ca86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//initialisation of variables
d=0.8
cv=0.01
db=0.6
cvb=0.005
//CALCULATIONS
v=cv/d
vc=v*2000
vb=cvb/db
vcb=vb*2000
r=vc/vcb
//results
printf (' Ratio of critical velocities= %.1f',r)
|