Skip to content

Commit

Permalink
Moved yeadon measurement data into raw data directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
moorepants committed Feb 18, 2015
1 parent c8874a6 commit 1d4be2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
File renamed without changes.
6 changes: 5 additions & 1 deletion src/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
from pydy.codegen.ode_function_generator import generate_ode_function

from fast_interpolate import Interpolator
import utils

PATHS = utils.config_paths()

sym_kwargs = {'positive': True, 'real': True}
me.dynamicsymbols._t = sy.symbols('t', **sym_kwargs)
Expand Down Expand Up @@ -434,7 +437,8 @@ def _generate_closed_loop_eoms(self):

def _numerical_parameters(self):

h = yeadon.Human('JasonYeadonMeas.txt')
h = yeadon.Human(os.path.join(PATHS['raw_data_dir'],
'JasonYeadonMeas.txt'))

hip_pos = h.J1.pos
ankle_pos = h.J2.solids[1].pos
Expand Down

0 comments on commit 1d4be2f

Please sign in to comment.