Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added hw3 and square plate
  • Loading branch information
rcc02007 committed Apr 25, 2018
1 parent 6b4454f commit 166b93b
Show file tree
Hide file tree
Showing 8 changed files with 863 additions and 140 deletions.
139 changes: 69 additions & 70 deletions hw2_work/.ipynb_checkpoints/hw2_work-checkpoint.ipynb

Large diffs are not rendered by default.

139 changes: 69 additions & 70 deletions hw2_work/hw2_work.ipynb

Large diffs are not rendered by default.

Binary file modified hw2_work/octave-workspace
Binary file not shown.
3 changes: 3 additions & 0 deletions hw2_work/ode4.m
Expand Up @@ -2,6 +2,9 @@ function dr=ode4(t,r,k,m)
% first order ODEs for two masses attached by a linear spring % first order ODEs for two masses attached by a linear spring
% k is spring stiffness (assume le=0) % k is spring stiffness (assume le=0)
% m is mass of each % m is mass of each
% r=[ radius, d(radius)/dt, theta, d(theta)/dt]
%dr=[ d(radius)/dt,dd(radius)/ddt, d(theta)/dt, dd(theta)/ddt]
%
dr=zeros(size(r)); dr=zeros(size(r));
dr(1)=r(2); dr(1)=r(2);
dr(3)=r(4); dr(3)=r(4);
Expand Down
Binary file modified octave-workspace
Binary file not shown.
Binary file added plate.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
316 changes: 316 additions & 0 deletions rotating_ball_bearing.ipynb

Large diffs are not rendered by default.

406 changes: 406 additions & 0 deletions rotating_plate.ipynb

Large diffs are not rendered by default.

0 comments on commit 166b93b

Please sign in to comment.