Python helpers for writing OpenSees scripts.
Project description
Python wrappers and helpers for (Tcl) OpenSees analyses.
Installation
Conda:
conda install -c otaithleigh opswrapper
Usage
The objects provided in this package largely line up with their OpenSees Tcl counterparts. The general workflow is to create a list of objects, and then call str on them while printing to a file. Each entry in the list will become a line in the Tcl script, allowing for mixing of raw Tcl code and opswrapper objects.
Simple Example
import opswrapper as ops
model = []
model.append(ops.Model(ndm=2, ndf=3))
model.append(ops.Node(1, 0, 0))
model.append(ops.Node(2, 0, 10))
model.append(ops.material.Elastic(1, 29000))
model.append(ops.element.Truss(1, 1, 2, mat=1, A=10))
print(*model, sep='\n')
Output:
model basic -ndm 2 -ndf 3 node 1 0 0 node 2 0 10 uniaxialMaterial Elastic 1 29000 element truss 1 1 2 10 1
Formatting
Objects can be formatted via multiple ways. The simplest is to convert them to str:
>>> str(Elastic(1, 29000.))
'uniaxialMaterial 1 29000'
A float format specifier may be specified when used with the built-in format commands:
>>> format(Elastic(1, 29000.), 'e')
'uniaxialMaterial 1 2.900000e+4'
>>> f'{Elastic(1, 29000.):.2e}'
'uniaxialMaterial 1 2.90e+04'
Specifiers for other types may be passed using the tcl_code method:
>>> Elastic(1, 29000.).tcl_code({int: '4d'})
'uniaxialMaterial Elastic 1 29000'
Defaults can be set on a global basis using base.set_global_format_spec, on a per-class basis using cls.set_class_format_spec, or on a per-object basis using self.set_format_spec:
>>> set_global_format_spec({float: '#.3g'})
>>> section.Elastic2D.set_class_format_spec({float: '#.3g'})
>>> s = section.Elastic2D(...)
>>> s.set_format_spec({float: '#.3g'})
Each of these methods return the previously-set modifiers if you wish to restore them later.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file opswrapper-5.2.0.tar.gz.
File metadata
- Download URL: opswrapper-5.2.0.tar.gz
- Upload date:
- Size: 32.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f429fb8a5cedd4883b7ddb1d0f482fc6c005f3bc5817f26a5b4e1be9465dae96
|
|
| MD5 |
810a4c9f23c69da4fa9e943982ef62a7
|
|
| BLAKE2b-256 |
041487aa52f63999f0f5f8b609bbe74158b120034eacbb48337e5988c9bb7942
|
File details
Details for the file opswrapper-5.2.0-py3-none-any.whl.
File metadata
- Download URL: opswrapper-5.2.0-py3-none-any.whl
- Upload date:
- Size: 34.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71ac2ee0f3d56b9df052ad7565a8ba204f9e270a2304afb22e4fe5ed9612945f
|
|
| MD5 |
d687ec359ddcc788621fe101b5cad1be
|
|
| BLAKE2b-256 |
7875f16ecd64e6b7e47e5bdcdfca00ecf10e02b6056fcca4984a61b38049575a
|