101 lines
5.9 KiB
Plaintext
101 lines
5.9 KiB
Plaintext
Metadata-Version: 2.1
|
|
Name: pysd
|
|
Version: 3.14.2
|
|
Summary: System Dynamics Modeling in Python
|
|
Home-page: https://github.com/SDXorg/pysd
|
|
Author: PySD contributors
|
|
License: LICENSE
|
|
Keywords: System Dynamics,Vensim,XMILE
|
|
Platform: UNKNOWN
|
|
Classifier: Development Status :: 4 - Beta
|
|
Classifier: License :: OSI Approved :: MIT License
|
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
Classifier: Intended Audience :: Science/Research
|
|
Classifier: Programming Language :: Python :: 3.9
|
|
Classifier: Programming Language :: Python :: 3.10
|
|
Classifier: Programming Language :: Python :: 3.11
|
|
Classifier: Programming Language :: Python :: 3.12
|
|
Requires-Python: >=3.9
|
|
Description-Content-Type: text/markdown
|
|
License-File: LICENSE
|
|
Requires-Dist: numpy>=1.23
|
|
Requires-Dist: pandas[excel]
|
|
Requires-Dist: parsimonious
|
|
Requires-Dist: xarray>=2023.9
|
|
Requires-Dist: lxml
|
|
Requires-Dist: regex
|
|
Requires-Dist: chardet
|
|
Requires-Dist: black
|
|
Requires-Dist: openpyxl>=3.1.2
|
|
Requires-Dist: scipy
|
|
Requires-Dist: progressbar2
|
|
Requires-Dist: portion
|
|
|
|
# PySD
|
|
|
|
[](https://github.com/SDXorg/pysd/pulse)
|
|
[](https://coveralls.io/github/SDXorg/pysd?branch=master)
|
|
[](https://anaconda.org/conda-forge/pysd)
|
|
[](https://badge.fury.io/py/pysd)
|
|
[](https://pypi.python.org/pypi/pysd/)
|
|
[](https://pypi.python.org/pypi/pysd/)
|
|
[](https://doi.org/10.21105/joss.04329)
|
|
[](https://pysd.readthedocs.io/en/latest/development/development_index.html)
|
|
[](https://pysd.readthedocs.io/en/latest/?badge=latest)
|
|
|
|

|
|
|
|
This project is a library for running [System Dynamics](http://en.wikipedia.org/wiki/System_dynamics) (SD) models in Python, with the purpose of improving integration of *Big Data* and *Machine Learning* into the SD workflow.
|
|
|
|
**The current version needs to run at least Python 3.9.**
|
|
|
|
## Resources
|
|
|
|
See the [project documentation](http://pysd.readthedocs.org/) for information about:
|
|
|
|
- [Installation](http://pysd.readthedocs.org/en/latest/installation.html)
|
|
- [Getting Started](http://pysd.readthedocs.org/en/latest/getting_started.html)
|
|
- [Release Notes](http://pysd.readthedocs.org/en/latest/whats_new.html)
|
|
- [Citing PySD](https://pysd.readthedocs.io/en/latest/#citing)
|
|
|
|
For standard methods for data analysis with SD models, see the [PySD Cookbook](https://github.com/SDXorg/PySD-Cookbook), containing (for example):
|
|
|
|
- [Model Fitting](http://nbviewer.ipython.org/github/SDXorg/PySD-Cookbook/blob/master/source/analyses/fitting/Fitting_with_Optimization.ipynb)
|
|
- [Surrogating model components with machine learning regressions](http://nbviewer.ipython.org/github/SDXorg/PySD-Cookbook/blob/master/source/analyses/surrogating_functions/Surrogating_with_regression.ipynb)
|
|
- [Multi-Scale geographic comparison of model predictions](http://nbviewer.ipython.org/github/SDXorg/PySD-Cookbook/blob/master/source/analyses/geo/Exploring_models_across_geographic_scales.ipynb)
|
|
|
|
## Why create a new SD simulation engine?
|
|
|
|
There are a number of great SD programs out there ([Vensim](http://vensim.com/), [iThink](http://www.iseesystems.com/Softwares/Business/ithinkSoftware.aspx), [AnyLogic](http://www.anylogic.com/system-dynamics), [Insight Maker](http://insightmaker.com/), and [others](https://en.wikipedia.org/wiki/Comparison_of_system_dynamics_software)). In order not to waste our effort, or fall victim to the [Not-Invented-Here](http://en.wikipedia.org/wiki/Not_invented_here) fallacy, we should have a very good reason for starting a new project.
|
|
|
|
That reason is this: There is a whole world of computational tools being developed in the larger data science community. **System dynamicists should directly use the tools that other people are building, instead of replicating their functionality in SD specific software.** The best way to do this is to bring specific SD functionality to the domain where those other tools are being developed.
|
|
|
|
This approach allows SD modelers to take advantage of the most recent developments in data science, and focus our efforts on improving the part of the stack that is unique to System Dynamics modeling.
|
|
|
|
## Cloning this repository
|
|
|
|
If you'd like to work with this repository directly, you'll need to use a recursive git checkout in order to properly load the test suite (sorry..)
|
|
|
|
The command should be something like:
|
|
|
|
```shell
|
|
git clone --recursive https://github.com/SDXorg/pysd.git
|
|
```
|
|
|
|
## Extensions
|
|
|
|
You can use PySD in [R](https://www.r-project.org/) via the [PySD2R](https://github.com/JimDuggan/pysd2r) package, also available on [CRAN](https://CRAN.R-project.org/package=pysd2r).
|
|
|
|
## Contributing
|
|
|
|
PySD is currently a community-maintained project, any contribution is welcome.
|
|
|
|
Many people have contributed to developing this project - by [submitting code](https://github.com/SDXorg/pysd/graphs/contributors), bug reports, and advice. Main historic changes in PySD are described in the [About PySD section](https://pysd.readthedocs.io/en/latest/about.html). The [Developer Documentation](https://pysd.readthedocs.io/en/latest/development/development_index.html) could help new developers.
|
|
|
|
The code for this package is available at: https://github.com/SDXorg/pysd
|
|
|
|
Join our slack channel in [sd-tools-and-methodology-community](https://slofile.com/slack/sdtoolsandmet-slj3251).
|
|
|
|
|