Asymmetrical Reflex Control

SCONE is a software tool for predictive simulations of biomechanical movement. It uses OpenSim for modeling and simulation, and performs optimization using various control strategies, including feed-forward control, proprioceptic feedback control, and bal
POST REPLY
User avatar
Eric Hu
Posts: 27
Joined: Tue Oct 03, 2023 1:56 pm

Asymmetrical Reflex Control

Post by Eric Hu » Fri Jun 28, 2024 9:53 am

Hi Dr. Geijtenbeek,

I hope you are having a wonderful day. I was curious if there is a way to adjust the "target" and "source" bodies within the Geyer and Herr reflex controller to only act on one side for some of the muscles. I would like to keep symmetry for all of the muscles except for the plantarflexors, in which the right side should not be affected by the reflex controller at all. I do remember you mentioning how to adjust this in a previous post, but I wasn't able to find it again.

Thank you so much and have a wonderful rest of your day!

Best,
Eric

User avatar
Thomas Geijtenbeek
Posts: 425
Joined: Wed Mar 12, 2014 8:08 am

Re: Asymmetrical Reflex Control

Post by Thomas Geijtenbeek » Sat Jun 29, 2024 10:11 am

You can create a single-sided ReflexController by adding a dual_sided = 0 statement, and then specifying the side in the reflex

Code: Select all

ReflexController {
	dual_sided = 0
	Reflex {
		target = gastroc_r
		...
	}
	...
}

POST REPLY