Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
figure freefall
  • Loading branch information
Braisted committed Sep 14, 2017
1 parent 1e96b43 commit c658d93
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Binary file modified Problem 3/figure01.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions README.md
Expand Up @@ -54,4 +54,28 @@ saveas(h,'figure_02.png')
```
![Cumulative US Energy Use per Year from 1949-2016](./Problem 4/figure_02.png)

#Problem freefall

```MATLAB
g=figure();
hold on
timespan=30;
for h=[.1,1,5]
freefall(h,timespan)
end
set(0, 'defaultAxesFontSize', 16)
set(0,'defaultTextFontSize',14)
set(0,'defaultLineLineWidth',3)
set(gcf, 'Position', [200, 200, 1000, 800])
xlabel('Time (seconds)')
ylabel('Velocity (meters/second)')
legend('v analytical(0.1)','v numerical(0.1)','v analytical(1)','v numerical(1)','v analytical(5)','v numerical(5)','Location','southeast')
title('Velocity Comparison by Varying Time Steps')
saveas(g,'figure01.png')
```

![Velocity Comparison by Varying Time Steps](./Problem 3/figure01.png)

#Problem 5 (Velocity and Acceleration)

0 comments on commit c658d93

Please sign in to comment.