Projectile motion + Air resistance equation?

AI Thread Summary
The discussion revolves around the calculation of projectile motion with air resistance, specifically how a web program computes the range of a projectile. The basic equation for range without air resistance is provided, but the challenge lies in understanding the equations used when air resistance is factored in. It is noted that air resistance is not constant and varies with velocity, often modeled as proportional to either velocity or the square of velocity. The method for solving the motion equations involves numerical integration, taking into account the changing drag force as the projectile moves. The conversation emphasizes the complexity of accurately modeling air resistance in projectile motion simulations.
Thaer
Messages
1
Reaction score
0
Take a look at this little web-progarm
http://galileo.phys.virginia.edu/classes/109N/more_stuff/Applets/ProjectileMotion/jarapplet.html

I know that it uses the following equation to calculate the range of the projectile without air resistance
R = (v^2 sin2(theta))/g
R - Range
v - intial velocity

But I have no clue how it calculates range of the projectile with air resistance.
Does anyone know what equation(s) the program uses to calculate the range of the projectile with air resistance (air resistance enabled in the program)
 
Physics news on Phys.org
You just need to know the direction(s) of the resistance force.Assuming the projectile takes place in x-y plane and the air resistance force is given by:

F_r=F_x i + F_y j

You need not remember the formulae, just apply Newton 'kinematic equations' in x direction and y direction seperately , in this case taking into consideration the 'acceleration/decelleration due to air resistance force'

BJ
 
Thaer said:
But I have no clue how it calculates range of the projectile with air resistance.
Does anyone know what equation(s) the program uses to calculate the range of the projectile with air resistance (air resistance enabled in the program)

Air resistance does not fit into a simple equation. Force of air resistance is not a constant, it changes as a function of projectile velocity. You can assume

F drag = C * v or F drag = C * v^2

C is the coefficient of drag for an object. It depends on numerous variables.
Experiments show that the later relationship is a better curve fit. You can bet that the equation(s) they used are formulated on a combination of theoretical and experimental results. You might consider going to the source and asking them.
 
As Pete explained, air resistance is a nonlinear function of velocity, so it is time varying. The only way to solve the differential equations of the movement is numerically. You attribute an initial value to the velocity, calculate the drag and from that the accelerations in the horizontal and vertical directions. You give a small time increment and calculate the new value of the velocity. Work iteratively until you find that the height is zero. The horizontal distance at that instant is the range.
 
The model (differential equation) of the projectile motion will depend on the relationship between the resistive force and the velocity of the projectile that is chosen. Will it be f=k v, f=k v_squared? Wikipedia has some relevant comments in this area and the site at math.fullerton.edu/mathews/n2003/ProjectileMotionMod/ (continues beyond my page) has Mathematica programs which contain the differential equations for the f=k v case and the f=k v_squared case.
 
Hi Thaer,

The web-program you've mentioned very likely uses the air resistance as proportional to v or v^2, as has been mentioned by others. For the kv, you get a nice analytical solution in 2-d. Not so in the kv^2 case. But when the object is thrown vertically upward, both equations can be integrated quite easily in 1-d.

All the parameters like height, time etc are shown in the program. From this, after solving the kv or kv^2 case analytically, it will be possible to say which one matches your results when you put 90 deg in the program. Maybe the air resistance is not either of these in the program, but some other power or function of v.

-----------------------------------------------------

Hi Dr.Brain,

Don't we all wish that things were just always so simple...
 
Last edited:
I was using the Smith chart to determine the input impedance of a transmission line that has a reflection from the load. One can do this if one knows the characteristic impedance Zo, the degree of mismatch of the load ZL and the length of the transmission line in wavelengths. However, my question is: Consider the input impedance of a wave which appears back at the source after reflection from the load and has traveled for some fraction of a wavelength. The impedance of this wave as it...
Back
Top