フィルターのクリア

How can i solve this integration using newmark?

2 ビュー (過去 30 日間)
Leonardus Risky
Leonardus Risky 2018 年 8 月 12 日
コメント済み: Leonardus Risky 2018 年 8 月 13 日
Hello everybody, I now create a code for solving the dynamic equation of motion in the time response using Newmark-Beta Method but it can't run because there's a problem using loop (for). you can use this reference for understanding the meaning of Newmark-beta Method. can anyone help me to solve this code? Thank You for your help.

採用された回答

Stephan
Stephan 2018 年 8 月 12 日
編集済み: Stephan 2018 年 8 月 12 日
Hi,
in your for loop is an end missing. I guess that this missing end should be positioned before your plot commands.
Then the following line throws an error:
dis(i+1) = delF/Keff;
I think it should be:
dis(i+1) = delF(i)/Keff;
or:
dis(i+1) = delF(i+1)/Keff;
After fixing this there are some errors appearing due to different lenghts of x- and y-values whole plot is running, which is a result from your for loop and should be solved by you. Note that sbx has a length of 20001.
If you solved this then your plots will overwrite eachother, so a recommendation would be to use subplot to show all results in one figure.
I hope this helped, if not come back with more questions.
Best regards
Stephan
  1 件のコメント
Leonardus Risky
Leonardus Risky 2018 年 8 月 13 日
thanks for your advise, i think i solved my problem with making new for loop. but anyway thank you
Best Regards
Leonardus

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by