How can I accurately simulate projectile motion with variable factors?

In summary, the conversation discusses the struggle to find suitable projectile motion equations that take into account factors such as release height and terminal velocity. The use of numerical methods and Bernoulli differential equations is suggested as a way to solve the problem, with the recommendation to use Euler's method for the numerical simulation. The conversation also touches on the use of a programming language, specifically Java, to build an application for this purpose.
  • #1
geekyhawkes
2
0
I have been looking into projectile motion equations and am struggling to find suitable ones that cover a projectile being launched at height. I know this sounds like homework, but it isn't. I am after trying to understand a 6 degree of freedom style taking into account terminal velocity, terminal angle etc.

I guess to help the discussion an example would be sensible;

Take an object carried by a bird in its feet. Variables I see assuming the bird is on Earth are;
Release angle from the birds flight path
Release velocity
Object drag
Release height above ground

I guess moving forward the things to consider would also be, what if the bird were climbing at the time of release, or in a dive.

Thanks for any help with this, I have found a lot of ballistic calculations for rockets, but none that allow for horizontal flight, terminal velocity etc.

Andy
 
Physics news on Phys.org
  • #2
I don't think it's possible to solve 2-dimensional projectile motion with drag analytically to get closed-form equations. I've only done such problems by calculating the path over a series of short time steps, using some method for solving a system of coupled differential equations numerically in a computer program or on a spreadsheet.
 
  • #3
You seem to have two issues here. The first is that you want to work in two dimensions. This it easy enough if you consider horizontal and vertical motions independently. It's particularly easy in the absence of air drag and there are simple formulae (suvat) to help you.

The other issue is drag. As jtbell says, there are no analytic methods to deal with the addition of drag but it is really not too hard to use numerical methods in a step-by-step calculation. (Piecewise Linear) . Excel will do this for you very well and give you a graph at the same time as long as you just want to show the path, given initial conditions. It's a bit harder if you want to determine how to aim at a particular target. That would need some iterative method and the use of a programming language, I think. (Though you can get Excel to solve some equations). Modern PCs have enough grunt as long as you don't need real-time answers.
 
  • #5
if you choose drag force proportional to the velocity squared, and the only other force is gravity, then even though it is a non-linear differential equation, there is an exact solution. This is because the equation is an example of a family of equations known as Bernoulli differential equations. (And they all happen to have nice solutions).

But, if you want a more complicated drag force, or if you start including other forces, then I can't guarantee there will be a nice solution. In this case, you can do as others have suggested and look for the behaviour numerically.
 
  • #6
Thanks for the steers in the right way. I was actually looking to build a simple Java application to do this for me, but have been struggling to understand the variables required and the math that then needs applying to these variables.

I will do a bit of work looking at Bernoulli differential equations.

I know its a bit of an ask, but any chance someone could post here a simple example equation using piecewise linear and Bernoulli differential equations? Thanks for the help so far.
 
  • #7
the standard way to do the numerical simulation is by Euler's method: http://en.wikipedia.org/wiki/Euler_method Essentially, you say that at each time step, the position is updated by v * dt (where v is the current velocity and dt is just a small constant number, for example 0.001, note: the smaller you make this number, the better the approximation) And also, at each time step, you need to update the velocity and acceleration. a * dt is the velocity update, and the acceleration is updated in whatever way satisfies Newton's laws. For example, if the Newton's law for your model are like this: ma = -Cv^2 -mg (where C is just a constant), then 'a' just gets updated using this equation, using the new value of 'v'.
 

Related to How can I accurately simulate projectile motion with variable factors?

What is projectile motion from height?

Projectile motion from height is the motion of an object that is launched or thrown into the air and then falls back to the ground under the influence of gravity, without any additional forces acting on it.

What factors affect projectile motion from height?

The factors that affect projectile motion from height include the initial velocity, angle of launch, air resistance, and the height of the launch point.

How do you calculate the range of a projectile from height?

The range of a projectile from height can be calculated using the formula R = (v2sin2θ)/g, where R is the range, v is the initial velocity, θ is the angle of launch, and g is the acceleration due to gravity.

What is the maximum height reached by a projectile from height?

The maximum height reached by a projectile from height is determined by the initial velocity and angle of launch. It can be calculated using the formula h = (v2sin2θ)/(2g), where h is the maximum height.

How does air resistance affect projectile motion from height?

Air resistance can affect projectile motion from height by slowing down the projectile and reducing its range. The higher the air resistance, the shorter the range of the projectile.

Similar threads

Replies
16
Views
1K
Replies
4
Views
1K
Replies
7
Views
2K
  • Introductory Physics Homework Help
Replies
4
Views
1K
  • Mechanics
Replies
12
Views
6K
  • Introductory Physics Homework Help
Replies
11
Views
808
Replies
6
Views
1K
Replies
10
Views
19K
  • Introductory Physics Homework Help
Replies
15
Views
21K
Back
Top