Deriving acceleration from velocity equation

1 Ansicht (letzte 30 Tage)
Casey
Casey am 20 Mai 2023
Kommentiert: Star Strider am 20 Mai 2023
v=sqrt(2*g*H)*tanh((sqrt((2*g*H)/(2*L)))*t)

Antworten (1)

Star Strider
Star Strider am 20 Mai 2023
Bearbeitet: Star Strider am 20 Mai 2023
The gradient function could be helpful.
EDIT — (20 May 2023 at 12:46)
If this is symbolic, of course, just take the derivative with respect to t
syms g H L t
v = sqrt(2*g*H)*tanh((sqrt((2*g*H)/(2*L)))*t)
v = 
a = diff(v,t)
a = 
.
  2 Kommentare
Torsten
Torsten am 20 Mai 2023
My guess is that H is a function of t.
Star Strider
Star Strider am 20 Mai 2023
Your guess is likely much better than mine.
In that instance, the syms call becomes:
syms g H(t) L t
and the resulting derivative difficult to work with.
However if the result is numeric, gradient would likely still work.

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by