a b/Tools/Templates/Basic Main/Basic Main.main.any
1
// Todo: Write a small description of your model here
2
3
Main = {
4
5
  // The actual body model goes in this folder
6
  AnyFolder MyModel = {
7
8
    // Global Reference Frame
9
    AnyFixedRefFrame GlobalRef = {
10
11
      // Todo: Add points for grounding of the model here
12
13
    };
14
    
15
    // Todo: Add the model elements such as
16
    //       segments, joints, and muscles here.
17
18
  };
19
  
20
  // The study: Operations to be performed on the model
21
  AnyBodyStudy MyStudy = {
22
    AnyFolder &Model = .MyModel;
23
    Gravity = {0.0, -9.81, 0.0};
24
  };
25
26
};