blob: 788f9a734ad4ae5c3ffa98dd6220d8ea3241c1c5 (
plain)
1
2
3
4
5
6
7
8
9
|
//Circular ring
//refer fig. 21.9 (a) and (b)
//Radius of gyration about centre of the ring
//Kz^2=(((R1^2)+(R2^2))/(2))+R2^2
//thus
Kz=sqrt(((1+0.75*0.75)/(2))+(0.75^2))
T=2*%pi*sqrt(1.34375/(9.81*0.75)) //sec
printf("\nT=%.3f sec",T)
|