[38ba34]: / Tools / ModelUtilities / Diagnostics / DiagnosticMuscle2.any

Download this file

29 lines (22 with data), 743 Bytes

//This is file is used to apply an artificial muscle to 
//a particular dof in a measure
//The file is intended to be used for diagnostic of the model
//when problems with recruitment occours

AnyFolder Muscle={
  
  AnyKinMeasureOrg MeasureOrg={
    AnyKinMeasure& Ref=...DOF;
    MeasureOrganizer ={..dof};
  };
 
  AnyMuscleGeneric PosMuscle={
    AnyMuscleModel MusMdl={ F0 =...Strength[0]; Vol0 = 1e-6;};
    AnyKinMeasure& ref=.MeasureOrg;
    Type = NonNegative;
    EXCLUDE_MUSCLE_METABOLISM
         
  };
  
  AnyMuscleGeneric NegMuscle={
   AnyMuscleModel MusMdl={ F0 =...Strength[1]; Vol0 = 1e-6;};
    AnyKinMeasure& ref=.MeasureOrg;
    Type = NonPositive;
    EXCLUDE_MUSCLE_METABOLISM
   
  };
  
};