blob: 65728eafe15454daa67390528c655c4ff538783a (
plain)
1
2
3
4
5
6
7
8
9
|
//Power driven wheel
omega0=30*%pi
omega=0
theta=720*%pi //rad
//thus using kinematic equations
alpha=-1.9635 //rad/sec^2
//Also
t=(30*%pi)/(1.9635) //sec
printf("\nRetardation is %.3f rad/sec^2\nt=%.3f sec",-alpha,t)
|