Skip to content
Permalink
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?
Go to file
 
 
Cannot retrieve contributors at this time

06_initial_value_ode

Problem 2

y' = - y

  • Step size of t = 0.1 sec y' = -y, solved using three methods

Problem 3

y'' +9y = 0

  • Step size of t = 0.01 sec y'' + 9y = 0, solved using three methods

Problem 4

v' = g-cd/m*v^2

  • Step size of t = 0.1 sec v' = g-cd/m*v^2, solved for x position using three methods

Problem 5

Phugoid models, solved using Euler's and ode23