*BeginMdl()
Indicates the beginning of an MDL block.
Syntax
*BeginMdl (model_name, "model_label")
Application
MotionView
Inputs
- model_name
 - The variable name of the model.
 - model_label
 - The descriptive label of the model.
 
Context
*BeginModel()
*BeginPage()
*BeginWindow()
Example
*BeginWindow(Model)
    • • •
    *BeginModel()
       *BeginMdl(full, 	"Full vehicle model")
          *System(sys_frnt, "Front suspension",
                  sys_def_name_frnt_susp, B_Ground)
          *System(sys_rear, "Rear suspension",
                  sys_def_name_rear_susp, B_Ground)
          *SetSystem(sys_frnt)
                  • • •
          *SetSystem(sys_rear)
             • • •
       *EndMdl()
             • • •
    *EndModel()
*EndWindow()
      Comments
MDL blocks contain MDL statements which define a mechanical system model.
Every *BeginMdl() statement requires an *EndMdl() statement.