Write a function ball that calculates the trajectory of a volleyball in 2 dimensions numerically using the Euler method

17 次查看(过去 30 天)
Write a function ball that calculates the trajectory of a volleyball in 2 dimensions numerically using the Euler method. The initial values x(0) und v(0) should be passed to the function. It should return a matrix for the place x(t) and velocity v(t), respectively, that contain the values for all time instances in the columns (rows contain the values for the two dimensions). Stop the calculation when the ball hits the floor. The trajectory should be plotted and the values of time of flight and maximum range should be calculated.
  1 个评论
Jan
Jan 2018-5-2
This is a homework question. Of course the forum will not solve your homework, because this would not be productive. So please post what you have tried so far and ask a specific question. Then we can assist you.

请先登录,再进行评论。

回答(1 个)

Prajit T R
Prajit T R 2018-5-2
Hi Munther
Check out this code:
clear x,y,theta,u,n,g,h,u0;
x(1) = 0;
y(1) = 0; g = 9.81; h = 5; u0 = 80;
theta = pi / 6;
u(1) = u0*sin(theta);
for n=2:10
x(n) = x(n - 1) + v0*cos(theta)* h;
u(n) = u(n - 1) - h*g;
y(n) = y(n-1) + h*u(n-1);
end
plot(x,y);
You can work on modifying this code to suit your requirement. I hope this would be a good starting point to help you with your problem.
Cheers

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by