Download this file

30 lines (26 with data), 781 Bytes

Main.EnvironmentModel.ForcePlates = 
{
  
  // See forceplate specification for which option 
  // are available for the ForcePlateAutoDetection class:
  // #include "<ANYMOCAP_PATH>/ForcePlates/ForcePlateAutoDetection.any"
  // The ``ALLOW_MULTI_LIMB_CONTACT=OFF`` ensures the class can't create contact 
  // with both limbs simulatenously
  
  #ifdef REFERENCE_TRIAL
  // Reference trials has no force plates
  #else
  ForcePlateAutoDetection Plate1(
    PLATE_NO=1,
    HeightTolerance = 0.07,
    VelThreshold = 2.2,
    ALLOW_MULTI_LIMB_CONTACT = OFF,
    FORCEPLATE_TYPE = 2
  ) = { };
  
  ForcePlateAutoDetection Plate2(
    PLATE_NO=2,
    HeightTolerance = 0.07,
    VelThreshold = 2.2,
    ALLOW_MULTI_LIMB_CONTACT = OFF,
    FORCEPLATE_TYPE = 2
  ) = { };
  #endif

};