|
If a metal rod is stretched then, at room temperature, it will at first behave elastically (like a rubber band) but eventually, at some position along the rod, a neck will form and then the rod will snap. Once a neck
begins to form, the stress in the rod will drop dramatically, as illustrated in the left-hand figure below. (If you like, you could simulate this behavior with bubble gum.)
At temperatures near absolute zero, however, the rod will behave differently, as in the right-hand figure. An oscillatory pattern of stresses is observed (due to the
thermal properties of the metal) before necking occurs.
A useful model for this oscillatory behavior has been proposed, in the form of a pair of ordinary differential equations:
![\begin{eqnarray*}\sigma' &=& \Sigma_0 \left\{ 1 - \exp\left[ { {\beta \theta + ... ... + \mu \sigma (\Sigma_0 - \sigma')] \equiv f_2(\theta,\sigma) \end{eqnarray*}](../../../img115.gif)
Here represents stress, represents temperature, and t is a (scaled) time variable. The constants , , , and are composite parameters that combine information about the temperature and the metal.
These equations are only used to describe the behavior of stress corresponding to the thermal properties of the metal, and do not describe the (mechanical) necking
that occurs at higher stress levels.
Depending on the choices of the constants, the equations can generate four qualitatively different types of solutions. The goal of this project is to examine these solutions.
The differential equations are stiff, and so must be solved using an appropriate solver. I want you to use ode15s from version 5 of Matlab.
We will assume throughout that
. The remaining constants will be
determined from the values of , , and . Then is defined by
.
C Grade: Solve the differential equations with S0 = 1.6 x 10-2 ,
, and . Initialize the system with
. Integrate from t = 0 to t = 200. Plot
and
(on the same graph); in addition, plot
. Determine the time values corresponding to the first local maximizers of and . Discuss your results. How are stress and
temperature related?
B Grade: Derive the ``steady state'' solution to the system of equations by setting
and solving for and . Is your solution from the C-grade
section converging to the steady-state solution? How sensitive is the steady-state solution to changes in the parameters? (Answer this question both numerically and
analytically.) Derive the Jacobian of the system at steady state:

Prove or verify that the entries in the Jacobian matrix are

and that the formulas for
and
are

A Grade: Modify your software so that it uses the formulas for the Jacobian. Is there any difference in the performance of the software? The qualitative behavior of
the solutions to the differential equations depends on the solutions to

(That is, whether the roots are distinct or not, and real or not.) There are four possibilities, depending on the sign of T and the sign of T 2 - 4D. These possibilities
can be analyzed in terms of the values of
and
. What four kinds of
behavior are possible? How does the numerical solution behave in borderline cases? You can examine T and T 2 - 4D graphically, by varying and .
Deadlines: You should aim to have this project completed by the end of November.
|