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
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.
I wonder where the 'PrismaticJointModel' model is?
Umar
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.

댓글을 달려면 로그인하십시오.

 채택된 답변

Yifeng Tang
Yifeng Tang 2024년 8월 1일

0 개 추천

Yes, you are correct. When you provide a negative value for the actuation force, it's applied in the opposite direction with the same magnitude. The positive direction, I believe, is from the base frame (B) towards the follower frame (F).

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Simscape Multibody에 대해 자세히 알아보기

제품

릴리스

R2023b

질문:

2024년 7월 31일

댓글:

2024년 8월 1일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by