Direction of force input for a prismatic joint
古いコメントを表示
Does the force input for actuation of a prismatic joint act in the opposite direction when a negative value is applied compared to a positive value?
3 件のコメント
Umar
2024 年 7 月 31 日
編集済み: Walter Roberson
2024 年 7 月 31 日
Hi @ 석준 ,
It should align with the sign convention chosen in the model. Here's a simple example in Simulink where a force input of +10 N moves the joint to the right, while a force input of -10 N moves the joint to the left:
% Simulink Model
model = 'PrismaticJointModel';
open_system(model);
% Positive Force Input
force_positive = 10;
sim(model);
% Negative Force Input
force_negative = -10;
sim(model);
Please let me know if you have any further questions.
Yifeng Tang
2024 年 8 月 1 日
I wonder where the 'PrismaticJointModel' model is?
Umar
2024 年 8 月 1 日
@ Yifeng Tang,
To answer your question, it is assumed to be a custom model created within the Simulink environment. Also, I do appreciate your consideration and contribution towards resolving this problem.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Simscape Multibody についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!