Classroom Tips and Techniques: An Undamped coupled Oscillator
Robert J. Lopez
Emeritus Professor of Mathematics and Maple Fellow
Maplesoft
|
Introduction
|
|
By coincidence, right after completing last month's article Simultaneous Diagonalization and the Generalized Eigenvalue Problem, a long-time Maple user sent me a Maple worksheet whose purpose was to solve a three-degree-of-freedom spring-mass system using exactly the mathematics in the as-yet unreleased article. While editing the worksheet, it became clear that although the theory was easy enough to articulate, implementing an efficient solution of a real problem in Maple was something worth detailing.
Consequently, this month's article is a solution of the initial value problem I was sent. The purpose of the article is an articulation of the details of the calculations, showing how the theory developed in last month's article leads to a solution of a system of linear, second-order, constant-coefficient differential equations. In addition, we aim to show how the use of math-mode input simplifies the notation, and illuminates the connection between the underlying mathematics, and Maple's expression of it.
|
|
Data Definitions
|
|
We take as given the following definitions of and , the kinetic and potential energies of the system.
>
|
![KE := (1/2)*(sum(m[j]*(diff(x[j](t), t))^2, j = 1 .. 3)); PE := 1/2*(sum(k[j]*x[j](t)^2, j = 1 .. 3)+k[4]*(x[2](t)-x[1](t))^2+k[5]*(x[3](t)-x[2](t))^2+k[6]*(x[3](t)-x[1](t))^2)](/view.aspx?SI=129521/428458/969b930b6b183d13ef4c7b5df7da4bac.gif)
|
The Lagrangian is then
>
|
|
so that the Euler-Lagrange equations for the problem are
>
|
|
where we have removed the first integrals that the EulerLagrange command generates. Except for the zeros on the right-hand sides, the individual equations are
>
|
![for j to 3 do E || j := -select(has, EL, m[j])[] end do](/view.aspx?SI=129521/428458/7165440487fdf12687298487f8616a96.gif)
|
If the following matrices are defined, the system can be written in the form , where u is a vector whose components are the unknowns .
>
|
![SymbolicK := GenerateMatrix([E1, E2, E3], [seq(x[j](t), j = 1 .. 3)])[1]; SymbolicM := DiagonalMatrix([m[1], m[2], m[3]])](/view.aspx?SI=129521/428458/0584222573db983920d6195bce0479c8.gif)
|
The parameters appearing in the mass and stiffness equations are entered in set of equations, not hard-coded as assigned values. This keeps all the symbols as variables, and does not conflict the calculations with floats where they are not needed.
>
|
![params := {k[1] = 1000, k[2] = 1000, k[3] = 1000, k[4] = 1000, k[5] = 1000, k[6] = 1000, m[1] = 1/2, m[2] = 1., m[3] = 3/2}](/view.aspx?SI=129521/428458/6b32f2496ac75734531656a1d902a1db.gif)
|
To obtain the numeric mass and stiffness matrices, evaluate the symbolic forms at the parameter values. By including one mass value as a float, all calculations involving these matrices will be executed in floating-point form. The exact representations of the eigenpairs for these matrices suffer badly from expression swell. This is to be expected, since the underlying math is the exact solution of a cubic characteristic equation.
>
|

|
The initial data for the problem is likewise entered as a set of equations, not hard-coded as assignments.
>
|
 = .5, x[2](0) = -0.5e-1, x[3](0) = 0, (D(x[1]))(0) = 0, (D(x[2]))(0) = 0, (D(x[3]))(0) = 0}](/view.aspx?SI=129521/428458/2e782f6898cffa396a550b9354e45837.gif)
|
|
|
dsolve Solution
|
|
Although the system is linear, with constant coefficients, an exact solution suffers from expression swell because, in essence, an exact solution needs to access the exact roots of a cubic equation. A numeric solution is therefore sought. The specific ODEs for this problem are then
>
|
|
-1000*x[2](t)-1000*x[3](t)+(1/2)*(diff(diff(x[1](t), t), t)), 3000*x[2](t)-1000*x[1](t)-1000*x[3](t)+1.*(diff(diff(x[2](t), t), t)), 3000*x[3](t)-1000*x[2](t)-1000*x[1](t)+(3/2)*(diff(diff(x[3](t), t), t))}](/view.aspx?SI=129521/428458/87685785ebf38bea1d1ff7e1812f0ee0.gif)
Invoke the dsolve command with the numeric option. The adroit use of sets allows the equations and the initial data to be coalesced by set union.
>
|
|
Obtain graphs of each dependent variable. Note the use of the odeplot command from the plots package.
The motion is highly oscillatory, so we expect the angular frequencies (which are the square roots of the generalized eigenvalues) to be relatively large.
|
|
Structure
|
|
This section sketches the algorithm for the simultaneous diagonalization of the mass and stiffness matrices. This algorithm requires both matrices to be symmetric, and for to be positive definite, which in this case, it certainly is.
The differential equations are . A matrix exists, and with it, both M and K are simultaneously diagonalized. Simultaneous diagonalization of the matrices and means that and , so that and . Hence, the differential equation becomes
or
upon multiplying from the left by . Defining , or equivalently, , puts the differential equation into the uncoupled form , from which a solution is immediately available. The square roots of the diagonal elements in are the angular frequencies for the normal modes of oscillation of this undamped vibrating system.
Alternatively, if solutions of the form are sought, where v is a constant vector, the differential equation becomes , a generalized eigenvalue problem.
The matrix is obtained as follows. Obtain , the Cholesky decomposition of , where is a lower triangular factor. Form the matrix and obtain its eigenpairs. Apparently, it is useful to sort the eigenpairs for physical reasons, but the mathematics underlying these calculations does not require this.
Form , a matrix whose columns are the normalized eigenvectors just obtained. (Maple returns normalized eigenvectors by default, so this step does not need to be implemented in the calculations below.) The required matrix is given by .
The References section at the end of this document point to three different sources where this algorithm is derived.

|
|
Generalized Eigenvalue Problem and Its Eigenpairs
|
|
Maple's Eigenvalues and Eigenvectors commands will solve the generalized eigenvalue problem. There's more work involved in sorting the eigenpairs than there is in finding them.
>
|
![temp := map(simplify, [Eigenvectors(K, M, output = list)])](/view.aspx?SI=129521/428458/78a9c2b6321098eccfb7a9ae572b6487.gif)
|
The generalized eigenvalues can be put into a vector , and their square roots, into a vector .
>
|
![Lambda := `<,>`(seq(Eigenpairs[j][1], j = 1 .. 3))](/view.aspx?SI=129521/428458/0323e6336ac913d26d4071c136fc0a4e.gif)
|
|
|
Simultaneous Diagonalization
|
|
The following calculations implement the algorithm for finding that simultaneously diagonalizes the mass and stiffness matrices. Begin by obtaining the Cholesky decomposition of .
>
|
|
Form the matrix and obtain its eigenpairs, sorted. The eigenvectors are automatically normalized by Maple's Eigenvectors command. Form , a matrix of the sorted eigenvectors. Then define . These steps are summarized in Table 1.
•
|
Form the matrix .
|
|
>
|
|
|
|
>
|
![Temp2 := simplify([Eigenvectors(Temp1, output = list)])](/view.aspx?SI=129521/428458/9945d5f38fe22093514db9b2a5c2d26c.gif)
|
|
•
|
Sort the three lists by ordering the eigenvalues from smallest to largest.
|
|
>
|
![EP := sort(Temp2[], proc (a, b) options operator, arrow; is(a[1] < b[1]) end proc)](/view.aspx?SI=129521/428458/e11b09f356c90b83a19e214110f6ee04.gif)
|
|
•
|
Construct the matrix whose columns are the eigenvectors, now both unit and sorted.
|
|
>
|
|
|
•
|
Form the matrix .
|
|
>
|
|
|
•
|
Form the vector whose elements are the sorted eigenvalues. These are the squares of the modal angular frequencies.
|
|
>
|
|
|
•
|
Form the vector whose elements are the modal angular frequencies.
|
|
>
|
|
|
Table 1 Obtaining the matrix
|
|
|
The matrix is
>
|
|
The number of digits in the elements of is a function of the calculation that produced . The numerical routine that returned the Cholesky decomposition of works in "hardware floats," that is, floating-point numbers implemented in the hardware of the computer. These are different from "software floats," the Maple floating-point numbers that can have an arbitrary number of digits. For a software float, the evalf command can be used to change the number of digits. Doing this with a hardware float requires a bit more care.
>
|
|
Table 2 contains some verifications of the preceding calculations.
•
|
Show that .
|
|
>
|
|
|
•
|
Show that .
|
|
>
|
|

|
•
|
Show that ; i.e., that is an orthogonal matrix.
|
|
>
|
|
|
Table 2 Verifications: , , and
|
|
|
To morph these matrices and vectors into an actual solution of the given IVP, write the general solution of the transformed (i.e., uncoupled) system , where here, is a diagonal matrix whose diagonal elements are the components of the vector .
>
|
|
Note the use of the elementwise operator, the tilde. The construct or multiplies each element of the vector by , and then computes the cosine or sine of that product. The vector of cosines is multiplied elementwise by a vector of constants ; the vector of sines, by a vector of constants .
Define vectors of initial values for the original initial value problem.
Recall that , where X is the solution of the uncoupled system, and u is the solution of the original coupled system. Since is known, but and are given, the constants and in are determined by the equations and . The Equate and solve commands are instumental in setting up an solving these algebraic equations.
Substitute these values for the coefficients into Xg, the general solution of the uncoupled system.
>
|
|
This is the specific solution of the uncoupled system. It has to be transformed to the solution of the original coupled system. This final solution is , obtained below with all the digits of the hardware floats in , but displayed with just five digits.
>
|
![u := S.X; map(evalf[5], u)](/view.aspx?SI=129521/428458/a7708343ec3c674ba2b7ffeab610fc80.gif)
|
Test that this solution satisfies the initial conditions:
|
|
Comparing Solutions
|
|
Ordinarily, a graph would provide acceptable evidence that two solutions were equivalent. Given the highly oscillatory behavior of the solution of this initial value problem, we instead compare the values of the two solutions (one from dsolve, and one from uncoupling) at ten equispaced points in the interval .
Once again obtain the numeric solution provided by the dsolve command, but this time, set the output to be a list of procedures.
>
|
|
To see what the list of procedures is, call the solution at some given time.
>
|
|
)(1) = HFloat(0.48462071608167273), (diff(x[1](t), t))(1) = HFloat(-5.399770918272315), (x[2](t))(1) = HFloat(-0.0660550136699385), (diff(x[2](t), t))(1) = HFloat(1.5672045432948187), (x[3](t))(1) = HFloat(-0.003032171633109441), (diff(x[3](t), t))(1) = HFloat(2.03737405500597)]](/view.aspx?SI=129521/428458/d6da56c109078ec29a9e334b4167a927.gif)
Extract the procedures that give the values of the three dependent variables describing position.
At ten equispaced points in the interval , calculate the norm of the difference between the numeric solution and the vector solution obtained by the simultaneous diagonalization process detailed in this document.
>
|
, evalf(eval(`<,>`(Y1(t), Y2(t), Y3(t))-u, t = (1/10)*j*Pi)), 7)), j = 1 .. 10)](/view.aspx?SI=129521/428458/aff3a22a1b3a6b488cbc9417cacc1b5a.gif)
|
To seven places, the solutions agree at these ten points.
|
|
References
|
|
1.
|
Numerical Analysis: A Practical Approach, 3rd ed., Melvin J. Marin and Robert J. Lopez, Wadsworth Publishing Company, 1991.
|
3.
|
Applied Linear Algebra, 3rd ed., Ben Noble and James W. Daniel, Prentice-Hall Publishing Company, 1988.
|
|
Legal Notice: © Maplesoft, a division of Waterloo Maple Inc. 2012. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.
|