[770c98]: / Application / Validation / EvaluateMomentArms / EvaluateMomentArms.main.any

Download this file

25 lines (16 with data), 711 Bytes

#include "../libdef.any"

// This model shows how to enable the built-in studies to evaluate 
// muscle moment arms. The studies are enabled by setting the switch: 
// #define EVALUATE_MOMENT_ARMS
// The studies will appear in the `HumanModel.EvaluateMomentArms 
// folder. 
// Note, this will include a lot of studies (one per DOF) so it will 
// affect perfomance when loading and switching between tabs/operations.


#define EVALUATE_MOMENT_ARMS 1
#define EVALUATE_MOMENT_ARMS_NSTEP 10


Main = 
{ 
  
  #include "BodyModelConfiguration.any"
  #include "<ANYBODY_PATH_BODY>\HumanModel.any"
  
  AnyOperation& RunApplication = Main.HumanModel.EvaluateMomentArms.Run_all_studies;
  
};