Formula to find height required to reach x speed in freefall

In summary: If the initial velocity is positive (falling downwards), then the acceleration due to gravity is acting in the same direction and the object will continue to accelerate until it reaches terminal velocity.2) If the initial velocity is negative (rising upwards), then the acceleration due to gravity is acting in the opposite direction and the object will decelerate until it reaches zero velocity and then fall back down. In both cases, the equations for distance (d=\frac{v_f^2 - v_i^2}{2a}) and time (T=\frac{v_f - v_i}{a}) still apply, but the values for initial and final velocity will be different depending on the direction of motion. It is
  • #1
72612
2
0
Acceleration (a or 9.8 for simplicity); initial velocity (vf); distance (d); Initial velocity (vi)

trying to find a formula to answer "how far would you have to fall to reach x speed" where x is input from user.

Is it possible to answer this using two steps, first find time then find distance?d = vi*t + 0.5*a*(t^2) // t isn't given (can it be found with vi,vf,a ?)
d = (0) + .5(9.8)(t^2)
d =4.9(t^2)

vf = a(t) + vi // seems it can
vf = 9.8(t) + 0
t= (vf-vi) / a
[tex]t = \frac{vf-vi}{a} [/tex]yea that worked; code ended up being

//first we must find time
time = speed / 9.806;
//now use time in a distance equation
height = (vi*time) + (0.5*9.8)*(time*time);

-----

//if you jump out of a plane going towards ground at 250mph , how long/far would it take to reach 120mph (or terminal velocity in a traditional skydiving formation) due to air resistance , what force is being applied to your body?

That's the next part I need help with.
 
Last edited:
Physics news on Phys.org
  • #2
Welcome to PF;
Well done - just some pointers:

The way to be sure of yourself in these things is to start by drawing the velocity-time graph of the motion.

You are better to do the calculation in one step - avoids rounding errors in between stages. This is a good discipline for later.

Note: good to see you using latex - in latex you can use an underscore to make a subscript so your equation markup would be T=\frac{v_f - v_i}{a} to give you[tex]T=\frac{v_f - v_i}{a}[/tex]... you can substitute that directly into the equation for d. (Note: I've used T instead of t to avoid confusion with the label for the time axis.)

the v-t graph is a triangle if the initial speed is zero - the distance is the area of the triangle (base=T, height = vf right?) so [tex]d=\frac{v_f T}{2}=\frac{v_f^2}{2a}[/tex]

(of course you could have just remembered the kinematic equation: [itex]v_f^2 = v_i^2 + 2ad[/itex]
 
  • #3
after experimenting a little I can conclude I went wrong somewhere.
If I set initial velocity to 0 calculations work, if initial velocity !=0 , answer is incorrect.

Looking at the formula it's easy to see if vi > 0 the height increases - opposite of what should happen. I'm thinking I need to input something as a negative - however in my head vi / vf and acceleration are traveling in the same direction, meaning if one was negative they all would be.

I vaguely remember something about velocity not having a direction

---

the other equation
to isolate d
[tex] d = \frac{v_f^2 - v_i^2}{2a} [/tex]
wanting to double check that's right

order of operations becomes a problem for the compiler the bigger the equations get but I can see the value in having a single step equation.
 
  • #4
72612 said:
after experimenting a little I can conclude I went wrong somewhere.
If I set initial velocity to 0 calculations work, if initial velocity !=0 , answer is incorrect.

Looking at the formula it's easy to see if vi > 0 the height increases - opposite of what should happen. I'm thinking I need to input something as a negative - however in my head vi / vf and acceleration are traveling in the same direction, meaning if one was negative they all would be.

I vaguely remember something about velocity not having a direction

---

the other equation
to isolate d
[tex] d = \frac{v_f^2 - v_i^2}{2a} [/tex]
wanting to double check that's right

order of operations becomes a problem for the compiler the bigger the equations get but I can see the value in having a single step equation.

for the red...

You have to establish a direction to use these kinematic equations. Velocity does have direction. As for doing this on a computer with a language or whatever, you have to use signs somehow.

The second part of your question air friction acts up, gravity down so you have two forces acting on you. The problem is that air resistance is velocity dependent. In other words, as you fall the acceleration is going to change. And you cannot use the equations above with changing acceleration unless you modify. The force of air is usually modeled to be kv^2 or kv. So basically you get something like Kv^2 - mg = ma but a is changing... so the distance you fall cannot be done with the kinematic equations in which accel. does not change, its tougher.
 
  • #5
In this question it is subtly implied that acceleration is not constant. Terminal velocity is attained after falling for some distance and reaching an equilibrium velocity when your forces (drag and gravity) are equal. If you've had fluids than you can assume the air is inviscid and incompressible and you may solve this equation for z (the distance you fell):


[itex]P + 1/2 \rho V^2 +\rho g z = 0[/itex]
P = thermodynamic pressure, dependent on temperature and density primarily
ρ = density of the air
z = distance of freefall (really z-z0)

Unless you've had fluid mechanics or an intro to fluids class I doubt that your teacher will expect you to use this equation. Should you decide to go the extra mile you can find its reference page on Wikipedia as the "Bernoulli equation".

EDIT:
This is for the velocity of a fluid (specifically a streamline). To find the velocity of a falling body you can also use the terminal velocity formula, which is found on Wikipedia and balance it with gravity. Unfortunately, this won't do you any good in finding the distance fallen.
 
Last edited:
  • #6
In this question it is subtly implied that acceleration is not constant.
I think it could be read either way - context is everything. In the context that the only input parameter is a final speed, it seems reasonable to guess free-fall without air friction. After all, if you fell from orbit, you will go through a deceleration phase as well (possible you accumulated speed from high altitude will be faster than the terminal speed for lower altitude).

@72612
In the event that initial velocity is not zero ... (setting the positive direction to "down") then there are several possibilities for the answer (and depending on how you interpret "fallen"). If the initial velocity is non-zero, and upwards, then it is negative. But the input parameter is given as "speed" so the object could reach that speed on the way up, as well as on the way down. The distance "fallen" could be the total distance traveled in the trip or just the relative displacement (from the initial position).

OTOH: the initial velocity is not one of the stated input parameters ... it seems reasonable to consider it to be about falling from rest. I have the same reservation about air resistance, since altitude is not a parameter, the model would have to be simple anyway. For that matter, altitude is important for the value of g. Perhaps they just want motion with constant acceleration as a simply dynamical system?

Since this is a computer programming exercise - more care should be taken about how we go about it. What is the education purpose of the exercise? What do they want you to learn? It could be you are supposed to use an iterative or recursive approach rather than just bunging the number into the kinematic equations. This is why context is so important.
 
  • #7
Simon Bridge said:
I think it could be read either way - context is everything. In the context that the only input parameter is a final speed, it seems reasonable to guess free-fall without air friction. After all, if you fell from orbit, you will go through a deceleration phase as well (possible you accumulated speed from high altitude will be faster than the terminal speed for lower altitude).

@72612
In the event that initial velocity is not zero ... (setting the positive direction to "down") then there are several possibilities for the answer (and depending on how you interpret "fallen"). If the initial velocity is non-zero, and upwards, then it is negative. But the input parameter is given as "speed" so the object could reach that speed on the way up, as well as on the way down. The distance "fallen" could be the total distance traveled in the trip or just the relative displacement (from the initial position).

OTOH: the initial velocity is not one of the stated input parameters ... it seems reasonable to consider it to be about falling from rest. I have the same reservation about air resistance, since altitude is not a parameter, the model would have to be simple anyway. For that matter, altitude is important for the value of g. Perhaps they just want motion with constant acceleration as a simply dynamical system?

Since this is a computer programming exercise - more care should be taken about how we go about it. What is the education purpose of the exercise? What do they want you to learn? It could be you are supposed to use an iterative or recursive approach rather than just bunging the number into the kinematic equations. This is why context is so important.

/if you jump out of a plane going towards ground at 250mph , how long/far would it take to reach 120mph (or terminal velocity in a traditional skydiving formation) due to air resistance , what force is being applied to your body?


Yes you have to be right on this one Simon. They would not put something straightforward and then hit him/her with a right cross. Although I have run into that, but seeing what the intended purpose is you have got to be right. Constant force for air so constant acceleration.
 
  • #8
If this is a computational problem (as mentioned above) then summing the forces and solving for the velocity numerically is a straight forward process, for a cs major at least.
 
  • #9
Here is a huge hint:
If you sum your forces in the y direction you will get


[itex]1/2 \rho (\Delta v)^2 S C_D - m ({\Delta v}/{\Delta t}) = mg[/itex]
or
[itex]1/2 \rho (\Delta v)^2 S C_D \Delta t - m ({\Delta v}) = mg \Delta t[/itex]

You can solve for [itex]\Delta v [/itex] numerically using the quadratic equation.

To obtain the unknowns S and CD, use the terminal velocity equation to solve for their product S*CD

Once you have all of the velocities for each iteration simply perform a numerical integration to get your distance.
 
  • #10
Cool - remains only for OP to confirm :)
 

Related to Formula to find height required to reach x speed in freefall

1. What is the formula to find the height required to reach a certain speed in freefall?

The formula to find the height required to reach a certain speed in freefall is h = (v2 - u2) / 2g, where h is the height, v is the final velocity, u is the initial velocity, and g is the acceleration due to gravity (9.8 m/s2).

2. How do I use the formula to find the height in real-life scenarios?

To use the formula in real-life scenarios, you will need to know the initial velocity of the object and the desired final velocity. You will also need to take into account the acceleration due to gravity at that location. Once you have these values, you can plug them into the formula to calculate the required height.

3. Can I use this formula for any object in freefall?

Yes, this formula can be used for any object in freefall, regardless of its mass or shape. However, it assumes that air resistance is negligible.

4. Is this formula accurate enough for real-world applications?

This formula provides a good estimate of the required height in most real-world scenarios. However, it does not take into account factors such as air resistance, which can affect the object's acceleration and thus its final velocity. For more accurate results, other variables may need to be considered.

5. Are there any limitations to using this formula?

This formula is based on the assumption of a constant acceleration due to gravity. In reality, the acceleration may vary depending on the location and height of the object. Additionally, it does not take into account factors such as air resistance, which can significantly affect the object's fall. Therefore, this formula may have limitations in certain situations and should be used with caution.

Similar threads

  • Introductory Physics Homework Help
Replies
2
Views
257
  • Introductory Physics Homework Help
Replies
5
Views
1K
  • Introductory Physics Homework Help
Replies
12
Views
1K
  • Introductory Physics Homework Help
Replies
2
Views
3K
  • Introductory Physics Homework Help
Replies
4
Views
590
  • Introductory Physics Homework Help
Replies
9
Views
1K
  • Introductory Physics Homework Help
Replies
15
Views
2K
  • Introductory Physics Homework Help
Replies
3
Views
686
  • Introductory Physics Homework Help
Replies
1
Views
1K
  • Introductory Physics Homework Help
Replies
15
Views
4K
Back
Top