Metadata-Version: 2.4
Name: geolysis
Version: 0.7.2
Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
License: MIT License
Project-URL: Homepage, https://docs.geolysis.io
Project-URL: Documentation, https://docs.geolysis.io
Project-URL: Repository, https://github.com/patrickboateng/geolysis
Project-URL: Discussions, https://github.com/patrickboateng/geolysis/discussions
Project-URL: Issue Tracker, https://github.com/patrickboateng/geolysis/issues
Keywords: geotechnical-engineering,soil-classification,bearing-capacity-analysis,standard-penetration-test-analysis
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: coverage; extra == "dev"
Dynamic: license-file

<div align="center">
<img src="https://raw.githubusercontent.com/patrickboateng/geolysis/dev/docs/source/_static/branding/geolysislogo.svg" 
alt="geolysislogo" width="75%" />
</div><br>

<div align="center">

[![PyPI Latest Release](https://img.shields.io/pypi/v/geolysis?style=flat&logo=pypi)](https://pypi.org/project/geolysis/)
[![PyPI Downloads](https://static.pepy.tech/badge/geolysis)](https://pepy.tech/projects/geolysis)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/geolysis.svg?logo=python&style=flat)](https://pypi.python.org/pypi/geolysis/)
[![license](https://img.shields.io/pypi/l/geolysis?style=flat&logo=opensourceinitiative)](https://opensource.org/license/mit/)

![Coveralls Status](https://img.shields.io/coverallsCoverage/github/patrickboateng/geolysis?logo=coveralls)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/17f88084c6a84a08a20f9d8da1438107)](https://app.codacy.com/gh/patrickboateng/geolysis/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Unit-Tests](https://github.com/patrickboateng/geolysis/actions/workflows/geolysis-unit-tests.yml/badge.svg)](https://github.com/patrickboateng/geolysis/actions/workflows/unit-tests.yml)
[![Documentation Status](https://readthedocs.org/projects/geolysis/badge/?version=latest)](https://geolysis.readthedocs.io/en/latest/?badge=latest)

</div>

`geolysis` is an open-source python package (library) for geotechnical analysis
and modeling. It offers tools for soil classification, Standard Penetration
Test (SPT) analysis, and bearing capacity estimation, among others.

The `geolysis` package is among three other projects, `geolysis.gui`,
`geolysis.excel`, and `geolysis.ai`.

Here are brief descriptions of the `geolysis` projects:

1. `geolysis`

   A python package (library) which provides the core functionalities for
   `geolysis.gui` and the `geolysis.excel` applications. Current features
   provided by the `geolysis` package are shown in the table below.

   <table>
    <tr>
        <td><strong>Soil Classification</strong></td>
        <td>AASHTO Classification System</td>
    </tr>
    <tr>
        <td></td>
        <td>Unified Soil Classification System</td>
    </tr>
    <tr>
        <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
        <td>SPT Energy Correction</td>
    </tr>
    <tr>
        <td></td>
        <td>SPT Overburden Pressure Correction</td>
    </tr>
    <tr>
        <td></td>
        <td>SPT Dilatancy Correction</td>
    </tr>
    <tr>
        <td></td>
        <td>SPT N-Design Calculation</td>
    </tr>
    <tr>
        <td><strong>Bearing Capacity Estimation</strong></td>
        <td>Allowable Bearing Capacity Estimation</td>
    </tr>
    <tr>
        <td></td>
        <td>Ultimate Bearing Capacity Estimation</td>
    </tr>
   </table>

2. `geolysis.gui`

   A graphical user interface that allows users to interact with the `geolysis`
   package. Through this interface, users can view generated reports and
   visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
   Limits plots, and Compaction curves, among others.

3. `geolysis.excel`

   An add-in for Microsoft Excel that performs simple geotechnical analysis.
   It offers some features similar to `geolysis.gui` within Microsoft Excel.
   Below is an example of the Microsoft Excel addin.

   <div align="center">
    <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif" 
    alt="geolysis excel example" width="100%" />
   </div><br>

4. `geolysis.ai`

   Offers machine learning models that are trained using geotechnical data.

## Project Structure

    .
    ├── .github        # GitHub Actions
    ├── docs           # Documentation files
    ├── geolysis       # Source files
    ├── tests          # Automated tests
    └── README.md

## Table of Contents

- [Installation](#installation)
- [Usage Example](#usage-example)
- [Features](#features)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [License](#license)
- [Contact](#contact)

## Installation

```shell
$ pip install geolysis
```

## Usage Example

```python

>>> from geolysis.soil_classifier import create_soil_classifier
>>> uscs_clf = create_soil_classifier(liquid_limit=34.1,
...                                   plastic_limit=21.1,
...                                   fines=47.88,
...                                   sand=37.84,
...                                   clf_type="USCS")
>>> clf = uscs_clf.classify()
>>> clf
SoilClf(symbol='SC', description='Clayey sands')
>>> clf.symbol
'SC'
>>> clf.description
'Clayey sands'

```

```python

>>> from geolysis.soil_classifier import create_soil_classifier
>>> aashto_clf = create_soil_classifier(liquid_limit=34.1,
...                                     plastic_limit=21.1,
...                                     fines=47.88,
...                                     clf_type="AASHTO")
>>> clf = aashto_clf.classify()
>>> clf
SoilClf(symbol='A-6(4)', description='Clayey soils')
>>> clf.symbol
'A-6(4)'
>>> clf.description
'Clayey soils'

```

Check out more examples
[here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)

## Documentation

Full documentation is available [here](https://docs.geolysis.io/en/latest/)

## Contributing

Contribution guidelines can be
found [here](https://docs.geolysis.io/en/latest/dev_guide/index.html)

## License

This project is licensed under the MIT License - see the
[LICENSE](https://github.com/patrickboateng/geolysis/blob/main/LICENSE.txt)
file for more details.

## Contact

For questions or feedback, please
contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
