Biomech-Sim-Toolbox 1
Toolbox for movement simulation and analysis
Loading...
Searching...
No Matches
gait3d_pelvis213_torque.h
Go to the documentation of this file.
1// gait3d_pelvis213_torque.h
2// This file defines the data structure that holds model parameters for the gait3d_pelvis213_torque model
3
5#include "../contact/gait3d_contact.h"
6
7// M_PI is known in gcc but not in Visual C++ 2008
8#ifndef M_PI
9#define M_PI 3.1415926535897932384626433832795
10#endif
11
12
13// structure that holds parameters for one joint
14typedef struct {
15 double K1; // linear stiffness (small), in N/rad
16 double K2; // quadratic stiffness, outside range of motion, in N/rad^2
17 double B; // damping, in Ns/rad
18 double qneutral; // neutral position to compute passive joint moments
19 double qmin_passiveMoment, qmax_passiveMoment; // range of dof for computation of passive moments
20
21} jointprop;
Definition: gait10dof18musc.h:45