This section describes the Translational Joint entity of MotionView and shows the various usage, creation, and editing methods.
A Translational Joint is one degree-of-freedom kinematic pair used in mechanisms.
Translational Joint - Construction
Translational joints provide single-axis rotation function used in many places such as:
• | Splined shafts |
• | Slider mechanism |
• | Other Uni-Axial translational devices |
The Translational joint is represented using Markers when exported to MBD Solver. The representation can be visualized as shown in the figure below:
Translational joint marker representation
The bodies that are constrained by the Translational joint are represented using two markers: Marker I and Marker J. Marker I belongs to Body 1 and Marker J belongs to Body 2. The constraints and displacement are applied on the Marker I with respect to the Marker J. Both of the markers will have a common point of origin, the same as the Joint’s Origin point. The orientation axis of the Translational Joint is represented by the Z axis of both I and J markers. The I marker is free to rotate about the Z axis of the J marker.
The topological information required to define a Translational Joint is shown in the figure below:
The data members of the Translational Joint can be classified into the following members:
An Translational Joint needs the following:
• | Body 1 and Body 2 - Specify two bodies between which the joint is created. |
• | Origin - Specify a Point which defines the location of the joint. |
• | Alignment Axis – Orientation of the joint specified using a Point or a Vector. |
• | Compliant Mode (Optional) - If the Allow Compliance option is selected while adding the joint to a model, the joint's compliance state can be toggled between Compliant and Non-Compliant. |
• | Friction Properties (Optional) - can also be assigned (see below). |
The joint can be modeled as a Single entity or as a Pair entity.
Optional Friction properties can also be specified for the joint:
Activating the Use Friction option on the Friction Properties tab will display the following options in the panel:
Coefficient Dynamic |
|
||||||||
Coefficient Static |
|
||||||||
Stiction Transition Velocity |
|
||||||||
Max. Stiction Deformation (Adams only) |
|
||||||||
Active for Static/Quasi-Static Analysis |
True/False |
||||||||
Effect |
|
||||||||
Input Forces |
|
||||||||
Force Preload |
|
||||||||
Initial Overlap |
|
||||||||
Reaction Arm |
|
||||||||
Overlap Delta |
|
||||||||
LuGre Parameters |
|
To learn how to add a Translational Joint to a model, please see the Joints topic.
Joints Panel (Translational Joint) – Connectivity Tab - Single Entity Joints Panel (Translational Joint) – Connectivity Tab - Pair Entity
OR Any other vector can be selected (for example, the Axis of markers) by double clicking on the Vector collector and using the model tree.
Note - Displacement Initial condition is not supported by MotionSolve 12.0. This option can be used when building models for ADAMS Solver.
Joints Panel (Translational Joint) – Initial Conditions Tab - Single Entity Joints Panel (Translational Joint) – Initial Conditions Tab - Pair Entity When modeled as a Pair entity, the joint can have symmetric properties.
Joints panel - Friction Properties tab Checking the Use Friction option displays a set of input fields which you need to specify as needed by the friction model of the solver. In addition, the LuGre Parameters tab also appears if the SolverMode is set to MotionSolve. Joints panel - LuGre Parameters tab For additional details on the various fields in the Friction Properties and LuGre Parameters tab, please refer to the Joints Panel – Friction Properties Tab and Joints Panel - LuGre Parameters Tab topics. Note - The same steps as shown above can also be used to define Pair Translational Joint entities. |
The Project Browser will filter the entities and display only the Joints in the model.
The corresponding panel is automatically displayed.
|
The model containing the Translational Joint can be saved in MDL format from MotionView and exported in the MotionSolve XML format.
The Translational Joint can be of the following types:
And these four types of entities can be added to the model using MDL Statements shown below:
To learn how to create a complete model using MDL Statements please refer to tutorial MV-1060: Introduction to MDL. |
The Translational Joint when exported to the MotionSolve XML format is defined as a Constraint_Joint statement. Syntax: <Constraint_Joint id = "integer" label = "Name of Joint" type = "JOINT_TYPE" i_marker_id = "integer" j_marker_id = "integer" /> Initial Velocity Conditions of the Translational Joint is defined using the statement – JointInitialVel_Trans: <JointInitialVel_Trans joint_id = "integer" iv = "real" /> In case of the Translational Joint, the model statement will be as shown below: <Constraint_Joint id = "301001" label = "Singe Trans Joint" type = "TRANSLATIONAL" i_marker_id = "30103050" j_marker_id = "30101050" /> In the above XML Model statement the i_marker_id and j_marker_id represent the I and J markers of the Joint which belong to Body 1 and Body 2 respectively. To understand the complete syntax of the Constraint_Joint XML model statement, please refer to the MotionSolve Reference Guide Page for Constraint_Joint. An Initial Conditions example is given below: <JointInitialVel_Trans joint_id = "301001" iv = "5." /> For a better understanding of the JointInitialVel_Trans XML statement, please refer to the MotionSolve Reference Guide Page for JointInitialVel_Trans. |
In MotionView, Tcl can be used to add and edit any MDL entities to the model. There are two Tcl commands that can be used to add an entity:
Syntax: mdlmodel_handle InterpretEntity new_handle keyword varname label Example: mdlmodel_handle InterpretEntity joint_trans_handle TransJoint j_trans "\"Trans Joint\"" b_1 B_Ground p_ori "POINT" p_axis "ALLOW_COMPLIANCE"; |
*This command is not applicable for Translational joint entities. |
The InterpretEntity command is used to add entities to the model and the InterpretSet command is used to set the entity properties. So in the case of the Translational Joint, the properties that can be set are the Joint Initial Conditions and Joint Friction. Extended definitions for InterpretEntity and InterpretSet can be found in the HyperWorks Desktop Reference Guide.
Note - When using the InterpretEntity and InterpretSet commands, it is important to also use the Evaluate command in order for the changes to take effect immediately.
To learn how to create a complete model using Tcl commands, please refer to tutorial MV-1040: Model Building Using Tcl.
The example file below shows a Translational Joint connecting two bodies:
*BeginMDL( the_model, "Model" ) *StandardInclude(FILE) *Point( p_0, "Point 0" ) *PointPair( p_1, "Point 1" ) *Body( b_0, "Body 0", p_0, , , , ) *BodyPair( b_1, "Body 1", p_1, , , , ) //Example for a Translational Joint - Single *TransJoint( j_transjsingle, "Translational Joint Single", b_0, B_Ground, p_0, POINT, p_1.r ) //Example for a Translational Joint - Pair *TransJointPair( j_transjpairsym, "Translational Joint Pair Sym", b_1, B_Ground, p_1, VECTOR, V_Global_Y ) *TransJointPair( j_transjpairAsym, "Translational Joint pair Asym", b_1, B_Ground, p_1, VECTOR, V_Global_Y ) *SetPoint( p_1, LEFT, , -100 ) *Set( b_0.usecm, true ) *Set( b_1.usecm, true ) *SetBodyInertia( b_1, LEFT, 1, 10000, 10000, 10000 ) //Example for SetJointICFlag - Single *SetJointICFlag( j_transjsingle, ROT, true ) //Example for SetJointIC - Single *SetJointIC( j_transjsingle, ROT, , 5 ) //Setting joint friction using SetJointFriction - Single *SetJointFriction( j_transjsingle, true, 0.35, 0.26, ACTIVE_STATIC, 0.15, , STICTION_AND_SLIDING, PRELOAD, REACTION_FORCE, , , 1000, 25, , , , 1000, , , , 10 ) //Setting joint friction LuGre parameters using SetJointFrictionLugre - Single *SetJointFrictionLugre( j_transjsingle, true, 100, 0.316, 0.0004 ) //Example for SetJointICFlag – Symmetric Pair *SetJointICFlag( j_transjpairsym, LEFT, ROT, true ) //Example for SetJointIC - Symmetric Pair *SetJointIC( j_transjpairsym, LEFT, ROT, 0, 10 ) //Setting joint friction using SetJointFriction - Symmetric Pair *SetJointFriction( j_transjpairsym, LEFT, true, 0.35, 0.26, ACTIVE_STATIC, 0.15, , STICTION_AND_SLIDING, NO_PRELOAD, REACTION_FORCE, BENDING_MOMENT, , 2000,25 , , , , 1000, 10, 15, 50 ) //Example for SetJointICFlag – Asymmetric Pair *SetJointICFlag( j_transjpairAsym, , ROT, true, true ) //Example for SetJointIC - Asymmetric Pair *SetJointIC( j_transjpairAsym, , ROT, , 5, , 10 ) //Setting joint friction using SetJointFriction - Asymmetric Pair *SetJointFriction( j_transjpairAsym, , true, 0.35, 0.26, ACTIVE_STATIC, 0.15, , STICTION_ONLY, PRELOAD, REACTION_FORCE, , ,1000, 30, , , , 1000, , , , 10 , true, 0.35, 0.26, ACTIVE_STATIC, 0.15, , STICTION_ONLY, PRELOAD, REACTION_FORCE, , ,1000, 30, , , , 1000, , , , 10 ) //Setting joint friction LuGre parameters using SetJointFrictionLugre - Pair *SetJointFrictionLugre( j_transjpairAsym, false, 100, 0.316, 0.0004 , false, 100, 0.316, 0.0004 ) *EndMDL() |
See Also:
*TransJoint() (MDL Model Statement)
*TransJointPair() (MDL Model Statement)
*SetJointIC() (MDL Model Statement)
Constraint_Joint (XML Command)
InterpretEntity (Tcl Command)
InterpretSet (Tcl Command)