What do you see when two oscillations collide at right angles? Tune the frequency ratio, phase and damping to explore the mathematical beauty found on every oscilloscope.
The core of the simulator is two independent, damped harmonic oscillators. The horizontal (X) and vertical (Y) positions of the tracing point are given by these equations, which combine sine waves with decay terms.
$$x(t) = A_x e^{-d_x t}\sin(2\pi f_x t + \varphi)$$ $$y(t) = A_y e^{-d_y t}\sin(2\pi f_y t)$$Variables:
$A_x, A_y$: Initial amplitudes (size of the swing).
$f_x, f_y$: Frequencies (cycles per second).
$d_x, d_y$: Damping coefficients (how quickly the motion fades).
$\varphi$: Phase difference (a time shift between the X and Y oscillations).
$t$: Time.
The resulting figure is a parametric plot of $y(t)$ against $x(t)$. The shape is closed and repeats only if the frequency ratio $f_x : f_y$ is a rational number (like 3:2) and damping is zero. The phase difference $\varphi$ controls the "rotation" or orientation of the pattern.
$$ \frac{f_x}{f_y}= \frac{m}{n}\quad \text{(for a stable, closed curve)} $$Here, $m$ and $n$ are integers. A ratio of 1:1 ($m=n$) produces ellipses. A ratio of 2:3 produces more complex, looping shapes. When damping is present, the figure is not closed but forms an inward spiral.
Analog Oscilloscope Calibration: Before digital scopes, engineers used Lissajous figures to measure unknown frequencies. By feeding a known frequency into one channel and an unknown signal into another, the resulting pattern's shape revealed the frequency ratio. A stable circle meant the frequencies matched perfectly.
Mechanical Vibration Analysis: In CAE, simulating two perpendicular vibrations is crucial. For instance, analyzing a turbine blade's vibration might show a Lissajous pattern. The shape indicates if vibrations in different planes are in sync, which can predict fatigue and failure points.
Laser Light Shows: The mesmerizing patterns in laser displays are often created using precisely controlled mirrors oscillating at right angles. By tuning the mirror frequencies and phases (much like the sliders in this simulator), operators can generate everything from simple spirals to intricate, butterfly-like figures.
Electrical Signal Phase Comparison: In AC circuit analysis, comparing the phase difference between voltage and current is vital. Displaying them on an X-Y plot creates a Lissajous ellipse. The ellipse's tilt and shape directly indicate the phase shift, helping diagnose power factor issues.
First, do not assume that frequency ratios are limited to simple integer ratios. While ratios like 1:2 or 3:4 indeed produce beautiful, closed figures, an irrational ratio like 1:√2 results in a figure that never closes and gradually fills the entire drawing area over time. This is known as "quasi-periodic motion" and is important in analyzing non-harmonic vibrations in the real world. Next, be mindful of the interpretation of "phase difference". Phase difference φ is often described as the "lead" of the x-direction oscillation relative to the y-direction. However, in this tool's mathematical model, it takes the form of "φ being added to the x-direction oscillation." Confusion can arise when reading literature without being aware of this definitional difference. In practice, you need to verify which definition is being used.
Regarding parameter setting tips, pay attention to the balance between "Number of Points" and "Simulation Time". Even with the maximum number of points, the figure will be incomplete if the simulation time is too short. Conversely, simulating for a long time in damped mode will cause the figure to converge to a point at the center, becoming invisible. For example, with slightly more complex ratios like 5:4, the time required for the figure to close (the least common multiple of the two oscillations) is longer, so you need to set a sufficiently long simulation time. Finally, note that the amplitudes Ax and Ay affect not only the "apparent size" but also the "shape" of the figure. Especially when the damping coefficients dx and dy are asymmetric, the difference in amplitudes dramatically influences how the spiral is drawn in. Try adjusting them in combination.
The concept of "synthesis of orthogonal oscillations" behind this tool is fundamental to various engineering fields beyond CAE. First, in Mechanical Engineering / Vibration Engineering, it relates to the modal analysis of complex structures like turbine blades. Each mode shape obtained from Finite Element Method (FEM) analysis represents an orthogonal vibration form. The Lissajous figure concept helps visualize the composite vibration trajectory when two modes are excited simultaneously.
In Control Engineering, it connects to the visualization of limit cycles and attractors. In nonlinear systems, sustained oscillations without damping (limit cycles) can occur, depicted as closed orbits in the phase plane. This is essentially a Lissajous figure. Furthermore, in Robotics, for instance, the motion of a SCARA robot arm tip drawing a circular path is achieved by the X-axis and Y-axis actuators moving with the same period but a specific phase difference. Its trajectory planning is exactly the principle of this tool.
Also, in Electrical and Electronic Engineering, beyond the classic oscilloscope measurement found in textbooks, it forms the basis for understanding signal constellation diagrams in digital modulation schemes (e.g., QPSK, QAM). These schemes carry information on two orthogonal carriers, the I (In-phase) and Q (Quadrature) signals. The distribution of signal points, determined by combinations of phase and amplitude, is plotted in a kind of Lissajous-figure-like space.
As a next step, we recommend exploring "parametric excitation" and "coupled oscillations". Lissajous figures assume "two independent oscillators," but in reality, oscillating systems often exchange energy (coupling), or a system's parameters (e.g., a pendulum's string length) change over time (parametric), leading to richer and sometimes chaotic behaviors. These are gateways to nonlinear dynamics.
If you wish to deepen the mathematical background, exploring the relationship between "Fourier series" and "Lissajous figures""phase space (state space)". In this space, with axes representing an oscillator's position and velocity, time evolution is drawn as a trajectory: damped oscillation appears as a spiral toward the origin, and sustained oscillation as a closed curve. This is a more generalized perspective of Lissajous figures.
For practical learning, we strongly encourage you to program this simulator's equations yourself (e.g., using Python's Matplotlib). Creating animations by continuously changing parameters or adding a third oscillation z to draw 3D Lissajous figures (Lissajous surfaces) will dramatically deepen your understanding. The best way to learn is not just to "use" a tool, but to "reconstruct its inner workings."