*EndMdl()

Indicates the end of an MDL block.

Syntax

*EndMdl()

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.