How can I construct cam profile ? please help If you can :'(

18 ビュー (過去 30 日間)
ABDULLAH RAWASHDEH
ABDULLAH RAWASHDEH 2016 年 11 月 19 日
コメント済み: Rich Addison 2019 年 11 月 30 日
I have a home-project to develop linear cam profile with roller follower In the way that appear in the picture. I found it only on a video on youtube after hours of searching but without any code or even a description if it can be done on matlab or not. my deadline is approaching so please help me to get this done. thank you

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 11 月 19 日
th = [0 60 150 210 300 360];
r = [0 0 38 38 0 0];
angs = linspace(0, 360, 500);
radii = interp1(th, r, angs);
angs_rad = angs .* pi/180; %convert to radian
polar(angs_rad, radii)
I think you will need to adjust the radius profile.
  2 件のコメント
Ellen Reed
Ellen Reed 2018 年 4 月 5 日
Thank you so much sir, you are the backbone of society and the unsung hero of our time.
Rich Addison
Rich Addison 2019 年 11 月 30 日
how did you adjust the radius profile?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeOFDM についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by