blob: ecf382cb9c355f1fad0faf1270d245aaaa177688 (
plain)
1
2
3
4
5
6
7
8
|
//Example 16.6
m=900;//Mass of car (kg)
k=6.53*10^4;//Force constant of suspension system (N/m)
X=0.100;//Amplitude (m)
v_max=sqrt(k/m)*X;//Vertical velocity (m/s)
printf('Maximum vertical velocity = %0.3f m/s',v_max)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|