pydy / pydy-tutorial-human-standing

PyDy tutorial materials for MASB 2014, PYCON 2014, and SciPy 2014/2015.
http://pydy.org
160 stars 70 forks source link

Change argument order of kanes_equation() #117

Closed HuaweiWang closed 5 years ago

HuaweiWang commented 5 years ago

The kanes_equation() argument order has been deprecated since SymPy 1.1. Use switched argument order to update your code, For example: kanes_equations(loads, bodies) > kanes_equations(bodies, loads).

A warning was generated when I was using the old argument order.

moorepants commented 5 years ago

Thanks!