Metadata-Version: 2.1
Name: beam-analysis
Version: 2.1.2
Summary: Perform engineering analysis on a beam
Home-page: https://github.com/XDwightsBeetsX/beam-analysis
Author: John Gutierrez
License: MIT
Keywords: beam,analysis,engineering
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# beam-analysis

[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/)
[![PyPI version](https://badge.fury.io/py/beam-analysis.svg)](https://badge.fury.io/py/beam-analysis)
[![Build Status](https://travis-ci.com/XDwightsBeetsX/beam_analysis.svg?token=ojR96vWaxNB8o4NF9oGN&branch=master)](https://travis-ci.com/XDwightsBeetsX/beam_analysis)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/XDwightsBeetsX/beam_analysis.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/XDwightsBeetsX/beam_analysis/context:python)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/XDwightsBeetsX/beam_analysis.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/XDwightsBeetsX/beam_analysis/alerts/)

Perform engineering analysis on beams with diagrams for shear, moments, angle, and deflection  

## Usage

```shell
pip install beam_analysis
```

```shell
git clone https://github.com/XDwightsBeetsX/beam-analysis
```

***Check out some demos [here](beam_analysis/docs/demos.md)!***

***If you run into usage problems, double check the [requirements.txt](requirements.txt)***

## Mechanical Requirements

- Currently reactions are not solved for... :caution:
  - *All loads and reactions must be inputted*
- Boundary conditions currently required:
  - one angle *AND* one deflection parameter
  - *OR* two deflection parameters
- Beam weight is not accounted for by default
  - represent it with a distributed load

## Continuous development using `twine`

This project is maintained on PYPI via releases through twine...

```shell
python setup.py sdist bdist_wheel
twine upload -r testpypi dist/* -u $username -p $password
twine upload -r pypi dist/* -u $username -p $password
```


