Metadata-Version: 2.4
Name: beamcalc
Version: 0.8.2
Summary: Euler-Bernoulli beam analysis with load superposition (Beam class).
Author: Kwame Mensah
License: ISC
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# beamcalc

> Euler-Bernoulli beam analysis with load superposition (Beam class).

**Field:** structural engineering &nbsp; **License:** ISC

```py
import beamcalc
b=beamcalc.Beam(4.0,2e11,8e-6); b.add_point_load(5000,2.0); print(round(b.max_deflection()*1000,4),'mm')
```
