Skip to content

the first in class design challenge 2/20/2017

Notifications You must be signed in to change notification settings

sas11027/Paper_Airplane_Challenge_1

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 

Paper_Airplane_Challenge_1

the first in class design challenge 2/20/2017

function dudt=phugoid(t,u) g = 9.81 ; % gravity in m s^(-2) v_t = 5.5; % trim velocity in m s^(-1)
C_D = 1/5.2; % drag coefficient --- or D/L if C_L=1 C_L = 1 ; % for convenience, use C_L = 1 pi = 3.1415926;

v = u(1); theta = u(2); x = u(3); y = u(4); dudt = [-gsin(theta) - C_D/C_Lg/v_t^2v^2, -gcos(theta)/v + g/v_t^2v, vcos(theta), v*sin(theta)]';

end %ode45

About

the first in class design challenge 2/20/2017

Resources

Stars

Watchers

Forks

Releases

No releases published