*SetSystem()
Sets the scope for other *Set() statements.
Syntax
*SetSystem(system_name)
Arguments
- system_name
- The variable name of an existing system.
Example
*System(sys_blade1, "Wiper blade 1", sysdef_blade,
b_crank,
B_Ground)
*SetSystem(sys_blade1)
*SetVector(v_Z, 0, 0, 1)
*SetPoint(p_follower_pivot, 10, -310, 125)
*SetPoint(p_follower_pivot_axis, 11, -310, 125)
*SetPoint(p_coupler_follower_att, 37, -410, 58.5)
*SetPoint(p_crank_coupler_att, 30, -98, 18.7)
Context
Comments
The *SetSystem() statement defines the scope for all of the *Set() statements that follow it. For example, if one system definition is used three times, and the system definition creates a vector, then the model contains three vectors with the same names. The *SetSystem() statement identifies which of the three vectors are affected by succeeding *Set() statements.