Metadata-Version: 2.1
Name: VectorAnalysis
Version: 0.0.3
Summary: how to culculate gradient, divergence and curl
Author: tokuda
Author-email: tokuda@sciencepark.co.jp
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: LICENSE.txt:Zone.Identifier

# VectorAnalysis
This is a tutorial on how to use a PyPI application.
You can culculate gradient, divergence and curl by using this application.

# How to install VectorAnalysis
$ pip install VectorAnalysis

# How to run VectorAnalysis
You need also "sympy" to run this application.<br>
$ pip install sympy

example:<br>
In [1]: from sympy.vector import CoordSys3D<br>
In [2]: C = CoordSys3D('C')<br>
In [3]: g = C.x * C.y * C.z<br>
In [4]: gradient(g)<br>
Out[4]: C.y*C.z*C.i + C.x*C.z*C.j + C.x*C.y*C.k<br>
