Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of Directional Derivative Function #12416

Closed
mohit3011 opened this issue Mar 25, 2017 · 1 comment
Closed

Addition of Directional Derivative Function #12416

mohit3011 opened this issue Mar 25, 2017 · 1 comment

Comments

@mohit3011
Copy link
Contributor

Sympy, currently doesn't support the directional derivative function which is used for finding the components of a scalar field along a vector.

Directional Derivative functions are of importance these are used in vector mathematics as well as in differential geometry.

I hope that after this the issue has been solved we would be able to do the following:

>>> from sympy.vector import CoordSysCartesian, directional_derivative
>>> R = CoordSysCartesian('R')
>>> f1 = R.x*R.y*R.z
>>> v1 = 3*R.i + 4*R.j + R.k
>>> directional_derivative(s1, v1, R)
3*R.y*R.z + 4*R.x*R.z + R.x*R.y
@mohit3011
Copy link
Contributor Author

@jksuom , @asmeurer . Please have a look . Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant