Package controlsystems
[hide private]

Source Code for Package controlsystems

 1  """Python Control Systems core package 
 2   
 3  This package implements a basic toolbox for the study of the Control 
 4  Systems, using Python. 
 5   
 6  To use the examples, please initialize this package, using: 
 7   
 8      >>> from controlsystems.types import * 
 9      >>> from controlsystems.discretization import * 
10      >>> from controlsystems.pid_simulation import * 
11      >>> from controlsystems.error import * 
12   
13  If you need some help with the use, or can help with the development, 
14  please contact the author via email or visit our project website: 
15   
16  http://packages.python.org/controlsystems/ 
17   
18  All the help is welcome! :) 
19   
20  """ 
21   
22  #TODO: create unit tests 
23   
24  __all__ = ['types', 'discretization', 'pid_tuning'] 
25   
26  __author__ = 'Rafael Goncalves Martins' 
27  __email__ = 'rafael@rafaelmartins.com' 
28   
29  __description__ = 'A Python library for the study of the Control Systems' 
30  __url__ = 'http://packages.python.org/controlsystems/' 
31  __copyright__ = '(c) 2009 %s' % __author__ 
32  __license__ = 'GPLv2' 
33   
34  __version__ = '1.0rc3' 
35  __status__ = 'Beta' 
36