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
|
=================================
Short Manual for SimPy
=================================
SimPy is a free, open-source discrete-event simulation system written
in Python. It provides a number of tools for programmers writing
simulation programs. This document is a description of basic
techniques of SimPy. It describes a subset of SimPy's capabilities -
sufficient, we think, to develop standard simulations. You may also
find The Bank tutorial included in SimPy's distribution helpful in
the early stages. The full SimPy Manual, included in the distribution, is
more detailed.
You need to write Python code to develop a SimPy model. In
particular, you will have to define and use classes and their
objects. Python is free and open-source and is available on most
platforms. You can find out more about it and download it from the
`Python web-site`_ where there is full documentation and
tutorials. SimPy requires Python version 2.3 or later.
.. _`Python web-site` : http://www.Python.org
Contents:
.. toctree::
:maxdepth: 2
SManual
Cheatsheets
Acknowledgments
Indices and tables
==================
* :ref:`genindex`
* :ref:`search`
|