Solving an Acceleration Problem - Tips & Guidance Needed

  • Context: Undergrad 
  • Thread starter Thread starter shiftless
  • Start date Start date
  • Tags Tags
    Acceleration
Click For Summary

Discussion Overview

The discussion revolves around solving a differential equation related to the displacement of a land vehicle over time, considering factors such as constant mass, thrust from a jet engine, and atmospheric drag. Participants explore the mathematical approaches necessary to derive a function for displacement, emphasizing the role of differential equations in this context.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning

Main Points Raised

  • The original poster seeks guidance on deriving a function for displacement that accounts for thrust and atmospheric drag, noting the complexity introduced by drag's dependence on velocity.
  • One participant suggests writing out the specific equation to be solved and offers assistance.
  • Another participant identifies the differential equation form as x'' = a - b x'^2, indicating it is advanced and may not be covered in introductory differential equations courses.
  • A further response clarifies the equation as a first-order non-linear differential equation and provides a detailed breakdown of the relationship between mass, thrust, and atmospheric resistance.
  • There is a suggestion to separate variables in the differential equation to facilitate integration, along with a note on potential integration techniques.
  • The original poster mentions developing a C program to solve the problem iteratively, achieving a solution but expressing a preference for a more elegant mathematical approach.

Areas of Agreement / Disagreement

Participants generally agree on the need to solve a differential equation to address the problem, but there is no consensus on the best approach or the specific methods to be used. Multiple viewpoints on the nature of the equation and integration techniques are presented.

Contextual Notes

The discussion includes assumptions about the constants involved and the nature of atmospheric drag, which may influence the formulation of the differential equation. There are also unresolved mathematical steps related to integration techniques suggested by participants.

shiftless
Messages
2
Reaction score
0
Hi folks, I have a problem that I am trying to figure out that I hope you can help me with. I don't want to be spoon fed as I like discovering things for myself, but this one has me stumped and I'd appreciate some guidance.

The end result I am trying to obtain is a function which allows me to calculate the displacement of a land vehicle with respect to time, given its mass (constant, for the purposes of this simplified calculation), thrust from its jet engine (same), no friction, and here is the kicker, atmospheric drag. The problem as I am sure you are well aware is that drag increases as a square of velocity. The velocity function is a derivative of displacement so I am looking at a function which includes its own derivative.

I have studied Calculus I and II in college and I don't believe they alone provide me with the tools I need to solve this problem. It's been a while though so it's possible I've simply forgotten something that could help me. I did some Google searching and it appears that differential equations are what I need to know. However, I don't want to have to go out and buy a book on differential equations and study it for 6 weeks just to solve this one problem; if someone could just give me a somewhat detailed summary of what I'm up against and some tips and ideas on how I should go about tackling it, that would be very helpful.

Thanks in advance!
 
Last edited:
Physics news on Phys.org
Dear friend!
hi
please write the equation which you want to solve. I will help u.

best,
 
Hi Shiftless, welcome to PF. Yes you are looking into solving a differential equation of the form:

x'' = a - b x'^2

This may look fairly simple, but it is actually a pretty advanced equation to solve. I don't even think that an equation of this form would be covered by the first semester of differential equations. You will probably have to look it up in a reference book. The only way I could solve it is with Mathematica.

EDIT: actually, this is the same as the differential equation

v' = a - b v^2

which is a first order non-linear differential equation
 
Last edited:
shiftless said:
The end result I am trying to obtain is a function which allows me to calculate the displacement of a land vehicle with respect to time, given its mass (constant, for the purposes of this simplified calculation), thrust from its jet engine (same), no friction, and here is the kicker, atmospheric drag.

I assume you mean atmospheric resistance instead of atmospheric drag. :smile:

Let's call m the mass of the vehicle, [tex]f_j[/tex] the thrust from its jet engine and [tex]f_a=-k\,v^2[/tex] the atmospheric resistance where [tex]k[/tex] is a constant and [tex]v=\frac{d\,x}{d\,t}[/tex] the velocity of the vehicle.
From Newton's 2nd law we have

[tex]m\,\frac{d\,v}{d\,t}=f_j+f_a\Rightarrow\frac{d\,v}{d\,t}=\frac{f_j}{m}-\frac{k}{m}\,v^2[/tex]

This is actually the DE DaleSpam, mentioned. This is a fisrt order DE that is separatable (if my English are correct! :smile:). In order to solve it you must do what the name suggests ...separate it! That is to bring all the [itex]v[/itex] dependence is in one side of the equation and the [itex]t[/itex] dependence on the other, i.e.

[tex]\frac{d\,v}{\frac{f_j}{m}-\frac{k}{m}\,v^2}=d\,t\Rightarrow\int\frac{d\,v}{\frac{f_j}{m}-\frac{k}{m}\,v^2}=t+\tau \quad (1)[/tex]

where [itex]\tau[/itex] is the constant of intergration. Having found the function [tex]v(t)[/tex] the only thing you to do in order to find the displacement of the vehicle [tex]x(t)[/tex] is to integrate it once more, i.e.

[tex]x(t)=\int v(t)d\,t+x_o[/tex]

where [itex]x_o[/itex] is a second constant of integration.

P.S.1 If you have trouble with the integration of (1), try to split the fraction into two simpler ones
[tex]\frac{1}{\frac{f_j}{m}-\frac{k}{m}\,v^2}=\frac{A}{\sqrt{\frac{f_j}{m}}-\sqrt{\frac{k}{m}}\,v}+\frac{B}{\sqrt{\frac{f_j}{m}}+\sqrt{\frac{k}{m}}\,v}[/tex]

P.S.2 If you insist on atmospheric drag replace [tex]k[/tex] with [tex]-k[/tex], in which case you have an integral of the form
[tex]\int \frac{d\,z}{a^2+b^2\,z^2}[/tex]
which is resolved with the help of arc tangent function.
 
Hey, thanks! That's exactly what I was looking for. After posting this thread I went and wrote a simple C program to solve the problem by brute force; i.e. an iterative solver. It works, and it gave me an accurate solution, but not quite as elegant as doing it your way.
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 29 ·
Replies
29
Views
4K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K