Can aerodynamic trajectories ever be shaped like this?

  • Thread starter Thread starter Elroy.LaSalle
  • Start date Start date
  • Tags Tags
    Trajectories
AI Thread Summary
The discussion revolves around the feasibility of achieving a specific aerodynamic trajectory shape, described as a sideways sigma, using a trajectory program that accounts for aerodynamic resistance. The initial claim suggests that such a trajectory, featuring a near 90° downward turn, is theoretically possible, though participants argue it cannot occur under normal conditions on Earth. The conversation emphasizes the need for clarity in the equations used in the program, particularly regarding the treatment of drag and velocity components. Participants point out that the drag formula should account for total velocity rather than treating x and y components independently. The overall consensus suggests that while unusual trajectories can occur under specific conditions, the described scenario likely results from programming inaccuracies.
Elroy.LaSalle
Messages
2
Reaction score
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
If you want validation of your equations/software, you'll need to post that too.
 
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.
 
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
 
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.
 
The rope is tied into the person (the load of 200 pounds) and the rope goes up from the person to a fixed pulley and back down to his hands. He hauls the rope to suspend himself in the air. What is the mechanical advantage of the system? The person will indeed only have to lift half of his body weight (roughly 100 pounds) because he now lessened the load by that same amount. This APPEARS to be a 2:1 because he can hold himself with half the force, but my question is: is that mechanical...
Some physics textbook writer told me that Newton's first law applies only on bodies that feel no interactions at all. He said that if a body is on rest or moves in constant velocity, there is no external force acting on it. But I have heard another form of the law that says the net force acting on a body must be zero. This means there is interactions involved after all. So which one is correct?
Thread 'Beam on an inclined plane'
Hello! I have a question regarding a beam on an inclined plane. I was considering a beam resting on two supports attached to an inclined plane. I was almost sure that the lower support must be more loaded. My imagination about this problem is shown in the picture below. Here is how I wrote the condition of equilibrium forces: $$ \begin{cases} F_{g\parallel}=F_{t1}+F_{t2}, \\ F_{g\perp}=F_{r1}+F_{r2} \end{cases}. $$ On the other hand...
Back
Top