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.

 Akzeptierte Antwort

James Tursa
James Tursa am 2 Mär. 2020

2 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu Statics and Dynamics finden Sie in Hilfe-Center und File Exchange

Produkte

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by