Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Extra Credit
  • Loading branch information
sak13022 committed Dec 6, 2017
1 parent ef191ea commit 742b71e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion EC_Plane.m
Expand Up @@ -20,4 +20,5 @@ distance=x(end);
plot(x,y);
title('Paper Airplane Flight Path')
xlabel('Distance (x)')
ylabel('Height (x)')
ylabel('Height (x)')
axis([0 50 0 3]);
Binary file added FligthPath.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion README.md
@@ -1,2 +1,11 @@
# Paper_Airplane
# Paper Airplane Extra Credit
Paper airplane extra credit

The function EC_plane takes as inputs the initial launch angle, theta0, initial height, y0, and an initial velocity, v0, and outputs the distance a paper airplane will travel with those initial conditions. EC_Plane_optimum optimizes the initial angle and velocity at a given height of 2 m with L/D=5.2 and a terminal velocity of 5.5 m/s.

The optimized initial angle is 0 rad.
The optimized initial velocity is 10 m/s (if 10 m/s is the maximum initial velocity)
The maximum distance traveled by the paper airplane is 36 m.

#Paper Airplane Maximum Distance Flight Path
![Optimal Plot](FlightPath.png)

0 comments on commit 742b71e

Please sign in to comment.