Search found 47 matches

by hamed kouchebaghi
Wed May 13, 2020 10:35 am
Forum: OpenSim
Topic: Visualization a model
Replies: 18
Views: 1042

Re: Visualization a model

Hello, hope you having good time. I copied arm26.osim file to the Current Folder in MATLAB and ran the following code import org.opensim.modeling.* arm = Model('arm26.osim'); arm.setUseVisualizer(true); state = arm.initSystem(); % etc. the problem about java exception didn't appear and the following...
by hamed kouchebaghi
Wed May 13, 2020 10:04 am
Forum: OpenSim
Topic: opensim 4.1
Replies: 6
Views: 374

Re: opensim 4.1

thank you so much, the problem solved.
by hamed kouchebaghi
Tue May 12, 2020 11:24 am
Forum: OpenSim
Topic: opensim 4.1
Replies: 6
Views: 374

Re: opensim 4.1

anyone can help me with this please ??

I'll be thankful
by hamed kouchebaghi
Mon May 11, 2020 4:45 am
Forum: OpenSim
Topic: opensim 4.1
Replies: 6
Views: 374

opensim 4.1

Hello, I newly downloaded opensim version 4.1 and loaded a model but it is incomplete like the image below.. I also tried it for other models to see if it fixes but it is the same. (And I'd better say that I didn't face this problem in the OpenSim 4.0 version, and after I uninstalled the previous ve...
by hamed kouchebaghi
Sat May 09, 2020 11:49 am
Forum: OpenSim
Topic: Visualization a model
Replies: 18
Views: 1042

Re: Visualization a model

I replaced the code you sent with the first part of the code on Github, and ran it but nothing will appear and I face this error Java exception occurred: java.io.IOException: Object: Cannot open file arm26.osim. It may not exist or you do not have permission to read it. Thrown at object.cpp:105 in O...
by hamed kouchebaghi
Thu May 07, 2020 12:14 pm
Forum: OpenSim
Topic: Visualization a model
Replies: 18
Views: 1042

Re: Visualization a model

There is an example on the GitHub page here: https://github.com/opensim-org/opensim-core (scroll down to the "Simple example" heading and expand the "Matlab" section). where can I find the Arm26 model code to visualize in MATLAB ? as the example for arm model you previously sent me. could you pleas...
by hamed kouchebaghi
Tue May 05, 2020 9:55 am
Forum: OpenSim
Topic: Visualization a model
Replies: 18
Views: 1042

Re: Visualization a model

thank you so much, that was helpful.
I want to visualize Arm26. what should I do at this step?
by hamed kouchebaghi
Mon May 04, 2020 10:27 am
Forum: OpenSim
Topic: Visualization a model
Replies: 18
Views: 1042

Visualization a model

hello dear all,

I have difficulty in visualization of a model through MATLAB. could you give me a step by step to-do list or maybe the code which I have to run?
And I'd better say that I have created the interface between the two software.

Thanks and the Best,
Hamed
by hamed kouchebaghi
Wed Apr 22, 2020 9:39 am
Forum: OpenSim
Topic: java exception
Replies: 1
Views: 198

java exception

hello how can i solve Java Exception problem? Java exception occurred: java.io.IOException: Object: Cannot open file C:\OpenSim 4.0\Models\Arm26\ComputedMuscleControl\gait2354.osim. It may not exist or you do not have permission to read it. Thrown at object.cpp:105 in Object(). at org.opensim.modeli...
by hamed kouchebaghi
Mon Mar 23, 2020 11:11 am
Forum: OpenSim
Topic: Interfacing OpenSim/Matlab
Replies: 1
Views: 397

Interfacing OpenSim/Matlab

Hello , Through this link: https://github.com/opensim-org/opensim-core I found the following code %% Import Java libraries import org.opensim.modeling.* arm = Model(); arm.setName('bicep_curl'); arm.setUseVisualizer(true); % --------------------------------------------------------------------------...