[770c98]: / Application / Examples / CrossTrainer / Model / Supports.any

Download this file

48 lines (45 with data), 1.3 kB

AnyFolder Supports = 
{
  FootPlateConditionalContact GRF_Prediction_Right(
  NORMAL_DIRECTION = "Y",
  NUMBER_OF_NODES = 25,
  NODES_FOLDER = FootNodes,
  PLATE_BASE_FRAME = Main.Model.FitnessMachine.Pedal___2.ANY_CENTER ,
  GLOBAL_REF = Main.Model.FitnessMachine.Origin,
  SHOW_TRIGGER_VOLUME = OFF
  ) =
  {
    CreateFootContactNodes25 FootNodes(foot_ref = 
    Main.HumanModel.BodyModel.Right.Leg.Seg.Foot) = {};
    
    // Additional force plate settings
    Settings = 
    {
      Strength = 2000;
      Radius = 0.5;
      LimitDistLow = -0.05;
      LimitDistHigh = 0.05; 
      FrictionCoefficient = 0.5;
    };
  }; 
  
  FootPlateConditionalContact GRF_Prediction_Left(
  NORMAL_DIRECTION = "Y",
  NUMBER_OF_NODES = 25,
  NODES_FOLDER = FootNodes,
  PLATE_BASE_FRAME = Main.Model.FitnessMachine.Pedal___1.ANY_CENTER ,
  GLOBAL_REF = Main.Model.FitnessMachine.Origin,
  SHOW_TRIGGER_VOLUME = OFF
  ) =
  {
    CreateFootContactNodes25 FootNodes(foot_ref = 
    Main.HumanModel.BodyModel.Left.Leg.Seg.Foot) = {};
    
    // Additional force plate settings
    Settings = 
    {
      Strength = 2000;
      Radius = 0.5;
      LimitDistLow = -0.05;
      LimitDistHigh = 0.05; 
      FrictionCoefficient = 0.5;
    };
  };    
};