-
-
Save MatlabMaster/e9de84f348a7f67f9c3f951df98e2f1f to your computer and use it in GitHub Desktop.
ClassicalMechanics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#속도 성분들 | |
from sympy.physics.vector import * | |
from sympy.physics.vector import dynamicsymbols | |
E = ReferenceFrame('E') | |
E.x | |
E.y | |
E.z | |
from sympy import Symbol, symbols | |
diff(r)*E.x + r*diff(theta)*E.y | |
#가속도 성분들 | |
(diff(diff(r))-r*theta**2)*E.x + (r*diff(diff(theta))+2*diff(r)*diff(theta))*E.y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment