You are on page 1of 1

clc; %This is program for calculating velocity % of falling parachutist by exact solution %constant values g=9.8; cd=12.5; m=68.

1; %formulation t = 0:2:12; %range for time values v = ((g*m/cd)*(1-exp((-cd/m)*t))); %formulation for solution plot( t,v);

You might also like