You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I was working on sympy/sympy#17783 I observed that the following code doesn't work on setting, USE_SYMENGINE=true. However, it works perfectly fine without symengine as backend.
fromsympyimportsymbols, S, sreprfromsympy.physics.mechanicsimportPoint, ReferenceFrame, Dyadic, RigidBodyfromsympy.physics.mechanicsimportdynamicsymbols, outer, inertiafromsympy.physics.mechanicsimportinertia_of_point_massfromsympy.core.backendimportexpandfromsympy.utilities.pytestimportraisesN=ReferenceFrame('N')
m, Ix, Iy, Iz, a, b=symbols('m, I_x, I_y, I_z, a, b')
Io=inertia(N, Ix, Iy, Iz)
o=Point('o')
p=o.locatenew('p', a*N.x+b*N.y)
R=RigidBody('R', o, N, m, (Io, o))
Ip=R.parallel_axis(p)
Ip_expected=inertia(N, Ix+m*b**2, Iy+m*a**2,
Iz+m* (a**2+b**2), ixy=-m*a*b)
print(Ip)
print(Ip_expected)
@czgdp1807 thanks a lot for reporting it! It looks like the Python wrappers have to implement the Add.as_ordered_terms() function to be compatible with SymPy.
While I was working on sympy/sympy#17783 I observed that the following code doesn't work on setting,
USE_SYMENGINE=true
. However, it works perfectly fine without symengine as backend.With
USE_SYMENGINE=true
,With
USE_SYMENGINE=false
,The text was updated successfully, but these errors were encountered: