Finding velocity vs. time, when acceleration is dependent on velocity

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 4K views
KingNothing
Messages
880
Reaction score
4
Hello all. I have been struggling with this for a bit. I will present it as generally as I can.

Say I have an object with an initial velocity v0. It is only acted upon by an acceleration function, a(v), which is a function of v. How can I find a function for v(t)? Does this require a differential equation?
 
Physics news on Phys.org
By definition,

[tex]a = \frac{dv}{dt}[/tex]

Since you know a(v), you can rearrange and integrate:

[tex]dt = \frac{dv}{a(v)}[/tex]

This will give you t as a function of v (if you can do the integral), which you can in principle invert to get v(t).
 
Mute said:
By definition,

[tex]a = \frac{dv}{dt}[/tex]

Since you know a(v), you can rearrange and integrate:

[tex]dt = \frac{dv}{a(v)}[/tex]

This will give you t as a function of v (if you can do the integral), which you can in principle invert to get v(t).

Okay. Thanks for the start. Say for example I have a(v) = 5v, and initial velocity v0 = 10 m/s.

[tex]dt = \frac{dv}{a(v)}[/tex]
[tex]t = \int \! \frac{1}{a(v)} \, \mathrm{d}v = \! \frac{ln(v)}{5}[/tex]
[tex]v = e^{5t}[/tex]

This looks great so far; how do I incorporate an initial value?
 
KingNothing said:
This looks great so far; how do I incorporate an initial value?

You need a constant of integration when doing the integrals.
 
pwsnafu said:
You need a constant of integration when doing the integrals.

[tex]t = \int \! \frac{1}{a(v)} \, \mathrm{d}v = \! \frac{ln(v)}{5} + C[/tex]
[tex]v = e^{5t-5C}[/tex]

I'm still not totally sure how to incorporate it. It doesn't really make dimensional sense to just plug it in for C.
 
KingNothing said:
[tex]t = \int \! \frac{1}{a(v)} \, \mathrm{d}v = \! \frac{ln(v)}{5} + C[/tex]
[tex]v = e^{5t-5C}[/tex]

I'm still not totally sure how to incorporate it. It doesn't really make dimensional sense to just plug it in for C.

You know that at t=0, v=v_0. So, plug these into your formula for v and then solve for C. Or, in this case you just find that [itex]v_0 = e^{-5C}[/itex], so you can just replace the entire [itex]e^{-5C}[/itex] with v_0 to get [itex]v(t) = v_0e^{5t}[/itex].
 
Thank you guys so much! I get it now. Just an FYI, I was asking because I'm trying to use the drag equation, which when applied to an object of constant mass, is one such example of a velocity-dependent acceleration!