During my Master’s in Robotics at Northwestern University, I completed a Machine Dynamics course focused on Lagrangian dynamics and physics-based simulation. This page showcases a collection of simulation projects developed throughout the quarter.
This course was one of the most engaging and conceptually important in my academic experience, and this page highlights representative work demonstrating key principles in dynamic system modeling.
School: Northwestern University
Location: - Evanston, IL
Duration: September 2025 - December 2025
Project Gallery
Fixed-Leg Splits Simulation
3-Arm Pendulum Simulation
Box Fixed-Pendulum Simulation
Single-Pend Impact Simulation
Triple-Pend Impact Simulation
Frame Convention Strategy
To ensure consistency across simulations, I developed a standardized frame convention:
- The positive x-axis is aligned along the length of each limb or body segment
- In pendulum systems, the x-axis follows the direction of the pendulum body
Benefits:
- Simplifies mathematical derivations
- Improves debugging clarity
- Enables code reuse across simulations
1. Lagrangian Dynamics
The Lagrangian is defined as:
\[L = KE - PE\]Using symbolic differentiation, the following were derived:
- Partial derivatives with respect to generalized coordinates $q$ and velocities $\dot{q}$
- Equations of motion:
These equations were used to:
- Incorporate external forces and torques
- Solve for system accelerations $\ddot{q}$ symbolically
Example:
Applying an upward force equal to gravity prevents downward acceleration.
2. Constraints and Impact Handling
Constraints were introduced to enforce physically valid interactions.
Example:
- Preventing a leg from passing through the ground in a leg-split simulation
A representative constraint equation:
\[\phi_1 = y_{\text{world}} - y_{\text{leg1}}\]-
Constraint Evaluation
Violations were detected using animpact_conditionfunction when thresholds were exceeded -
Impact Resolution
Post-impact velocities were computed using animpact_updatefunction- Solves impact equations using Lagrange multipliers $\lambda$
- Enforces energy conservation via Hamiltonian formulation
Skills Improved:
- Lagrangian & Hamiltonian dynamics (equations of motion, energy methods)
- Physics-based simulation (dynamic systems with constraints and impacts)
- Reference frame design (consistent coordinate conventions)
- Constraint and impact modeling
- Mathematical modeling (symbolic derivation of system dynamics)
- Python for simulation and modeling
Key Takeaway
This work reinforced the importance of consistent reference frame definitions in simplifying derivations and debugging dynamic systems. I gained hands-on experience applying Lagrangian and Hamiltonian methods, energy conservation, and constraint handling to model realistic physical interactions.
Building both symbolic and numerical simulations deepened my understanding of system behavior under varying forces, while working with constraints and impacts emphasized the need for precise modeling. Overall, this experience strengthened both my theoretical foundation in dynamics and my ability to develop robust, repeatable simulations.