blob: 132668ccbbc00bb77b538a6c34f5e6568536bb55 (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 6_7
clc();
clear;
//To calculate how large a forward push given to the rocket
m=1300 //units in Kgs
vf=50000 //units in meters/sec
v0=0 //units in meters/sec
F=((m*vf)-(m*v0)) //units in Newtons
printf("The Thrust is F=%d Newtons",F)
|