*BeginMdl()
Indicates the beginning of an MDL block.
Syntax
*BeginMdl(model_name,"model_label")
    Arguments
- model_name
 - The variable name of the model.
 - model_label
 - The descriptive label of the model.
 
Example
*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()
    Comments
All MDL statements occurring before *BeginMdl() and after *EndMdl() are ignored except when part of a session script file.
Every *BeginMdl() statement requires an ending *EndMDL() statement.