Search found 135 matches

by Hide Kimpara
Mon Jun 01, 2020 8:34 am
Forum: OpenSim
Topic: Scaling using Python API
Replies: 12
Views: 1848

Re: Scaling using Python API

Hello Ayman,

Yes, it was helpful for me. When I delete the of GenericModelMaker, I did not see any errors. The scaling operation was also done properly as I saw with GUI-tool.

Thank you,
Hide
by Hide Kimpara
Wed May 06, 2020 11:37 pm
Forum: OpenSim
Topic: Scaling using Python API
Replies: 12
Views: 1848

Re: Scaling using Python API

Hello,

I realized that marker data should be separated from model data. When I merged marker data into osim model file, scaling tool was failed in script. But GUI-based Scale tool works with merged osim file.

Now, I found my solution.

Thank you,
Hide
by Hide Kimpara
Tue May 05, 2020 8:01 pm
Forum: OpenSim
Topic: Scaling using Python API
Replies: 12
Views: 1848

Re: Scaling using Python API

Hello, I have similar experience with ScaleTool. Recently, I downloaded the latest OpenSim ver.4.1 and tried to analyze gait motion database with more than 100 subject data. Because of many subject data, I really wanted to run overall process from scaling to estimating muscle activities in automatic...
by Hide Kimpara
Tue Nov 05, 2019 7:47 pm
Forum: OpenSim
Topic: Modeling flexible cables with take-up machines
Replies: 0
Views: 73

Modeling flexible cables with take-up machines

Dear experts, I'm trying to simulate a pulling cable with take-up machines. Servo motors on the take-up machines usually control positions and velocities. So, I'd like to express cable tensions based on roll length. I checked previous discussion on the forum: https://simtk.org/plugins/phpBB/viewtopi...
by Hide Kimpara
Thu Jun 06, 2019 3:35 am
Forum: OpenSim
Topic: get contact force vector during C++ runtime
Replies: 2
Views: 258

Re: get contact force vector during C++ runtime

Hi Dimitar! Thank you for your response. Yes, I made a double check with both of GUI and ForceReporter outputs. I changed realization from acceleration to dynamics stage, but get force does not give me any outputs. I remember you used generalized force data for task space control. How did you monito...
by Hide Kimpara
Mon Jun 03, 2019 11:49 pm
Forum: OpenSim
Topic: get contact force vector during C++ runtime
Replies: 2
Views: 258

get contact force vector during C++ runtime

Dear Experts, I have a question about getting method of contact force data through C++ OpenSim API. I used something like: osimModel.realizeAcceleration(si); auto vals = osimModel.getForceSet().get(ContactForceName).getRecordValues(si); However, obtained values show always zero even the contact forc...
by Hide Kimpara
Mon Nov 05, 2018 2:07 pm
Forum: OpenSim
Topic: methods with JointReaction
Replies: 2
Views: 266

Re: methods with JointReaction

Hello Chris, Thank you for prompt response. I think it is almost same point at previous talk. https://simtk.org/plugins/phpBB/viewtopicPhpbb.php?f=91&t=8469 But this time, I'd like to solve this. For example, I tried to write an example as following: SimTK::State& si = osimModel.initSystem(); osimMo...
by Hide Kimpara
Mon Nov 05, 2018 11:01 am
Forum: OpenSim
Topic: methods with JointReaction
Replies: 2
Views: 266

methods with JointReaction

Hello, I'm still using JointReaction in C++. In the manual, this class has setupStorage() method. I thought this would enable storage of recorded joint reaction data. But I tried to find it in OpenSim 4.0 (OpenSim 4.0-2018-08-27-ae111a49), Visual C++ did not indicate this method. https://simtk.org/a...
by Hide Kimpara
Thu Sep 06, 2018 5:55 am
Forum: OpenSim
Topic: Femur Fracture Modelling
Replies: 1
Views: 151

Re: Femur Fracture Modelling

Hi Jessica, OpenSim is designed based on multi-body system, so each bone segment is expressed as rigid body. If you know appropriate injury criteria or threshold for femur fracture based on maximum axial, shear or bending forces, it may be good to see contact forces or joint reaction forces. If you ...
by Hide Kimpara
Tue Jul 31, 2018 11:33 am
Forum: OpenSim
Topic: Modify a model in opensim GUI
Replies: 2
Views: 275

Re: Modify a model in opensim GUI

Hi, My experience with GUI would be good for positioning or scaling models. Also, marker tool is good for identify location on ground or any local frames. But if you are willing to create new body or new items, I recommend to edit osim file directly through XML editors. Modification works were back ...