Search found 2252 matches
- Fri Aug 04, 2023 10:05 am
- Forum: OpenSim
- Topic: Local Reference Systems - Ground Reference System : rotation and translation
- Replies: 2
- Views: 863
Re: Local Reference Systems - Ground Reference System : rotation and translation
Hello, Typically frames are placed on other frames to form a chain, and the GUI shows the relative translation/rotation between a frame and its "parent" frame. However there are API methods that you can call to compute the transformation between any pair of frames, and then to decompose into transla...
- Fri Aug 04, 2023 9:46 am
- Forum: OpenSim
- Topic: Unable to replicate ID in GUI with InverseDynamicsTool
- Replies: 4
- Views: 863
Re: Unable to replicate ID in GUI with InverseDynamicsTool
Thanks Dan for the help and Finn for reporting.
Finn, if you can post the setup file and relevant info from the data files that would be useful so we can try to give more informative messages to help troubleshooting in the future.
Best regards,
-Ayman
Finn, if you can post the setup file and relevant info from the data files that would be useful so we can try to give more informative messages to help troubleshooting in the future.
Best regards,
-Ayman
- Wed Jul 05, 2023 9:18 am
- Forum: OpenSim
- Topic: Error: [Errno 13] Permission denied while setting up Anaconda
- Replies: 4
- Views: 939
Re: Error: [Errno 13] Permission denied while setting up Anaconda
Hi Avery,
You should be all set, just keep in mind that we have two different conda packages opensim and opensim-moco, just make sure you pick the one that meets you need (since you mentioned you're new to Moco).
Best regards,
-Ayman
You should be all set, just keep in mind that we have two different conda packages opensim and opensim-moco, just make sure you pick the one that meets you need (since you mentioned you're new to Moco).
Best regards,
-Ayman
- Mon Jul 03, 2023 11:32 am
- Forum: OpenSim
- Topic: Smaller view of imported prosthesis
- Replies: 2
- Views: 568
Re: Smaller view of imported prosthesis
Hello, The likely reason for this is a discrepancy between the units used for OpenSim model (default to meters) and the prosthesis. Please make sure you convert the prosthesis into meters before importing. For the geometry mesh files this usually can be done by applying a scale factor in OpenSim rat...
- Mon Jul 03, 2023 11:28 am
- Forum: OpenSim
- Topic: how to change the resolution
- Replies: 1
- Views: 445
Re: how to change the resolution
Hello Ruth,
Please refer to the forum thread below for discussion/suggestions to resolve this issue.
viewtopicPhpbb.php?f=91&t=13900
Best regards,
-Ayman
Please refer to the forum thread below for discussion/suggestions to resolve this issue.
viewtopicPhpbb.php?f=91&t=13900
Best regards,
-Ayman
- Fri Jun 30, 2023 11:42 am
- Forum: OpenSim
- Topic: Extract marker location in respect of time
- Replies: 1
- Views: 451
Re: Extract marker location in respect of time
Hello, Assuming you're working with the API in Matlab (based on your post tags), you can create a TimeSeriesTableVec3 from the marker data then extract a specific column using getDependentColumn(columnLabel) I suggest you check the documentation here https://simtk-confluence.stanford.edu/display/Ope...
- Fri Jun 30, 2023 11:13 am
- Forum: OpenSim
- Topic: Error: [Errno 13] Permission denied while setting up Anaconda
- Replies: 4
- Views: 939
Re: Error: [Errno 13] Permission denied while setting up Anaconda
Hello Avery,
If using Anaconda, we strongly recommend you do not use the manual installation steps but the conda specific instructions here
https://simtk-confluence.stanford.edu/d ... da+Package
and here
https://anaconda.org/opensim-org/opensim
Please let us know how that goes,
-Ayman
If using Anaconda, we strongly recommend you do not use the manual installation steps but the conda specific instructions here
https://simtk-confluence.stanford.edu/d ... da+Package
and here
https://anaconda.org/opensim-org/opensim
Please let us know how that goes,
-Ayman
- Wed Jun 28, 2023 5:36 pm
- Forum: OpenSim
- Topic: Matching the InverseDynamicsSolver with the GUI/InverseDynamicsTool
- Replies: 5
- Views: 2445
Re: Matching the InverseDynamicsSolver with the GUI/InverseDynamicsTool
Hi Owen, Few comments on the posted code: 1. Please do not use "updCoordinateSet()", and use "getCoordinateSet()" instead. The value of the coordinate is not kept with the coordinate but in the state, as such the Coordinate object is const, this may not make a difference here but a general rule to b...
- Mon Jun 26, 2023 8:38 am
- Forum: OpenSim
- Topic: OpenSense - Delsys IMUs
- Replies: 4
- Views: 1525
Re: OpenSense - Delsys IMUs
Hi Rodrigo, To answer your questions: 1. Definitely, the job of IK is to find coordinate values that position the model to match as close as possible the orientation of the "placed" IMUs with the measured orientations in provided input files/tables. 2. You can see the orientation of the placed IMUs ...
- Mon Jun 26, 2023 8:18 am
- Forum: OpenSim
- Topic: Python API: Geometry path and joint center location
- Replies: 2
- Views: 669
Re: Python API: Geometry path and joint center location
Hello, First I would recommend replacing model.updCoordinateSet() with model.getCoordinateSet() as your code doesn't change the coordinate objects themselves but the values of the state variables maintained by the coordinates, these live in the state object. Using upd methods could have undesirable ...