Velocity as a function of time -- Terminal Velocity

AI Thread Summary
The discussion revolves around solving a differential equation related to terminal velocity using Euler's method in Python. The user is confused about how to derive the velocity function v(t) from the given equation dv/dt = a - bv, emphasizing the need to first understand the differential equation rather than directly seeking v(t). It is clarified that the user will not find a direct v(t) equation but will need to apply Euler's method to the existing dv/dt equation. The importance of familiarizing oneself with Euler's method is highlighted as a crucial step before coding the solution. Understanding these concepts is essential for successfully completing the assignment.
alex steve
Messages
5
Reaction score
0
I am having trouble finding a staring place. My class requires us to use python to solve the equation.

This problem requires me to use eulers method to solve it. My issues is that i am getting confused as of how to find the v(t). Its been a while since i have had to do advance physics like this. Any help would be appreciated.

The question asks:

When jumping from an airplane, you will most often have a parachute to slow your fall. Here let's consider a very simple example in which the frictional drag force is linearly dependent on the velocity:dv/dt=a−bvwhere a and b are constants. In our case a corresponds to the acceleration due to gravity, and b is a constant from drag. Note that the drag force is negative, indicating it opposes the motion. Use the Euler method to solve for v as a function of time and plot your results. A convenient choice of parameters is a=10and b=1. You should find that v approaches a constant value at long times: this is the terminal velocity. If you open your chute immediately after jumping from the plane, you will have vinitial∼1 m/s, but if you wait a minute or so, you will have vinitial∼50 m/s. Plot both v(t) curves on the same plot with a legend.

I am just getting confused with : if the equations says dv/dt = a=bv , where would i insert t for v(t) if the equation has no t except for the dt in the denominator.
 
Physics news on Phys.org
Please don't delete the homework template.
alex steve said:
I am just getting confused with : if the equations says dv/dt = a=bv , where would i insert t for v(t) if the equation has no t except for the dt in the denominator.
It is a differential equation, you have to solve it first.
 
alex steve said:
I am just getting confused with : if the equations says dv/dt = a=bv , where would i insert t for v(t) if the equation has no t except for the dt in the denominator.
First, what do you know about Euler's Method?
 
I do not need to know about Euler's method right now . I just need help on figuring out the v(t) equation which is the first step of this problem. I will have to code The euler's method later on.
 
alex steve said:
I do not need to know about Euler's method right now . I just need help on figuring out the v(t) equation which is the first step of this problem. I will have to code The euler's method later on.
You won't have a v(t) equation. You'll have a dv/dt equation (which you already have). Then you'll apply Euler's Method to that. So you really should read up on Euler's method first. A web search should turn up many references and examples of its application.
 
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