GRF prediction on a inclined plane

Hello,
I am currently evaluating attempts to overcome an inclined plane and would like to use the GFR prediction for this. However, I am failing to implement the inclined plane successfully. I have already entered a ramp under globalref. However, the calculation does not produce any useful moments. Does anyone have any ideas on how to solve this? The level is also provided with markers, but not yet integrated into the environment. Would that be an idea? If so, what would be the approach? I would be very grateful for any tips, as I have not been working with the program for long.
The pictures shows the current moment progression and the ramp code.

GRF_Sidesteps_26_Moment_Knie

grafik

Thank you in advance!

Elisabeth

Hi Elisabeth,

Welcome to the AnyScript forum!

You would also need to update the settings in the GRF prediction class template to use this new reference node that you have defined to simulate the inclined plane.

There will be a file called ForcePlates.any where you can find the following code:

...
  FootPlateConditionalContact GRF_Prediction_Right(
  NORMAL_DIRECTION = "Y",
  NUMBER_OF_NODES = 25,
  NODES_FOLDER = FootNodes,
  PLATE_BASE_FRAME = Main.EnvironmentModel.GlobalRef.FloorOffset,
  SHOW_TRIGGER_VOLUME = ON
  ) =
  {
    CreateFootContactNodes25 FootNodes(foot_ref = 
    Main.HumanModel.BodyModel.Right.Leg.Seg.Foot) = {};
    
    // Additional force plate settings
    Settings = 
    {
      LimitDistHigh = 0.025; // Vertical height
      FrictionCoefficient = 0.8;
    };
  };
...

Please change the PLATE_BASE_FRAME to use the new reference node you have defined. So, it will look like this:

PLATE_BASE_FRAME = Main.EnvironmentModel.GlobalRef.Rampe,

Best regards,
Dave

Hello Dave,

Thank you for your reply. Unfortunately, despite the inclusion of the ramp, the torque curves still do not make sense. The moments oscillate very strongly and are sometimes very high (over 200).

Moment_Knie

However, the angles seem normal.
Winkel_Knie

Here is my updated Code:
grafik

Could the reason be that the calculation cannot be performed correctly due to the inclined base?

Best regards

elisabeth

Hi Elisabeth,

Normally, the inclined plane should not be a problem by itself.

I suppose I am looking at the knee moment and angle graphs for the left and right legs.

I am a little bit concerned about the quality of the mocap data. The joint angle graph looks a little bit noisy and this is not good. Especially, since we are doing inverse dynamics analysis, what would really make a difference is the acceleration data. If you can check the acceleration data, and you see noise that is similar to the noise/artefacts in the moment data, then than would explain a lot.

Secondly, you may see some artefacts around the transition between contact and no contact. The contact conditions can be a little bit finicky to get right with the mocap data. For example, the subject had already reached heel strike but the model is still not detecting heel strike. Normally, that would translate to some artefacts only around the transition and not during the rest of the motion.

I hope this helps.

Best regards,
Dave