*AnalysisPlaceholder()
This is a container which holds information regarding the analysis.
Syntax
*AnalysisPlaceholder(analysis_name, "analysis_label", analysis_type, "user_prompt)Arguments
- analysis_Name
- The variable name of the analysis.
- analysis_Label
- The descriptive label of the analysis.
- analysis_Type
- The type of analysis.
- user_Prompt
- Prompt for this analysis to be used in the model.
Example
*BeginMDL(mdl_project, "MDL Project", "10.0SuspensionDirector-10")
       *SetCurrentSolverMode(MotionSolve)
       *AssemblyPlaceholder(assem_0, "Rear Half Vehicle", BaseSystem, "Select assembly.")
       *AnalysisPlaceholder(ana_0, "Analysis 0", BaseAnalysis, "Select analysis.")
       *SetState(ana_0, true)
       *BeginAssemblySelection(assem_0, "Rear Half Vehicle")
             *DataInclude("susp_lib://Assemblies/Half Vehicle Rear/Rear_MacPherson_HalfVehicle_data.mdl")
       *EndSelection()
       *BeginAnalysisSelection(ana_0, "Analysis 0", assem_0.sys_rear_susp)
             *DataInclude("susp_lib://Analyses/sysDefRearRideMotion_data.mdl")
       *EndSelection()
*EndMDL()