Differences between revisions 3 and 5 (spanning 2 versions)
Revision 3 as of 2006-06-19 17:14:03
Size: 9310
Editor: bluebox
Comment:
Revision 5 as of 2006-06-19 17:25:37
Size: 9609
Editor: bluebox
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
PyDSTool is an integrated simulation, modeling and analysis package for dynamical systems, written in Python. It is being developed at Cornell University. For full documentation see our [[http://pydstool.sourceforge.net wiki]] site.
PyDSTool is an integrated simulation, modeling and analysis package for dynamical systems, written in Python. It is being developed at Cornell University by Robert Clewley, Drew La``Mar, and Erik Sherwood. For full documentation see our [[http://pydstool.sourceforge.net wiki]] site. To download, please go to the [http://www.sourceforge.net/projects/pydstool SourceForge] files page, where you can read the release notes. The source code is available under the terms of the BSD license.
Line 10: Line 11:
= Download latest version =

To download, please go to the [http://www.sourceforge.net/projects/pydstool SourceForge] files page, where you can read the release notes. The source code is available under the terms of the BSD license.
Line 15: Line 13:

Our package incorporates:
Line 27: Line 23:
 * Memory management utilities, data import & export (inc. basic SBML conversion and La``Te``X markup via the Sloppy``Cell package)  * Memory management utilities, data import & export (inc. basic SBML conversion and La``Te``X markup via the SloppyCell package)
Line 30: Line 26:
 * Seamless use with tools in SciPy, Numpy, etc. through dynamic typing  * Seamless use with tools in [http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/SciPy SciPy], etc. through dynamic typing
Line 49: Line 45:
Line 51: Line 48:
In our design we have emphasized modularized data structures and interface design that facilitates data-driven approaches to the modeling of physical processes, and we have built upon standard numerical, scientific and graphics libraries for Python (for instance, SciPy and Mat``Plot``Lib). These, in turn, make use of well-established and efficient legacy codes for numerical integration of ODEs, and for dealing with linear algebra, optimization, and root solving (for instance, the LAPACK and MINPACK Fortran libraries). These legacy codes are typically interfaced using SWIG. The low-level languages of these codes provide the computational speed that Python itself lacks, in the places for which computation is most intensive. In our design we have emphasized modularized data structures and interface design that facilitates data-driven approaches to the modeling of physical processes, and we have built upon standard numerical, scientific and graphics libraries for Python (for instance, [http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/SciPy SciPy] and [http://matplotlib.sourceforge.net Matplotlib]). These, in turn, make use of well-established and efficient legacy codes for numerical integration of ODEs, and for dealing with linear algebra, optimization, and root solving (for instance, the [http://netlib2.cs.utk.edu/lapack/ LAPACK] and [http://www.netlib.org/minpack/ MINPACK] Fortran libraries). These legacy codes are typically interfaced using [http://www.swig.org SWIG]. The low-level languages of these codes provide the computational speed that Python itself lacks, in the places for which computation is most intensive.
Line 57: Line 54:
Utilities have been added that allow the movement of data and model specifications both in and out of PyDSTool, for sharing in other software environments. As well as basic importing and exporting of numerical data as text files, this also includes more systems-level interfacing. For instance, a user can export a dynamical model’s definition to a Matlab environment in which Automatic Differentiation is available for parameter sensitivity calculations (via the package ADMC++). Also, PyDSTool can be interfaced with the systems biology modeling package SloppyCell, through which PyDSTool inherits access to an interface with the Systems Biology Markup Language (SBML) for model specification, and the LaTeX mathematical markup language. Further interfaces to packages are in active development, such as to the original DsTool and to other simulation tools such as [http://www.math.pitt.edu/~bard/xpp/xpp.html XPP] or [http://neuron.duke.edu/ NEURON]. Utilities have been added that allow the movement of data and model specifications both in and out of PyDSTool, for sharing in other software environments. As well as basic importing and exporting of numerical data as text files, this also includes more systems-level interfacing. For instance, a user can export a dynamical model’s definition to a Matlab environment in which Automatic Differentiation is available for parameter sensitivity calculations (via the package ADMC++). Also, PyDSTool can be interfaced with the systems biology modeling package SloppyCell, through which PyDSTool inherits access to an interface with the Systems Biology Markup Language (SBML) for model specification, and the La``Te``X mathematical markup language. Further interfaces to packages are in active development, such as to the original [http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/DsTool DsTool] and to other simulation tools such as [http://www.math.pitt.edu/~bard/xpp/xpp.html XPP] or [http://neuron.duke.edu/ NEURON].

PyDSTool is an integrated simulation, modeling and analysis package for dynamical systems, written in Python. It is being developed at Cornell University by Robert Clewley, Drew LaMar, and Erik Sherwood. For full documentation see our http://pydstool.sourceforge.net wiki site. To download, please go to the [http://www.sourceforge.net/projects/pydstool SourceForge] files page, where you can read the release notes. The source code is available under the terms of the BSD license.

The PyDSTool software is "research code" in a Beta stage of development, and should not be treated as a complete or comprehensive dynamical systems package, with the associated expectation that its design and implementation have thoroughly stabilized and have been well tested. We have added features as and when we have had a use for them in our own research, and have omitted many important features that we would love to add if time permits us, or if our research so demands.

You might like to submit feature requests, or you may also like to contribute to the code yourself. We are also interested to hear your opinions about the possibility of adding some of our classes to SciPy (perhaps in modified form). Please contact us at the [http://sourceforge.net/forum/?group_id=140858 SourceForge] open discussion forum or via email.

Features implemented

User interface

Users of PyDSTool need to be familiar with working in interactive, command-line environments such as UNIX and Matlab, including the writing of simple command scripts. There is presently no graphical interface for PyDSTool. Our emphasis is on the interactivity of a command-line and the rapid prototyping possibilities of script-based computing.

In building a core library of Python classes, supporting many fundamental concepts in dynamical systems modeling, we provide more than just a glue with which to interface multiple tools. Our classes involve storing and maintaining a "context" that carries a lot of useful mathematical baggage. Through interaction with our Python environment at the script level, users can build complex models in a structured way, and have access to mathematically intuitive information about the models, using the intrinsic context of all the Python objects at the heart of their computations.

Our UI model is for users to interactively "query" objects for basic information (known in Python-speak as introspection), and also to be able to treat them as unitary objects of computation for use with tools and utilities such as optimizers, parameter estimators, and so forth.

We believe it is crucial for users to be able to combine the application of tools in a nested or interleaved fashion, in order to make the most flexible and dynamic manipulations of a model. Such rich combinations are practically impossible in disjointed software environments, and we believe our community is eager to be able to smoothly set-up and maintain such situations for their own modeling projects. It is a challenge to cleanly and efficiently interface different legacy algorithms with the core Python code in order to maximize the use and re-use of the context associated with the core objects.

Users are provided with an interface for the specification of both simple and complex dynamical systems models, using minimal programming syntax, and a range of options in converting these abstract specifications into instantiated numerical solvers for a specific system. Within the same interactive session, users have immediate access to analysis tools for continuation, parameter estimation, optimization, and so on. These tools are each tailored for use with the core PyDSTool structures to ensure the user has to write as little additional computer code as possible. Extensive documentation for the project has been provided online on this wiki.

A key aspect in the design of PyDSTool is the provision of adequate diagnostic information and querying utilities for data structures and computations. Users can expect helpful information regarding the status of their model development and computations beyond the guidance of the online documentation, through in-built querying commands and detailed error messages. The object-oriented nature of the software also provides inherent protection of the users’ conceptualization of data-flow and control in their PyDSTool scripts.

Design philosophy

In our design we have emphasized modularized data structures and interface design that facilitates data-driven approaches to the modeling of physical processes, and we have built upon standard numerical, scientific and graphics libraries for Python (for instance, [http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/SciPy SciPy] and [http://matplotlib.sourceforge.net Matplotlib]). These, in turn, make use of well-established and efficient legacy codes for numerical integration of ODEs, and for dealing with linear algebra, optimization, and root solving (for instance, the [http://netlib2.cs.utk.edu/lapack/ LAPACK] and [http://www.netlib.org/minpack/ MINPACK] Fortran libraries). These legacy codes are typically interfaced using [http://www.swig.org SWIG]. The low-level languages of these codes provide the computational speed that Python itself lacks, in the places for which computation is most intensive.

All of the code involved in the PyDSTool project is open source, and we have aimed to create as few dependencies on external software packages as possible. In particular, the package can be used with Microsoft Windows, Mac OS X and Linux machines.

On top of the third-party libraries we have added several new tools and capabilities. We have enhanced legacy numerical integration code for ordinary differential equations to perform various additional tasks of use in hybrid systems modeling, implemented at the C-code level for maximal efficiency. This includes supporting discrete event detection during dynamical evolution. Adding arbitrary user-specified event detection to a model permits ODEs and maps to be used in combination as "hybrid" dynamical systems. Also, the inclusion of data-based time series inputs to a dynamical system’s evolution equations is a feature that aids data-driven modeling.

Utilities have been added that allow the movement of data and model specifications both in and out of PyDSTool, for sharing in other software environments. As well as basic importing and exporting of numerical data as text files, this also includes more systems-level interfacing. For instance, a user can export a dynamical model’s definition to a Matlab environment in which Automatic Differentiation is available for parameter sensitivity calculations (via the package ADMC++). Also, PyDSTool can be interfaced with the systems biology modeling package SloppyCell, through which PyDSTool inherits access to an interface with the Systems Biology Markup Language (SBML) for model specification, and the LaTeX mathematical markup language. Further interfaces to packages are in active development, such as to the original [http://www.cam.cornell.edu/~rclewley/cgi-bin/moin.cgi/DsTool DsTool] and to other simulation tools such as [http://www.math.pitt.edu/~bard/xpp/xpp.html XPP] or [http://neuron.duke.edu/ NEURON].

PyDSTool (last edited 2010-11-30 00:06:48 by gradmac07)

Unable to edit the page? See the FrontPage for instructions.