Preface


This section discusses the period of pendulum oscilations and its approximations.

Return to computing page for the first course APMA0330
Return to computing page for the second course APMA0340
Return to Mathematica tutorial for the second course APMA0340
Return to the main page for the course APMA0330
Return to the main page for the course APMA0340
Return to Part IV of the course APMA0330

Period of pendulum oscillations


The time period of the oscillator increases when damping is present. This is because what damping does is essentially it dissipates energy and delays the motion so the time taken to complete one cycle increases slightly. For very high damping ratios (>=1), the system decays or reaches almost zero velocity without oscillating and hence the motion is no longer harmonic (periodic). This is true also because as damping increases or we can say friction increases the particle would try to come back to rest and this will be possible only when it’s time period will also increase.

In case of forced oscillations, period of oscillation does not depend on the damping force and is equal to frequency of driving force. The damping force only reduces the amplitude of oscillation at resonance and creates a lagging response. If the driving force is suddenly switched off at resonant frequency , the oscillation amplitude will decay exponentially at the oscillation frequency less than resonant frequency due to the damping effect . On further increasing the damping constant above a critical value oscillation stops completely and response becomes purely exponentially decaying. System is then called critically damped. Such transition from oscillatory response to exponential hints at the deeper connection between cosine and exponential functions. No wonder why complex number aided by remarkable Euler's formula acts as two way bridge between these functions and facilitates an easy mathematical solution to oscillation problems. The differentiation operation is reduced to ordinary multiplication operation by use of complex exponential functions.

Example:

Clock pendulum
   ■

Example: The Toda lattice models particles on a line interacting with pairwise exponential forces and is governed by the Hamiltonian:

\[ H ({\bf p}, {\bf q} ) = \sum_{k=1}^n \left( \frac{1}{2}\,p_k^2 + e^{q_{k+1} - q_k} -1 \right) . \]
Consider the case when periodic boundary conditions qn+1 = q1 are enforced. The Toda lattice is an example of an isospectral flow. Using the notation
\[ a_k = - \frac{1}{2}\, p_k , \qquad b_k = \frac{1}{2}\, \exp \left\{ \frac{1}{2} \left( q_{k+1} - q_k \right)\right\} , \]
the eigenvalues of the following matrix
\[ {\bf L} = \begin{bmatrix} a_1 & b_1 & 0&0& \cdots &0 &0 \\ b_1 & a_2 & b_2 & 0&\cdots & 0&0 \\ 0&b_2& a_3 & b_3 & \cdots & 0&0 \\ \vdots&\vdots & \vdots & \vdots & \ddots & \vdots \vdots \\ 0&0&0&0&b_{n-2} & a_{n-1}& b_{n-1} \\ 0&0&0&0& \cdots & b_{n-1} & a_n \end{bmatrix} \]
are conserved quantities of the flow. Let us consider the Toda lattice problem for n = 3.
n = 3;
periodicRule = q[n+1,t] -> q[1,t];
H = Sum[p[k,t]^2 /2 + Exp[q[k+1,t] - q[k,t]] -1, {k,1,n}]; eigenvalueRule = {a[k_,t_] :> -p[k,t]/2, b[k_,t_]:> 1/2 * Exp[q[k+1,t]-q[k,t]]};
L={{a[1,t],b[1,t], b[3,t]}, {b[1,t], a[2,t], b[2,t]}, {b[3,t], b[2,t], a[1,t]}}/.eigenvalueRule;
Here we use RuleDelayed (:> or :->) command that represents a rule that transforms lhs to rhs, evaluating rhs only after the rule is used. Evaluate the StepMonitor expression separately each time it is to be used:
FindRoot[Cos[x]==x, {x,1}, StepMonitor:>Print[x]]
   ■

 

  1. Bennett, M., Schatz, M.F., Rockwood, H., and Wiesenfeld, K., Huygens’ clocks, Proceedings: Mathematical, Physical and Engineering Sciences Vol. 458, No. 2019 (Mar. 8, 2002), pp. 563-579 (17 pages); doi: 10.1098/rspa.2001.0888
  2. Huygens, C., The pendulum clock, Part 4: On the center of oscillation, translated by Michael S. Mahoney, 1995.
  3. Ramirez, J.P., Olvera, L.A., Nijmeijer, H., Alvarez, J., The sympathy of two pendulum clocks: beyond Huygens’ observations, Scientific Reports, 2016, March, Article number: 23580. https://doi.org/10.1038/srep23580
  4. Willms, A.R., Kitanov, P.M., Langford, W.F., Huygens’ clocks revisited, The Royal Society, Open Science, 2017.

 

Return to Mathematica page
Return to the main page (APMA0330)
Return to the Part 1 (Plotting)
Return to the Part 2 (First Order ODEs)
Return to the Part 3 (Numerical Methods)
Return to the Part 4 (Second and Higher Order ODEs)
Return to the Part 5 (Series and Recurrences)
Return to the Part 6 (Laplace Transform)
Return to the Part 7 (Boundary Value Problems)