geolysis 0.2.0__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geolysis/__init__.py +2 -10
- geolysis/core/__init__.py +9 -0
- geolysis/core/abc_4_cohl_soils.py +495 -0
- geolysis/core/constants.py +47 -0
- geolysis/core/estimators.py +549 -0
- geolysis/core/foundation.py +543 -0
- geolysis/core/soil_classifier.py +859 -0
- geolysis/core/spt.py +633 -0
- geolysis/core/utils.py +113 -0
- {geolysis-0.2.0.dist-info → geolysis-0.3.0.dist-info}/LICENSE.txt +1 -1
- geolysis-0.3.0.dist-info/METADATA +223 -0
- geolysis-0.3.0.dist-info/RECORD +14 -0
- {geolysis-0.2.0.dist-info → geolysis-0.3.0.dist-info}/WHEEL +1 -1
- geolysis/bearing_capacity/__init__.py +0 -1
- geolysis/bearing_capacity/abc.py +0 -335
- geolysis/constants.py +0 -19
- geolysis/estimators.py +0 -255
- geolysis/foundation.py +0 -176
- geolysis/soil_classifier.py +0 -658
- geolysis/spt.py +0 -424
- geolysis/utils.py +0 -106
- geolysis-0.2.0.dist-info/METADATA +0 -193
- geolysis-0.2.0.dist-info/RECORD +0 -14
- {geolysis-0.2.0.dist-info → geolysis-0.3.0.dist-info}/top_level.txt +0 -0
@@ -1,193 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: geolysis
|
3
|
-
Version: 0.2.0
|
4
|
-
Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
|
5
|
-
Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
|
6
|
-
Maintainer-email: Patrick Boateng <boatengpato.pb@gmail.com>
|
7
|
-
License: MIT License
|
8
|
-
|
9
|
-
Copyright (c) 2023 geolysis
|
10
|
-
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
13
|
-
in the Software without restriction, including without limitation the rights
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
16
|
-
furnished to do so, subject to the following conditions:
|
17
|
-
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
19
|
-
copies or substantial portions of the Software.
|
20
|
-
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
27
|
-
SOFTWARE.
|
28
|
-
|
29
|
-
Project-URL: Homepage, https://github.com/patrickboateng/geolysis
|
30
|
-
Project-URL: Repository, https://github.com/patrickboateng/geolysis
|
31
|
-
Project-URL: Changelog, https://github.com/patrickboateng/geolysis/blob/main/CHANGELOG.md
|
32
|
-
Project-URL: Issue Tracker, https://github.com/patrickboateng/geolysis/issues
|
33
|
-
Project-URL: Discussions, https://github.com/patrickboateng/geolysis/discussions
|
34
|
-
Keywords: discrete-element-method,geotechnical-engineering,soil-classification,settlement-analysis,bearing-capacity-analysis
|
35
|
-
Classifier: Development Status :: 2 - Pre-Alpha
|
36
|
-
Classifier: Intended Audience :: Developers
|
37
|
-
Classifier: Intended Audience :: Education
|
38
|
-
Classifier: Intended Audience :: Science/Research
|
39
|
-
Classifier: License :: OSI Approved :: MIT License
|
40
|
-
Classifier: Natural Language :: English
|
41
|
-
Classifier: Operating System :: OS Independent
|
42
|
-
Classifier: Programming Language :: Python :: 3.10
|
43
|
-
Classifier: Programming Language :: Python :: 3.11
|
44
|
-
Classifier: Programming Language :: Python :: 3.12
|
45
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
46
|
-
Classifier: Topic :: Scientific/Engineering
|
47
|
-
Requires-Python: >=3.10
|
48
|
-
Description-Content-Type: text/markdown
|
49
|
-
License-File: LICENSE.txt
|
50
|
-
Provides-Extra: dev
|
51
|
-
Requires-Dist: black ; extra == 'dev'
|
52
|
-
Requires-Dist: pytest ; extra == 'dev'
|
53
|
-
Requires-Dist: mypy ; extra == 'dev'
|
54
|
-
Requires-Dist: pytest-cov ; extra == 'dev'
|
55
|
-
|
56
|
-
[code_of_conduct_url]: https://github.com/patrickboateng/geolysis/blob/main/CODE_OF_CONDUCT.md/
|
57
|
-
[contributing_url]: https://github.com/patrickboateng/geolysis/blob/main/docs/CONTRIBUTING.md#how-to-contribute
|
58
|
-
[changelog_url]: https://github.com/patrickboateng/geolysis/blob/main/CHANGELOG.md
|
59
|
-
[license_url]: https://github.com/patrickboateng/geolysis/blob/main/LICENSE.txt
|
60
|
-
|
61
|
-
<h1 align="center">
|
62
|
-
<img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/source/_static/geolysis_logo.png" alt="logo" width="300">
|
63
|
-
</h1><br>
|
64
|
-
|
65
|
-
<div align="center">
|
66
|
-
|
67
|
-
[](https://github.com/patrickboateng/geolysis/stargazers)
|
68
|
-
[](https://pypi.org/project/geolysis/)
|
69
|
-
[](https://pypi.python.org/pypi/geolysis/)
|
70
|
-
[](https://github.com/patrickboateng/geolysis/commits)
|
71
|
-
[](https://opensource.org/license/mit/)
|
72
|
-
|
73
|
-
#
|
74
|
-
|
75
|
-

|
76
|
-
[](https://github.com/patrickboateng/geolysis/actions/workflows/unit-tests.yml)
|
77
|
-
[](https://github.com/patrickboateng/geolysis/actions/workflows/build.yml)
|
78
|
-
|
79
|
-
</div>
|
80
|
-
|
81
|
-
## Project Links
|
82
|
-
|
83
|
-
<!-- - [Documentation](/docs) -->
|
84
|
-
|
85
|
-
- [Homepage](https://github.com/patrickboateng/geolysis)
|
86
|
-
- [PyPi](https://pypi.org/project/geolysis/)
|
87
|
-
- [Bug Reports](https://github.com/patrickboateng/geolysis/issues)
|
88
|
-
- [Discussions](https://github.com/patrickboateng/geolysis/discussions)
|
89
|
-
|
90
|
-
> [!IMPORTANT]
|
91
|
-
> Project documentation is underway
|
92
|
-
|
93
|
-
## Table of Contents
|
94
|
-
|
95
|
-
- [What is geolysis?](#what-is-geolysis)
|
96
|
-
- [Installation](#installation)
|
97
|
-
- [Soil Classification Example](#soil-classification-example)
|
98
|
-
- [AASHTO Classification](#aashto-classification)
|
99
|
-
- [USCS Classification](#uscs-classification)
|
100
|
-
- [Release History](#release-history)
|
101
|
-
- [Code of Conduct](#code-of-conduct)
|
102
|
-
- [Contributing](#contributing)
|
103
|
-
- [License](#license)
|
104
|
-
- [Contact Information](#contact-information)
|
105
|
-
|
106
|
-
## What is geolysis?
|
107
|
-
|
108
|
-
`geolysis` is an open-source software for geotechnical analysis and modeling.
|
109
|
-
It provides features such as `soil classifications`
|
110
|
-
(based on the USCS and AASHTO classification standards), `estimating soil
|
111
|
-
bearing capacity` using SPT N-value, and `estimating of soil engineering parameters`
|
112
|
-
such as `Soil Unit Weight` (moist, saturated, and submerged), `Compression index`,
|
113
|
-
`soil internal angle of friction`, and `undrained shear strength of soil`.
|
114
|
-
|
115
|
-
**Features to include in upcoming versions:**
|
116
|
-
|
117
|
-
- Settlement analysis
|
118
|
-
- Discrete element method (DEM)
|
119
|
-
|
120
|
-
The motivation behind `geolysis` is to provide free software to assist
|
121
|
-
geotechnical engineers in their day-to-day work and to expose civil
|
122
|
-
engineering students (especially geotechnical students) to tools that
|
123
|
-
can make them industry-ready geotechnical engineers right from college.
|
124
|
-
|
125
|
-
## Installation
|
126
|
-
|
127
|
-
```shell
|
128
|
-
pip install geolysis
|
129
|
-
```
|
130
|
-
|
131
|
-
## Soil Classification Example
|
132
|
-
|
133
|
-
### AASHTO Classification
|
134
|
-
|
135
|
-
```python
|
136
|
-
|
137
|
-
>>> from geolysis.soil_classifier import AASHTO
|
138
|
-
>>> aashto_cls = AASHTO(liquid_limit=30.2, plasticity_index=6.3, fines=11.18)
|
139
|
-
>>> aashto_cls.soil_class
|
140
|
-
'A-2-4(0)'
|
141
|
-
>>> aashto_cls.soil_desc
|
142
|
-
'Silty or clayey gravel and sand'
|
143
|
-
|
144
|
-
```
|
145
|
-
|
146
|
-
### USCS Classification
|
147
|
-
|
148
|
-
```python
|
149
|
-
|
150
|
-
>>> from geolysis.soil_classifier import USCS
|
151
|
-
>>> uscs_cls = USCS(liquid_limit=34.1, plastic_limit=21.1, fines=47.88,
|
152
|
-
... sand=37.84, gravel=14.8)
|
153
|
-
>>> uscs_cls.soil_class
|
154
|
-
'SC'
|
155
|
-
>>> uscs_cls.soil_desc
|
156
|
-
'Clayey sands'
|
157
|
-
>>> uscs_cls = USCS(liquid_limit=30.8, plastic_limit=20.7, fines=10.29,
|
158
|
-
... sand=81.89, gravel=7.83, d_10=0.07, d_30=0.3, d_60=0.8)
|
159
|
-
>>> uscs_cls.soil_class
|
160
|
-
'SW-SC'
|
161
|
-
>>> uscs_cls.soil_desc
|
162
|
-
'Well graded sand with clay'
|
163
|
-
|
164
|
-
```
|
165
|
-
|
166
|
-
## Release History
|
167
|
-
|
168
|
-
Check the [changelog][changelog_url] for release history.
|
169
|
-
|
170
|
-
## Code of Conduct
|
171
|
-
|
172
|
-
This project has a [code of conduct][code_of_conduct_url] that we
|
173
|
-
expect all contributors to adhere to. Please read and follow it
|
174
|
-
when participating in this project.
|
175
|
-
|
176
|
-
## Contributing
|
177
|
-
|
178
|
-
If you would like to contribute to this project, please read the
|
179
|
-
[contributing guidelines][contributing_url]
|
180
|
-
|
181
|
-
## License
|
182
|
-
|
183
|
-
Distributed under the [**MIT**][license_url] license. By using,
|
184
|
-
distributing, or contributing to this project, you agree to the
|
185
|
-
terms and conditions of this license.
|
186
|
-
|
187
|
-
## Contact Information
|
188
|
-
|
189
|
-
- [**LinkedIn**](https://linkedin.com/in/patrickboateng/)
|
190
|
-
|
191
|
-
> [!IMPORTANT]
|
192
|
-
> For questions or comments about `geolysis`, please ask them in the
|
193
|
-
> [discussions forum](https://github.com/patrickboateng/geolysis/discussions)
|
geolysis-0.2.0.dist-info/RECORD
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
geolysis/__init__.py,sha256=tqBKoOtCBrtKZ-2BgxiUADtw5Pv4hCcpFAJdVEmVBAA,162
|
2
|
-
geolysis/constants.py,sha256=zb3ViohH0tT2W_P6mf1fhmUMxAcjWAaYy-q0LsQUQl8,444
|
3
|
-
geolysis/estimators.py,sha256=KtsWH59Z3hu8_vWC1a_Id4yS4Gudkr8WPMgSBaNPl_8,7459
|
4
|
-
geolysis/foundation.py,sha256=gHIruNNuj4ZwP4rWxRNyWdUrGZwEs20pGNuwK0kR1Aw,4192
|
5
|
-
geolysis/soil_classifier.py,sha256=Ir-yruadFe_TKxRaAkzEfil70vjfrzWPfmmu2D-L6BE,22543
|
6
|
-
geolysis/spt.py,sha256=-1lznvEGLaxVMz_Typ3bWM6uszzZYzjXlgQGKVC7luk,18129
|
7
|
-
geolysis/utils.py,sha256=TAEj8To4mTcI4NaR-8Qb1OpINtmUxRps8eLnfR131VM,2422
|
8
|
-
geolysis/bearing_capacity/__init__.py,sha256=9BZwVHQaZSmfmxm2T8qGy6RIEbARo-ni1CXJOM8CCG4,19
|
9
|
-
geolysis/bearing_capacity/abc.py,sha256=UslF92YL_l8zi5Evc84j3IdLy58nY_nfzxpdtxsH8sc,9960
|
10
|
-
geolysis-0.2.0.dist-info/LICENSE.txt,sha256=Gxc3UWw7OX-M-Nif4EZcGFQ0Jh3gfNUO_kPS1TDy-BU,1086
|
11
|
-
geolysis-0.2.0.dist-info/METADATA,sha256=l1YrgZl72BXR18mX4EF8EEDJ54uBsLApBu6homZgEjQ,8127
|
12
|
-
geolysis-0.2.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
13
|
-
geolysis-0.2.0.dist-info/top_level.txt,sha256=9mnQgOaCRr11dtXff8X-q3FfXjRONd6kHseSy5q2y8g,9
|
14
|
-
geolysis-0.2.0.dist-info/RECORD,,
|
File without changes
|