Search found 36 matches

by Kevin Tanghe
Tue Dec 18, 2018 5:25 am
Forum: OpenSim
Topic: RRA on multiple gait trials of same subject
Replies: 2
Views: 243

Re: RRA on multiple gait trials of same subject

Thank you for the answer. For the interested reader: in the suggested paper an adjusted model was made for each trial separately. Then a final model was made by averaging the mass properties of the bodies of the different models.

Any other suggestions?
by Kevin Tanghe
Mon Dec 17, 2018 12:35 pm
Forum: OpenSim
Topic: RRA on multiple gait trials of same subject
Replies: 2
Views: 243

RRA on multiple gait trials of same subject

Hi, I have experimentally measured kinematics and ground reaction forces of several gait trials of the same subject. I would like to use the RRA tool to adjust the mass(center) of the different bodies in order to get the residuals on the pelvis as small as possible. However, it does not make sense t...
by Kevin Tanghe
Mon Jun 06, 2016 6:19 am
Forum: OpenSim
Topic: problem search function of this forum
Replies: 2
Views: 237

Re: problem search function of this forum

It seems to be fixed now.
by Kevin Tanghe
Sun May 22, 2016 2:16 am
Forum: OpenSim
Topic: problem search function of this forum
Replies: 2
Views: 237

problem search function of this forum

Hi, I have a problem with the search function of this forum. If I type a word and hit the search button, I get the error message: "You must specify at least one word to search for. Each word must consist of at least 3 characters and must not contain more than 14 characters excluding wildcards." I tr...
by Kevin Tanghe
Mon Mar 21, 2016 4:34 am
Forum: OpenSim
Topic: Applying residuals at pelvis
Replies: 5
Views: 296

Re: Applying residuals at pelvis

If I'm correct you know
[*] The positions, velocities and accelerations of every body
[*] All external forces, except the external force from the chair.

In this case, you can find the unknown external force by the law of conservation of momentum.
by Kevin Tanghe
Wed Jan 06, 2016 2:52 am
Forum: OpenSim
Topic: current inverseDynamicsSolver can be faster
Replies: 2
Views: 378

Re: current inverseDynamicsSolver can be faster

Ok, I reported the issue.
by Kevin Tanghe
Tue Jan 05, 2016 3:27 am
Forum: OpenSim
Topic: current inverseDynamicsSolver can be faster
Replies: 2
Views: 378

current inverseDynamicsSolver can be faster

Hi, I think the current inverse dynamics solver is suboptimal and can be faster. In the current code, the stage is realized to dynamics. This is however not necessary, the velocity stage should suffice, since this stage already allows to compute the coriolis forces. I added some code, where I compar...
by Kevin Tanghe
Thu Nov 19, 2015 3:09 am
Forum: OpenSim
Topic: get coriolis and gyroscopic forces
Replies: 6
Views: 513

Re: get coriolis and gyroscopic forces

Thank you very much. Everything works now!

Just out of interest, why does osimModel.getBodySet().get(i).getInertia(rInertia) does not return the same result as osimModel.getMatterSubsystem().getMobilizedBody(i).getBodyMassProperties(s).calcInertia() ?
by Kevin Tanghe
Wed Nov 18, 2015 6:49 am
Forum: OpenSim
Topic: get coriolis and gyroscopic forces
Replies: 6
Views: 513

Re: get coriolis and gyroscopic forces

Thanks for your answer. Since I want to compute h for the total system I think I still need to multiply with the jacobian of each body: mbs->realize(s, SimTK::Stage::Dynamics); for (SimTK::MobilizedBodyIndex i(1); i < sms.getNumBodies(); ++i) { colForce = osimModel.getMatterSubsystem().getTotalCentr...
by Kevin Tanghe
Tue Nov 17, 2015 8:51 am
Forum: OpenSim
Topic: get coriolis and gyroscopic forces
Replies: 6
Views: 513

get coriolis and gyroscopic forces

Hi, The dynamic equation of a total system can be written as: M(q) * udot + h(q, u) + g(q) = tau + J^T*Fext with M the mass matrix, h the coriolis and gyroscopic forces, g the gravitational forces, tau the mobilizer forces, J the jacobian and Fext the external forces. I'm interested to know the valu...