*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.
- Analysis_Name
- The label of the analysis being created.
- arg_1, arg_2, …, arg_n
- The list of attachments that are passed into the instance of the analysis.
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
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.