crayonmu
(Minuk Cho)
1
Hello,
I am trying to compare the muscle activity data from Anybody based on mocap data(Xsens) and the data using an actual EMG sensor.
I have succeeded in implementing data in anybody using Xsens, but i am curious about how to add external force on hands as an input.
The external force will be measured using another sensor and will be derived in csv format.
If you have a similar experience to me or can help, please comment me.
Thank you.
1 Like
toerholm
(Søren Tørholm)
2
Hi
You will need to use an AnyFunInterpol obejct to read and interpolated the force data in the CSV file.
Secondly you will need to apply the force using an AnyForce3D object.
Applying the force could look like e.g. (sorry for any typos)
AnyFunInterpol MyForceFunction ={
FileName ="MyFile.csv"
};
AnyForce3D MyHandForce ={
F= MyForceFunction(MyStudy.t);
AnyRefFrame &ref= .....Some_Node_On_The_Hand;
};
Best regards
Søren
system
(system)
Closed
3
This topic was automatically closed 125 days after the last reply. New replies are no longer allowed.