blob: 3539dfc4bc9647776860e7941b4c1b7067f214b6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 4.2
m=2100;//Mass of the system (kg)
a=49;//Initial acceleration (m/s^2)
f=650;//Frictional force (N)
T=(m*a+f)/4;//Thrust exerted by each rocket (N), See Equation 4.14
//There are 4 rockets. Net horizontal force F_net=m*a (N)
printf('Individual thrust exerted by each rocket = %0.1e N',T)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|