Important
Version |opspy_version| is released for Linux, Windows, and Mac (ARM64)!
Python |python_version| is required.
OpenSeesPy is on :doc:`src/pypi`.
OpenSeesPy is free for research, education, and internal use. Commercial redistribution of OpenSeesPy, such as, but not limited to, an application or cloud-based service that uses import openseespy, requires a license similar to that required for commercial redistribution of OpenSees.exe. Contact UC Berkeley for commercial licensing details. Contact Dr. Minjie Zhu (zhum@oregonstate.edu) for other questions.
Note
OpenSees Cloud is a SaaS implementation of OpenSees using cloud computing. Analyses run in the cloud on AWS while the front end integrates input, output, documentation, and a model viewer.
OpenSees Amazon Machine Image is a virtual machine that runs OpenSeesPy and OpenSeesMP with no additional compilation or installation required at low cost.
Note
Questions including modeling issues and the use of OpenSeesPy, please post on OpenSeesPy Forum.
You are very welcome to contribute to OpenSeesPy with new command documents and examples by sending pull requests through github pulls.
For errors in this document, submit on github issues.
`OpenSeesPy`_ is a `Python 3`_ interpreter of `OpenSees`_. A minimum script is shown below:
# import OpenSeesPy
import openseespy.opensees as ops
# wipe model
ops.wipe()
# create model
ops.model('basic', '-ndm', 2, '-ndf', 3)
# print model
ops.printModel()
Minjie Zhu
.. toctree:: :maxdepth: 1 :numbered: :caption: Contents src/installation src/compile src/changelog src/modelcmds src/analysiscmds src/outputcmds src/utilitycmds src/fsicmds src/senscmds src/reliabilitycmds src/parallelcmds src/preprocessing src/postprocessing src/examples