-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathREADME
More file actions
59 lines (38 loc) · 1.57 KB
/
README
File metadata and controls
59 lines (38 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
PyDy
=====
A Python library for studying dynamics.
0. Download
-----------
$ git clone git://github.com/hazelnusse/pydy.git
1. Documentation and usage
--------------------------
This is a work in progress. Much more will be added here as the project
matures. Eventually, the project will have a Google code project page, either
within the Sympy page or a stand alone, separate project page.
2. Project goals
----------------
To allow for easy manipulation of three-dimensional vectors for the purpose of
deriving equations of motion. In particular, PyDy is designed to implement
Kane's method for forming the equations of motion. Numerical integration of
the equations of motion are provided by scipy.integrate.odeint. PyDy has builtin
functionality that allows for easy animation of reference frames, points, rigid
bodies and particles.
3. Installation
---------------
PyDy requires sympy for its symbolic manipulation. You can clone the sympy git repository by typing:
$ git clone git://git.sympy.org/
Then, install sympy by:
$ python setup.py install
See docs.sympy.org for more installation options. You can also just download
the binary files from sympy.org, these should work just fine.
Next, clone the PyDy repository by:
$ git clone git://github.com/hazelnusse/pydy.git
System wide install:
$ python setup.py install
To install in your own special folder, use the --home option:
$ python setup.py install --home=~/usr
4. Running Tests
-----------------
Currently, we use nose to test all of PyDy's functionality:
$ nosetests
This runs all the files in the ./tests folder