a b/Application/Examples/ArmCurl/Model/Description.any
1
  /**Execute this operation to run the model in the intended operation sequence.  
2
  It is also possible to run operations seperately, by manual selections in the operation tree*/
3
  AnyOperationSequence RunApplication = {
4
5
    /**This operation calibrates the muscles in the model if these are of the type AnyMuscleModel3E.
6
    This will just be an empty operation if the model is using a muscle type that does not require calibration.*/
7
    AnyOperation &CalibrationAnal = Main.HumanModel.Calibration.CalibrationSequence;  
8
9
    ///This operation is the inverse dynamic analysis
10
    AnyOperation &InvAnal=Main.Study.InverseDynamics;
11
    
12
    #if AutoSaveOption 
13
    /// This operation creates an h5 output file in the Output folder
14
    AnyOperationMacro save = {
15
      MacroStr={ "classoperation Main.Study.Output " + strquote("Save data") + " --file="+ "Output/" + ANYBODY_NAME_MAINFILE + ".anydata.h5 " + "--type=Deep"};
16
    };
17
    #endif
18
  };