Hello, This is where i would kind of summarize my learnings of what i have been doing in the projects and what i have learned from them.
- Projectile Motion -> This was my first ever physics based python project, i learned how to use matplotlib mainly and how to animate the projectile using matplot lib functions
2)Double Pendulam ->first complex physics simulation. Derived equations of motion by hand using Lagrangian mechanics, then implemented in Python with SymPy for symbolic derivation. Key learning: SymPy cannot directly solve 2nd-order ODEs so the system was reduced to first-order using state vector substitution before numerical integration.
3)N-linked Pendulam -> generalized N-body pendulum system extending the double pendulum. Automated Lagrangian equation derivation for arbitrary N using SymPy, numerical integration with SciPy, and animated visualization with Matplotlib.