A System with Air Resistance You can stop holding your breath,
because we're leaving fantasy land and entering the real world, where there is plenty of
air to breath and complicate our systems. At this point most students typically have
enough physics knowledge to understand the basic concepts of these more realistic systems,
but their mathematical toolboxes lack a few of the necessary tools for handling the
associated mathematical models. The missing tools are a knowledge of differential
equations and the methods for solving them. Fortunately, for the type of problem
introduced in this section, the requisite knowledge is not difficult to learn. If
you are at least concurrently taking a course in integral calculus, and can integrate the
function Read the material linked to by the following three hyperlinks from top down. Together they provide introductory information about differential equations and their solution techniques. After reading these you will be well prepared to handle the discussion accompanying the example physics problem below. An Introduction to Differential
Equations New Maple Operators
The Fall of the Rubber Duck Revisited Let a rubber duck fall from the top of a 500 m cliff just as in The Fall of the Rubber Duck, but this time in the analysis of the situation, include the drag force induced on the rubber duck by its movement through the air. This additional consideration results in some significant changes in the mathematical model of the problem. In this analysis we will also need to know the rubber duck's mass; let it be 3 kg. It turns out that the drag force on an object is
usually directly proportional to its velocity, D = cV,
where c is some constant, or the square of the
velocity, D = The Reynolds number helps to determine which proportionality to use. At any given velocity,
where L is the
length of the object, At a typical moment in the duck's fall, the force diagram might look like
From the diagram and Newton's second law we see that at any given moment during the fall,
While this equation may look a lot like many others you have seen, it's very likely that it is quite different in that a force on its right side is not a constant with respect to time; D varies with time. Newton's second law and component forces that vary with time combine to create not your run of the mill algebraic equations, but differential equations, and you must use the solution methods of differential equations to extract useful information from them. Note that,
D = or, D = W = Thus,
Rearranging it into standard form,
Of course, this is a second-order nonhomogeneous linear differential equation, and we've only studied how to solve first order equations of this type. But, the following observations enable us to convert this into a first-order nonhomogeneous linear differential equation.
And,
Thus,
At this point we begin a Maple solution to this initial-value problem. > restart; > diff_eq := diff(v(t),t)-v(t)*(c/m)=-g;
> dsolve({diff_eq, v(0)= 0}, v(t) );
> odetest(%,%%); # a check
> vel := simplify(%%); Note the simplicity of this solution as opposed to the by hand method of the differential equation introduction; three in-depth pages of information reduced to just three commands.
Keep in mind that c is not a constant produced during the solution process by any indefinite integrals, but the constant of proportionality from the equality D = cV (this is an initial-value problem, and thus includes only definite integrals in the solution). In most situations, the magnitude of this constant is between 0.4 and 1.0. Our choice of orientation for the vertical axis implies that our constant will need to be negative (see problem 1 of Differential Equation Problem Set). Let c = -0.8, m = 3 kg , and g = 10 m / s ^2. > c := -0.8; m := 3; g := 10;
> vel;
> Digits := 3;
> vel;
As the rubber duck falls to the sea, time progresses. Note what happens to v(t) in this process. > for t from 2 by 6 to 38 do vel od; t; t := 't'; t;
Specifically, > Limit( rhs(vel), t=infinity); # try this without the above t := 't'
> value(%);
This is the terminal velocity of the rubber duck.
All objects falling to Earth only under the influence of gravity and a drag force
either of the form D = cV or D =
The earlier comment about when
Newton's 2nd law creates run of the mill algebraic equations vs. when it creates
differential equations is not entirely accurate; you can view all equations generated by
Newton's 2nd law as differential equations. For example, we'll use differential
equations to find the position equation of the Kinematics 1 version of The Fall of the Rubber Duck, Without air resistance we have,
Or,
Or,
And this is the "simplest" form of a differential equation, which we used to derive the solution to the other types of differential equations. Since it's an initial-value problem, it's solution is
Now,
Or,
This is, of course, another instance of an initial-value problem in the simplest form.
Or,
In the last set of commands we'll produce a multiple plot of the rubber duck's position vs. time graphs, both with and without air resistance. It vividly illustrates the inaccuracy of problem solutions that fail to consider all contributing factors. Note that, with air resistance, > y(t)-y(0) = Int(rhs(subs(t=s,vel)),s=0..t);
> y_air := 500 + value(rhs(%)); # note that for t=0, y=500
And without air resistance, > y_no_air := 500 - (g*t^2)/2;
> y := plot({y_air,y_no_air}, t=0..17.5, labels=["t","y"], title="Height vs. Time"): > with(plots): > t1 := textplot([8.5,325,`with air resistance`], align={ABOVE,RIGHT}): > t2 := textplot([12,-210,`without air resistance`], align={BELOW,LEFT}): > display({y,t1,t2});
When considering the rubber duck's fall in a more realistic setting, the fall takes almost twice as long! This says something about how often you can expect to see differential equations in any serious physics or engineering work that you do in the future.
Differential Equations Problem Set Top An Introduction to Diff Eqs Homogeneous Linear Diff Eqs Nonhomogeneous Linear Diff Eqs Tutorial Index Maple Index How to... Problem Set Index Please send me any polite comments, suggestions, or corrections. |