Keep the negative value while squaring

Acc_Rocket(t) = (Thrust - weight - drag*Velocity(t)^2)./mass;
when the velocity is negative, the drag should be positive, but squaring the velocity makes the drag negative again, is there a way to make the velocity value keep its negative sign even when squared.

 採用された回答

James Tursa
James Tursa 2020 年 3 月 2 日

2 投票

Change this
Velocity(t)^2
to this
abs(Velocity(t)) * Velocity(t)

1 件のコメント

Adam Hunt
Adam Hunt 2020 年 3 月 2 日
thankyou, everythings working how it should now

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStatics and Dynamics についてさらに検索

製品

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by