Metadata-Version: 2.1
Name: concreteproperties
Version: 0.6.2
Summary: A python package to determine cross-section propreties of reinforced concrete sections.
Home-page: https://github.com/robbievanleeuwen/concrete-properties
License: MIT
Keywords: concrete,reinforced-concrete,prestressed-concrete,post-tensioned-concrete,cross-section,structural-engineering,finite-element-analysis,computational-mechanics
Author: Robbie van Leeuwen
Author-email: robbie.vanleeuwen@gmail.com
Maintainer: Robbie van Leeuwen
Maintainer-email: robbie.vanleeuwen@gmail.com
Requires-Python: >=3.9.0,<3.12
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: matplotlib (>=3.8.2,<4.0.0)
Requires-Dist: more-itertools (>=10.0.0,<11.0.0)
Requires-Dist: numpy (>=1.24.0,<2.0.0)
Requires-Dist: rich (>=13.7.0,<14.0.0)
Requires-Dist: scipy (>=1.10.0,<2.0.0)
Requires-Dist: sectionproperties (>=3.1.2,<4.0.0)
Requires-Dist: shapely (>=2.0.2,<3.0.0)
Requires-Dist: triangle (>=20230923,<20230924)
Project-URL: Bug Tracker, https://github.com/robbievanleeuwen/concrete-properties/issues
Project-URL: Changelog, https://github.com/robbievanleeuwen/concrete-properties/releases
Project-URL: Documentation, https://concrete-properties.readthedocs.io
Project-URL: Repository, https://github.com/robbievanleeuwen/concrete-properties
Description-Content-Type: text/markdown

<picture>
  <source media="(prefers-color-scheme: dark)" srcset="docs/_static/cp_logo_dark.png">
  <source media="(prefers-color-scheme: light)" srcset="docs/_static/cp_logo.png">
  <img alt="concreteproperties logo" src="docs/_static/cp_logo.png">
</picture>

[![PyPI](https://img.shields.io/pypi/v/concreteproperties.svg)][pypi_]
[![Status](https://img.shields.io/pypi/status/concreteproperties.svg)][status]
[![Python Version](https://img.shields.io/pypi/pyversions/concreteproperties)][python version]
[![License](https://img.shields.io/pypi/l/concreteproperties)][license]
[![Read the documentation at https://concrete-properties.readthedocs.io/](https://img.shields.io/readthedocs/concrete-properties/stable.svg?label=Read%20the%20Docs)][read the docs]
[![Tests](https://github.com/robbievanleeuwen/concrete-properties/workflows/Tests/badge.svg)][tests]
[![Codecov](https://codecov.io/gh/robbievanleeuwen/concrete-properties/branch/master/graph/badge.svg)][codecov]
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]

[pypi_]: https://pypi.org/project/concreteproperties/
[status]: https://pypi.org/project/concreteproperties/
[python version]: https://pypi.org/project/concreteproperties
[read the docs]: https://concrete-properties.readthedocs.io/
[tests]: https://github.com/robbievanleeuwen/concrete-properties/actions?workflow=Tests
[codecov]: https://app.codecov.io/gh/robbievanleeuwen/concrete-properties
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/black

`concreteproperties` is a python package that can be used to calculate the section
properties of arbitrary reinforced concrete sections. `concreteproperties` can calculate
gross, cracked and ultimate properties. It can perform moment curvature analyses
and generate moment interaction and biaxial bending diagrams. On top of this,
`concreteproperties` can also generate pretty stress plots!

Here's an example of some of the non-linear output `concreteproperties` can generate:

<p align="center">
  <img src="docs/_static/anim/anim_compress.gif" width="500"/>
</p>

## Installation

You can install `concreteproperties` via [pip] from [PyPI]:

```shell
pip install concreteproperties
```

## Documentation

`concreteproperties` is fully documented including a user walkthrough, examples,
background theory and an API guide. The documentation can found at
[https://concrete-properties.readthedocs.io/](https://concrete-properties.readthedocs.io/).

## Features

See the complete list of `concreteproperties` features
[here](https://concrete-properties.readthedocs.io/en/stable/user_guide.html).

## Contributing

Contributions are very welcome. To learn more, see the [Contributor Guide].

## License

Distributed under the terms of the [MIT license][license], `concreteproperties` is free
and open source software.

## Support

Found a bug 🐛, or have a feature request ✨, raise an issue on the
GitHub [issue tracker](https://github.com/robbievanleeuwen/concrete-properties/issues)
Alternatively you can get support on the
[discussions](https://github.com/robbievanleeuwen/concrete-properties/discussions) page.

## Disclaimer

`concreteproperties` is an open source engineering tool that continues to benefit from
the collaboration of many contributors. Although efforts have been made to ensure the
that relevant engineering theories have been correctly implemented, it remains the
user's responsibility to confirm and accept the output. Refer to the
[license](LICENSE.md) for clarification of the conditions of use.

## Credits

This project was generated from [@cjolowicz]'s [Hypermodern Python Cookiecutter]
template.

[@cjolowicz]: https://github.com/cjolowicz
[pypi]: https://pypi.org/
[hypermodern python cookiecutter]: https://github.com/cjolowicz/cookiecutter-hypermodern-python
[pip]: https://pip.pypa.io/
[license]: https://github.com/robbievanleeuwen/concrete-properties/blob/master/LICENSE
[contributor guide]: https://github.com/robbievanleeuwen/concrete-properties/blob/master/CONTRIBUTING.md

