*BeginAnalysis()

Indicates the beginning of instantiation of a distributed type analysis.

Syntax

*BeginAnalysis(Variable_Name,"Analysis_Name", [arg_1,][arg_2],...[arg_n])

Arguments

Variable_Name
The variable name of the analysis being created.
Data type: variable
Analysis_Name
The label of the analysis being created.
Data type: Name
arg_1, arg_2, …, arg_n
The list of attachments that are passed into the instance of the analysis.
Data type: variable

Example

*BeginMDL(the_model, "Model", "11.0.120)
 *System(sys_hatch, "Hatchback System", def_sys_hatch)
 *BeginAnalysis(ana_dyn, "Dynamic Analysis ", 
sys_hatch.sys_door.b_door, 
sys_hatch.sys_door.p_door_cent)
 *DataInclude("dyn_data.mdl" )
 *EndAnalysis()
*EndMDL()

Context

*BeginMdl

Comments

This statement creates an instance of a distributed type analysis within the MDL model. Attachments that are passed into the analysis are also specified in this statement.This block should contain a *DataInclude() statement that refers to an analysis data file.