how to model stairs in simscape multibody?

3 ビュー (過去 30 日間)
Nayla
Nayla 2023 年 3 月 25 日
回答済み: Nathan Hardenberg 2023 年 6 月 5 日
I am trying to model a simple staircase with the simscape add-on. I couldn'nt find any block that would permit it. Hence, i designed one in Solidworks and imported it into matlab. When i run the simulation, my walking robot is not recognizing the stairs as such and walks as if the ground (which is supposed to be the staircase) is even. The contact between legs and staircase is enable by the spatial force contact block and by selecting, i.e. exporting the staircase geometrie it is shown "Convex hull".
Is there a simpler way to model the staircase?
Thanks in advance

採用された回答

Sam Chak
Sam Chak 2023 年 3 月 25 日
Are you looking some kind of "staircase-shaped function" that is generated by a mathematical function?
Or, you are looking for non-math-based staircase that can be generated using the programming-like conditional If-Else statements?
x = linspace(-10, 10, 20001);
y1 = sign(x + 5);
y2 = sign(x);
y3 = sign(x - 5);
y = y1 + y2 + y3;
plot(x, y), grid on
  1 件のコメント
Nayla
Nayla 2023 年 3 月 25 日
hello @Sam Chak, thanks for the reply. actually, i was meaning to model a rigid model. A staircase that looks like this:

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

その他の回答 (1 件)

Nathan Hardenberg
Nathan Hardenberg 2023 年 6 月 5 日
Depending on the usecase two options come to mind:
  1. Creating a staircase in a CAD-program and using the "File Solid"-Block to use it in simscape. Many file types are supported (e.g. step, stl, ipt, prt, ...)
  2. Using "Brick Solid"-Blocks to model each staircase-step inside of simcape yourself

カテゴリ

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

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by