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.

 Respuesta aceptada

James Tursa
James Tursa el 2 de Mzo. de 2020
Change this
Velocity(t)^2
to this
abs(Velocity(t)) * Velocity(t)

Más respuestas (0)

Categorías

Más información sobre Statics and Dynamics en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 2 de Mzo. de 2020

Comentada:

el 2 de Mzo. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by