Search found 1060 matches: plugin

Searched query: +plugin

by Aaron Fox
Sun Aug 11, 2024 8:56 pm
Forum: OpenSim
Topic: Using a Custom OpenSim Build
Replies: 6
Views: 15972

Using a Custom OpenSim Build

... this by creating a Python script that I could run iterations of to process multiple participants, trials etc. I could achieve this by creating a plugin version of the new components from the custom build, but this still wouldn't work that well as I can't access the new components through Python ...
by Peter Eastman
Mon Jul 22, 2024 8:16 am
Forum: OpenMM
Topic: Appropriate forcefield/residue type for graphene?
Replies: 5
Views: 648

Re: Appropriate forcefield/residue type for graphene?

... for atom in topology.atoms()] system.addForce(XtbForce(method, charge, multiplicity, periodic, indices, numbers)) We could probably make the xtb plugin install a force field to automate this. I'll open a feature request for that.
by Ayman Habib
Mon Jul 15, 2024 8:29 am
Forum: OpenSim
Topic: Example of plugin that implements a data reader for alternative IMU system
Replies: 1
Views: 555

Re: Example of plugin that implements a data reader for alternative IMU system

Hi Stephan, Generally speaking, code has to be integrated into the opensim-core codebase in order to be available for both python and Matlab bindings. In which case you'd need to make a PR into our opensim-core that becomes part of OpenSim. Alternatively, and possible faster way to go is to write py...
by Stephan Bosch
Mon Jul 15, 2024 7:55 am
Forum: OpenSim
Topic: Example of plugin that implements a data reader for alternative IMU system
Replies: 1
Views: 555

Example of plugin that implements a data reader for alternative IMU system

OpenSim::XsensDataReader and OpenSim::APDMDataReader are part of the OpenSim sources. For an alternative IMU system, I would like to implement a plugin that implements the same functionality, including the MatLab and python availability of these classes. How would I go about doing that? Is there ...
by Lukas Kammler
Fri Jun 28, 2024 9:41 pm
Forum: OpenSim
Topic: simulating handicapped upper-limbs
Replies: 0
Views: 147

simulating handicapped upper-limbs

... the manual restriction of joint angles? Do such generic grasping movements already exist as motion files? 4. I initially considered using the Moco Plugin; however, it seems somewhat overkill for my application, as the focus is solely on grasping movements and associated reach, and the simulation ...
by SimTK Admin
Wed May 01, 2024 2:33 pm
Forum: Muscle Material with Force-Velocity Properties: A FEBio Material Plugin
Topic: Muscle Material with Force-Velocity Properties: A FEBio Material Plugin Public Forum
Replies: 0
Views: 128

Muscle Material with Force-Velocity Properties: A FEBio Material Plugin Public Forum

Welcome to the Muscle Material with Force-Velocity Properties: A FEBio Material Plugin public forum. Feel free to browse or search the topics for helpful information, or post a topic of your own.
by Qianjun Ding
Sun Mar 10, 2024 11:05 pm
Forum: OpenSim plugin to estimate contact forces using static optimization
Topic: Error Loading the plugin
Replies: 1
Views: 168

Re: Error Loading the plugin

Same problem here, has it been resolved yet?
by Nicholas Bianco
Wed Feb 28, 2024 5:39 pm
Forum: OpenSim Moco
Topic: Some questions about how to create and use some customed plugins in Moco
Replies: 5
Views: 989

Re: Some questions about how to create and use some customed plugins in Moco

... MuscleLikeCoordinateActuator with a custom MocoGoal, you could put both in one pair of header and source files and then compile the DLL for the plugin. The cpp file in the custom effort goal example contains instructions on how to load the plug-in for use in matlab or python scripting. Best, ...
by Nicholas Bianco
Tue Feb 20, 2024 4:54 pm
Forum: OpenSim Moco
Topic: making custom goal in python
Replies: 5
Views: 1014

Re: making custom goal in python

... OpenSim live here: https://github.com/opensim-org/opensim-core/tree/main/Bindings/Python. As an alternative, you could build your custom goal as a plugin run a MocoStudy from an XML using that. Here's an example for building a plugin for a custom MocoGoal: https://github.com/opensim-org/opensim-core/tree/main/OpenSim/Examples/Moco/exampleMocoCustomEffortGoal. ...