Can aerodynamic trajectories ever be shaped like this?

  • Thread starter Elroy.LaSalle
  • Start date
  • Tags
    Trajectories
In summary, Elroy's program calculates a trajectory that has a sideways sigma shape, but this is an artifact of shoddy programming.
  • #1
Elroy.LaSalle
2
0
I have recently written a trajectory program which includes aerodynamic resistance, that is, only form drag at this point. Out of curiosity I put in some ludicrous inputs such as speeds above Mach 1 (I know that wave drag becomes significant at that speed and my calculations would be rendered inaccurate), but either way, I get my program to give a trajectory that has a shape like a sideways sigma (not the circle-like one) and that the "projectile" takes a near 90° turn downwards. My question is, can aerodynamic trajectories ever look like this (in theory, at least) or is this an artifact of shoddy programming. I do not want speculations as much as I want a clear, well supported answer. I'll try to eventually get a picture here.
 
Physics news on Phys.org
  • #2
If you want validation of your equations/software, you'll need to post that too.
 
  • #3
Welcome to PF, Elroy. (Please pass along my regards to Rosie and Astro. :smile:)
Having thrown, shot, and otherwise dispensed a significant number of projectiles in my day, I can honestly say that what you described can't occur on this planet. Maybe near a couple of neutron stars orbiting each other, but I doubt it.
As Haruspex said, however, you really need to provide a lot more information regarding how you arrived at your observations.
 
  • #4
Here is a link to the photo:

http://www.flickr.com/photos/83181851@N04/

You're right, a better question to ask would be about my actual equations. Now my equations are written in such a way that a computer can understand them, not a human; I'll do my best to explain. First I'll post the raw code, then I will explain.

objvely=(objvely+(vectgrav*tstep))
objvely=objvely-(tstep*compdragcoef*sqr(objvely)/objmass)
objvelx=objvelx-(tstep*compdragcoef*sqr(objvelx)/objmass)
newx=(objvelx*tstep)+oldx
newy=(objvely*tstep)+oldy

Line 1:[new velocity of the object in the y direction]=[object's y velocity] + [acceleration due to gravity (-9.8)] * [time frame of calculation, a pre-selected fraction of a second]

Line 2:[new velocity of the object in the y direction]=[object's y velocity] - [fraction of time] * [composite coefficient of drag, gotten from the drag formula] * [square of the object's velocity as in the drag formula] / [the mass of the object, changing a force to a corresponding acceleration]

Line 3: same as Line 2, except in the x direction

Line 4:[new x coordinate] = [object's x velocity] * [time frame] + [old x coordinate]

Line 5: see Line 4

Here it is in dimensional analysis:

Line 1: m/s = m/s + (m/s^2 * s)

Line 2: m/s = m/s - (s * (kg/m) * (m/s)^2) / kg OR (s * N) / kg

Note: kg/m comes from the air density and the surface area in the drag formula: (kg/m^3)*(m^2)

Hopefully I have presented my case a little better this time. I will post the software once I improve its usability.

Thanks
 
  • #5
You cannot calculate y and x as independent variables. The square root in the drag formula should take the total velocity into account, and multiply the drag with the corresponding vector components for x and y velocity.
This should explain the (wrong) upwards curved trajectory and probably a part of the downwards movement, too.

"nearly horizontal -> close to vertical" as general shape can happen, you can get similar shapes with table tennis balls in reality. Even the upwards curvature is possible there, but this is related to spin.
 

What is an aerodynamic trajectory?

An aerodynamic trajectory refers to the path that an object or fluid takes through the air, influenced by forces such as gravity, drag, and lift.

How are aerodynamic trajectories shaped?

Aerodynamic trajectories are shaped by the forces acting upon an object. These forces can be manipulated through design and control of the object, as well as external factors such as air density and wind speed.

Can aerodynamic trajectories ever be shaped in a non-linear manner?

Yes, aerodynamic trajectories can be shaped in a non-linear manner. This can occur when there are multiple forces acting on an object, causing it to change direction or speed in an unpredictable manner.

What factors affect the shape of an aerodynamic trajectory?

Several factors can affect the shape of an aerodynamic trajectory, including the shape and design of the object, the forces acting upon it, and external factors such as air density and wind speed. Other factors may include air resistance, turbulence, and airfoil shape.

How is the shape of an aerodynamic trajectory important in scientific research?

The shape of an aerodynamic trajectory is important in scientific research as it can provide valuable information about the forces and factors affecting an object's motion. By analyzing the shape of a trajectory, scientists can better understand and predict the behavior of an object in motion.

Similar threads

  • Mechanics
Replies
1
Views
1K
Replies
8
Views
2K
Replies
1
Views
1K
Replies
1
Views
1K
  • Mechanics
Replies
26
Views
12K
Replies
8
Views
2K
Replies
2
Views
4K
  • Mechanics
Replies
7
Views
2K
Back
Top