Fall with Air Drag - Which Value for Velocity to Use?

AI Thread Summary
The discussion focuses on simulating a fall with air drag and the appropriate velocity value to use in calculations. The original method used for free fall resulted in slight errors, prompting a change to the equation for position. The user is uncertain whether to use the current velocity or the average of the current and next velocities when incorporating air drag. A contributor explains that the user is dealing with numerical solutions to differential equations and suggests sticking with the book's recommendation. The conversation highlights the complexities of numerical simulations in physics, particularly regarding the effects of different methods on results.
dracayr
Messages
2
Reaction score
0

Homework Statement


I want to numerically simulate a fall with air drag. In class, we used these equations to produce a table simulating free fall (using a ti calculator):
Code:
dt=0.1s
a=9.81m/s²
t[SUB]n+1[/SUB]=t[SUB]n[/SUB]+dt
v[SUB]n+1[/SUB]=v[SUB]n[/SUB]+a*dt
x[SUB]n+1[/SUB]=x[SUB]n[/SUB]+v[SUB]n[/SUB]*dt

When I compared that system with the curve produced by the direct equation, x=1/2at², I noticed a slight error. After looking at the equations again, I figured that the error came from the fact that I used vn, so the curve would always be a bit lower than 1/2at². So I fixed that by changing the Equation to
Code:
x[SUB]n+1[/SUB]=x[SUB]n[/SUB]+((v[SUB]n+1[/SUB]+v[SUB]n[/SUB])/2)*dt

Now I want to create a similar system but with air drag. As before, my physics book says that I should use vn and not (vn+vn+1)/2. But the book was wrong when it came to free fall, so I don't know which value to use for v. I think I should use (vn+vn+1)/2. But since I don't know the direct equation this time (if there is one), I can't compare to the correct solution..

2a. Relevant equations
v=x/t
a=v/t
F=ma

Fd=b|v|m
vE=(mg/b)1/m
a=g(1-vm/vEm)

Fd is the air drag
b and m are constants depending on the drag (I think in the case of air, m is about 2)
vE is the end velocity the falling body will achieve


The Attempt at a Solution



These are the spreadsheets with the 2 systems:

http://dracayr.awardspace.com/physik.ods"
http://dracayr.awardspace.com/physik.xls"


dracayr
 
Last edited by a moderator:
Physics news on Phys.org
Ah, you've unknowingly ran into problems solving differential equations numerically. Essentially, what you're doing is time-marching an ordinary differential equation. You're comparing results using upwind and central differencing. For what you're doing, just do as the book says.

Numerically, upwinding (essentially using the value of the velocity at the current time) will damp waves, so you will typically have a lower magnitude than the analytic solution.
 
OK, thanks for the information :)

dracayr
 
Last edited:
Kindly see the attached pdf. My attempt to solve it, is in it. I'm wondering if my solution is right. My idea is this: At any point of time, the ball may be assumed to be at an incline which is at an angle of θ(kindly see both the pics in the pdf file). The value of θ will continuously change and so will the value of friction. I'm not able to figure out, why my solution is wrong, if it is wrong .
Thread 'Voltmeter readings for this circuit with switches'
TL;DR Summary: I would like to know the voltmeter readings on the two resistors separately in the picture in the following cases , When one of the keys is closed When both of them are opened (Knowing that the battery has negligible internal resistance) My thoughts for the first case , one of them must be 12 volt while the other is 0 The second case we'll I think both voltmeter readings should be 12 volt since they are both parallel to the battery and they involve the key within what the...
Thread 'Trying to understand the logic behind adding vectors with an angle between them'
My initial calculation was to subtract V1 from V2 to show that from the perspective of the second aircraft the first one is -300km/h. So i checked with ChatGPT and it said I cant just subtract them because I have an angle between them. So I dont understand the reasoning of it. Like why should a velocity be dependent on an angle? I was thinking about how it would look like if the planes where parallel to each other, and then how it look like if one is turning away and I dont see it. Since...
Back
Top