*BeginAnalysisDataFile()
Indicates the beginning of the data file for a distributed analysis in the data file.
Syntax
*BeginAnalysisDataFile(DEFINITION_TYPE,[AnalysisType], [ALLOWED_MODEL_TYPE,AllowedModelType], [LABEL,"label")
Arguments
- DEFINITION_TYPE
- This keyword indicates that the next token is an analysis type.
- AnalysisType
- The type of analysis definition. See Comments below.
- ALLOWED_MODEL_TYPE
- The keyword indicates that the next token is "allowed model type".
- AllowedModelType
- The allowed model type. See Comments below.
- LABEL
- This keyword indicates that the next token is a label.
- label
- The label for the analysis.
Example
*BeginAnalysisDataFile(DEFINITION_TYPE, Hatchback,
ALLOWED_MODEL_TYPE, DoorModel,
LABEL, "Dynamic Analysis")
*DefinitionInclude( "dyn_def.mdl" )
*SetForce( frc_open, LIN, 10, LIN, , LIN )
*EndDataFile()
Context
The data file of a distributed type analysis.
Comments
The AnalysisType in this statement should match the AnalysisType token in the *DefineAnalysis() block of the referenced definition file. If does not match, MotionView will warn and replace this string with that of the definition file.
Similarly, the AllowedModelType in this block statement should match with the AllowedModelType in the *DefineAnalysis () in the definition file.
This block should contain a *DefinitionInclude() statement to include the definition file for the analysis.